Обновить UI чатов и связей и добавить документацию ИТХ

This commit is contained in:
AidarKC
2026-07-14 13:39:01 +04:00
parent af12d7b954
commit 4cb98f7ca0
8 changed files with 535 additions and 22 deletions
+63 -8
View File
@@ -1062,11 +1062,52 @@
.bubble.call-tech {
max-width: 90%;
justify-self: center;
border-radius: 10px;
border: 1px solid rgba(131, 162, 223, 0.32);
background: rgba(40, 55, 84, 0.55);
border-radius: 16px;
border: 1px solid rgba(132, 170, 231, 0.28);
background: rgba(24, 36, 58, 0.72);
color: #dce8ff;
font-size: 12px;
padding: 12px 14px;
}
.bubble-call-card {
display: grid;
gap: 4px;
min-width: min(280px, 72vw);
}
.bubble-call-head {
display: inline-flex;
align-items: center;
gap: 8px;
}
.bubble-call-icon {
display: inline-grid;
place-items: center;
width: 28px;
height: 28px;
border-radius: 999px;
background: rgba(80, 170, 255, 0.18);
border: 1px solid rgba(123, 191, 255, 0.28);
color: #d9ecff;
font-size: 15px;
}
.bubble-call-title {
font-size: 14px;
font-weight: 700;
color: #eef6ff;
}
.bubble-call-line {
font-size: 12px;
line-height: 1.35;
color: rgba(230, 240, 255, 0.94);
}
.bubble-call-line--muted {
color: rgba(188, 207, 238, 0.78);
}
.chat-input {
@@ -1523,17 +1564,21 @@ textarea.input {
.network-header-overlay {
position: sticky;
top: max(8px, env(safe-area-inset-top));
top: max(14px, calc(env(safe-area-inset-top) + 8px));
left: max(8px, env(safe-area-inset-left));
right: max(8px, env(safe-area-inset-right));
margin-bottom: 0;
z-index: 12;
pointer-events: none;
padding: 9px 12px 0;
}
.network-header-overlay.page-header {
display: grid;
grid-template-columns: minmax(42px, 1fr) auto minmax(58px, 1fr);
align-items: center;
margin-bottom: 0;
gap: 6px;
gap: 10px;
}
.network-header-overlay .header-left,
@@ -1542,20 +1587,30 @@ textarea.input {
gap: 6px;
}
.network-header-overlay .header-left {
justify-content: flex-start;
}
.network-header-overlay .header-actions {
justify-content: flex-end;
}
.network-header-overlay .icon-btn {
pointer-events: auto;
min-height: 30px;
padding: 5px 8px;
font-size: 11px;
min-height: 32px;
padding: 6px 10px;
font-size: 12px;
border-radius: 10px;
}
.network-header-overlay .page-title {
font-size: 16px;
line-height: 32px;
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}