Добавить смену профилей, но она пока не работает

This commit is contained in:
AidarKC
2026-09-03 12:37:23 +04:00
parent e7c8fd748c
commit ebc9143593
15 changed files with 672 additions and 44 deletions
+46
View File
@@ -11676,3 +11676,49 @@ body.chat-topbar-overlay .page-header.app-topbar-shell .header-center {
filter: blur(6px);
transform: translate(-50%, -50%) scale(1);
}
/* Saved profiles */
.profiles-screen { gap: 14px; }
.profiles-summary { padding: 0 2px; }
.profiles-list { gap: 10px; }
.profiles-row {
display: grid;
grid-template-columns: minmax(0, 1fr) 44px;
align-items: center;
gap: 8px;
padding: 8px 8px 8px 14px;
}
.profiles-row.is-active { border-color: rgba(255, 255, 255, 0.34); }
.profiles-select {
min-width: 0;
border: 0;
background: transparent;
color: inherit;
display: flex;
align-items: center;
gap: 10px;
padding: 9px 0;
text-align: left;
font: inherit;
}
.profiles-select:not(:disabled) { cursor: pointer; }
.profiles-login {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: 650;
}
.profiles-close {
width: 38px;
height: 38px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.24);
background: rgba(255, 255, 255, 0.06);
color: inherit;
font-size: 27px;
line-height: 1;
cursor: pointer;
}
.profiles-actions { margin-top: 4px; }
.profiles-close-all { margin-top: 4px; }