1522 lines
28 KiB
CSS
1522 lines
28 KiB
CSS
.page-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 14px;
|
|
gap: 8px;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.2px;
|
|
}
|
|
|
|
.header-actions,
|
|
.header-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-width: 74px;
|
|
}
|
|
|
|
.header-left {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.header-actions {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.icon-btn,
|
|
.text-btn,
|
|
.primary-btn,
|
|
.secondary-btn,
|
|
.destructive-btn,
|
|
.ghost-btn {
|
|
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
border-radius: var(--radius-sm);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: var(--text);
|
|
padding: 9px 12px;
|
|
min-height: 38px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: 0.2s ease;
|
|
}
|
|
|
|
.icon-btn:hover,
|
|
.text-btn:hover,
|
|
.primary-btn:hover,
|
|
.secondary-btn:hover,
|
|
.destructive-btn:hover,
|
|
.ghost-btn:hover {
|
|
border-color: var(--accent);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.primary-btn {
|
|
background: linear-gradient(120deg, rgba(218, 179, 87, 0.95), rgba(184, 137, 54, 0.92));
|
|
border-color: rgba(242, 210, 129, 0.72);
|
|
color: #101426;
|
|
}
|
|
|
|
.secondary-btn {
|
|
background: linear-gradient(180deg, rgba(19, 35, 63, 0.9), rgba(14, 26, 50, 0.95));
|
|
border-color: rgba(132, 162, 228, 0.42);
|
|
color: #e7efff;
|
|
}
|
|
|
|
.destructive-btn {
|
|
background: linear-gradient(120deg, rgba(129, 37, 54, 0.9), rgba(92, 23, 37, 0.94));
|
|
border-color: rgba(255, 129, 147, 0.46);
|
|
color: #ffe4ea;
|
|
}
|
|
|
|
.ghost-btn {
|
|
background: rgba(17, 26, 46, 0.62);
|
|
border-color: rgba(255, 255, 255, 0.16);
|
|
}
|
|
|
|
.icon-btn:disabled,
|
|
.text-btn:disabled,
|
|
.primary-btn:disabled,
|
|
.secondary-btn:disabled,
|
|
.destructive-btn:disabled,
|
|
.ghost-btn:disabled {
|
|
opacity: 1;
|
|
color: #93a6cc;
|
|
background: linear-gradient(180deg, rgba(18, 30, 54, 0.8), rgba(11, 20, 39, 0.86));
|
|
border-color: rgba(124, 145, 189, 0.28);
|
|
box-shadow: none;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
}
|
|
|
|
.card {
|
|
background: linear-gradient(180deg, rgba(31, 44, 67, 0.62), rgba(21, 30, 48, 0.9));
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
border-radius: var(--radius-lg);
|
|
padding: 14px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.stack {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(132, 244, 161, 0.35);
|
|
color: #d7ffe3;
|
|
background: rgba(132, 244, 161, 0.09);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.badge.profile-badge-trigger {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.badge.alt {
|
|
border-color: rgba(83, 216, 251, 0.35);
|
|
color: #dff8ff;
|
|
background: rgba(83, 216, 251, 0.11);
|
|
}
|
|
|
|
.badge.profile-toggle-btn.is-no {
|
|
border-color: rgba(170, 180, 205, 0.3);
|
|
color: #c5cedd;
|
|
background: rgba(152, 164, 190, 0.14);
|
|
}
|
|
|
|
.badge.profile-toggle-btn.is-yes-official {
|
|
border-color: rgba(132, 244, 161, 0.5);
|
|
color: #ddffe7;
|
|
background: rgba(132, 244, 161, 0.2);
|
|
}
|
|
|
|
.badge.profile-toggle-btn.is-yes-shine {
|
|
border-color: rgba(183, 122, 255, 0.6);
|
|
color: #f4e7ff;
|
|
background: rgba(176, 102, 255, 0.22);
|
|
}
|
|
|
|
.profile-help-modal[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.profile-help-modal {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 20;
|
|
}
|
|
|
|
.profile-help-backdrop {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(5, 9, 16, 0.72);
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
.profile-help-dialog {
|
|
position: absolute;
|
|
left: 16px;
|
|
right: 16px;
|
|
bottom: 24px;
|
|
display: grid;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.profile-help-text {
|
|
color: #d8e3ff;
|
|
line-height: 1.45;
|
|
font-size: 14px;
|
|
}
|
|
|
|
|
|
.profile-data-help p {
|
|
margin-top: 6px;
|
|
line-height: 1.4;
|
|
color: #d8e3ff;
|
|
}
|
|
|
|
.profile-param-list {
|
|
gap: 8px;
|
|
}
|
|
|
|
.profile-param-item {
|
|
padding: 10px;
|
|
gap: 6px;
|
|
}
|
|
|
|
.profile-param-head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.profile-param-value {
|
|
font-size: 15px;
|
|
color: #eef3ff;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.profile-param-value-small {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.profile-param-time {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.auth-screen {
|
|
min-height: calc(100dvh - 48px - env(safe-area-inset-bottom));
|
|
display: grid;
|
|
align-content: center;
|
|
justify-items: center;
|
|
gap: 18px;
|
|
text-align: center;
|
|
}
|
|
|
|
.auth-logo {
|
|
width: 126px;
|
|
height: 126px;
|
|
border-radius: 28px;
|
|
object-fit: cover;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.auth-brand {
|
|
font-size: 32px;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.auth-actions,
|
|
.auth-footer-actions {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.auth-actions {
|
|
width: min(100%, 320px);
|
|
}
|
|
|
|
.auth-footer-actions {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.auth-copy {
|
|
line-height: 1.45;
|
|
color: #d8e3ff;
|
|
}
|
|
|
|
.auth-status-card {
|
|
width: min(100%, 320px);
|
|
color: #d8e3ff;
|
|
}
|
|
|
|
.field-label {
|
|
color: #b2c2e6;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.select {
|
|
width: 100%;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
min-height: 44px;
|
|
padding: 0 12px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.select:focus {
|
|
outline: none;
|
|
border-color: rgba(83, 216, 251, 0.55);
|
|
box-shadow: 0 0 0 3px rgba(83, 216, 251, 0.12);
|
|
}
|
|
|
|
.wrap-row {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.status-line {
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.status-line.is-available {
|
|
color: #8ef0a8;
|
|
}
|
|
|
|
.status-line.is-unavailable {
|
|
color: #ff8d97;
|
|
}
|
|
|
|
.server-check-btn.is-available {
|
|
border-color: rgba(132, 244, 161, 0.42);
|
|
background: rgba(132, 244, 161, 0.12);
|
|
color: #d7ffe3;
|
|
}
|
|
|
|
.server-check-btn.is-unavailable {
|
|
border-color: rgba(255, 113, 143, 0.42);
|
|
background: rgba(255, 113, 143, 0.12);
|
|
color: #ffd7df;
|
|
}
|
|
|
|
.help-fab,
|
|
.square-btn {
|
|
width: 42px;
|
|
height: 42px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: var(--card-soft);
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.help-fab {
|
|
position: fixed;
|
|
right: max(20px, calc((100vw - min(100vw, 430px)) / 2 + 20px));
|
|
bottom: calc(20px + env(safe-area-inset-bottom));
|
|
z-index: 12;
|
|
}
|
|
|
|
.inline-input-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.link-card {
|
|
display: block;
|
|
padding: 14px;
|
|
border-radius: var(--radius-md);
|
|
background: rgba(83, 216, 251, 0.08);
|
|
border: 1px solid rgba(83, 216, 251, 0.22);
|
|
color: #d9f8ff;
|
|
}
|
|
|
|
.qr-card {
|
|
justify-items: center;
|
|
}
|
|
|
|
.qr-code {
|
|
width: min(220px, 100%);
|
|
aspect-ratio: 1;
|
|
fill: #eff5ff;
|
|
background: #111723;
|
|
border-radius: 22px;
|
|
padding: 18px;
|
|
}
|
|
|
|
.camera-shell {
|
|
position: relative;
|
|
min-height: 380px;
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
background: #09101a;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.camera-video {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 380px;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.camera-frame {
|
|
position: absolute;
|
|
inset: 70px 40px 110px;
|
|
border: 3px solid rgba(83, 216, 251, 0.85);
|
|
border-radius: 24px;
|
|
box-shadow: 0 0 0 999px rgba(5, 9, 16, 0.38);
|
|
}
|
|
|
|
.camera-hint,
|
|
.camera-error {
|
|
position: absolute;
|
|
left: 16px;
|
|
right: 16px;
|
|
text-align: center;
|
|
padding: 10px 12px;
|
|
border-radius: 12px;
|
|
background: rgba(10, 14, 23, 0.78);
|
|
}
|
|
|
|
.camera-hint {
|
|
bottom: 18px;
|
|
}
|
|
|
|
.camera-error {
|
|
top: 18px;
|
|
color: #ffd7df;
|
|
}
|
|
|
|
.camera-placeholder {
|
|
width: 100%;
|
|
min-height: 380px;
|
|
display: grid;
|
|
place-items: center;
|
|
color: #c8d6f9;
|
|
background:
|
|
radial-gradient(circle at 20% 10%, rgba(83, 216, 251, 0.16), transparent 48%),
|
|
linear-gradient(180deg, #0a1220, #070d17);
|
|
}
|
|
|
|
.checkbox-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.key-card {
|
|
padding: 12px;
|
|
border-radius: var(--radius-md);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.list-item {
|
|
display: grid;
|
|
grid-template-columns: 44px 1fr auto;
|
|
gap: 10px;
|
|
align-items: center;
|
|
padding: 11px;
|
|
border-radius: var(--radius-md);
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.avatar {
|
|
width: 44px;
|
|
height: 44px;
|
|
min-width: 44px;
|
|
min-height: 44px;
|
|
flex: 0 0 auto;
|
|
aspect-ratio: 1 / 1;
|
|
border-radius: 50%;
|
|
background: linear-gradient(130deg, #3c4f73, #243352);
|
|
display: grid;
|
|
place-items: center;
|
|
font-weight: 700;
|
|
color: #e5ebff;
|
|
}
|
|
|
|
.avatar.large {
|
|
width: 82px;
|
|
height: 82px;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.meta-muted {
|
|
color: var(--text-muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.unread {
|
|
min-width: 20px;
|
|
height: 20px;
|
|
border-radius: 999px;
|
|
display: grid;
|
|
place-items: center;
|
|
background: var(--accent);
|
|
color: #08212a;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.toolbar {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
gap: 8px;
|
|
padding: 8px;
|
|
background: rgba(20, 28, 44, 0.95);
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
border-radius: 16px;
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.toolbar-btn {
|
|
border: 0;
|
|
border-radius: 12px;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
padding: 8px 4px;
|
|
cursor: pointer;
|
|
display: grid;
|
|
justify-items: center;
|
|
gap: 4px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.toolbar-btn.active {
|
|
background: rgba(83, 216, 251, 0.14);
|
|
color: var(--text);
|
|
}
|
|
|
|
.page-label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
border-radius: 10px;
|
|
padding: 8px 10px;
|
|
color: #c5d2f4;
|
|
background: rgba(17, 24, 39, 0.9);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.page-label.is-collapsed {
|
|
width: fit-content;
|
|
padding: 6px;
|
|
}
|
|
|
|
.page-label-content {
|
|
min-width: 0;
|
|
}
|
|
|
|
.page-label-hint {
|
|
margin-bottom: 3px;
|
|
color: #8ea2cd;
|
|
font-size: 10px;
|
|
line-height: 1;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.page-label-caption {
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.page-label-toggle {
|
|
width: 16px;
|
|
height: 16px;
|
|
flex: 0 0 16px;
|
|
border: 1px solid rgba(255, 255, 255, 0.16);
|
|
border-radius: 4px;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.page-label-toggle:hover {
|
|
border-color: rgba(83, 216, 251, 0.5);
|
|
background: rgba(83, 216, 251, 0.16);
|
|
}
|
|
|
|
.chat-wrap {
|
|
display: grid;
|
|
grid-template-rows: 1fr auto;
|
|
gap: 10px;
|
|
min-height: calc(100dvh - 210px);
|
|
}
|
|
|
|
.messages-log {
|
|
display: grid;
|
|
gap: 8px;
|
|
align-content: start;
|
|
}
|
|
|
|
.bubble {
|
|
max-width: 76%;
|
|
padding: 10px 12px;
|
|
border-radius: 14px;
|
|
font-size: 14px;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.bubble.in {
|
|
justify-self: start;
|
|
background: #1f2c46;
|
|
border-top-left-radius: 6px;
|
|
}
|
|
|
|
.bubble.out {
|
|
justify-self: end;
|
|
background: #273f63;
|
|
border-top-right-radius: 6px;
|
|
}
|
|
|
|
.chat-input {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 8px;
|
|
}
|
|
|
|
.contact-search-actions {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.input {
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
min-height: 40px;
|
|
padding: 0 12px;
|
|
width: 100%;
|
|
outline: none;
|
|
color: #f3f7ff;
|
|
font-size: 16px;
|
|
line-height: 1.4;
|
|
caret-color: #f1d18a;
|
|
-webkit-text-fill-color: #f3f7ff;
|
|
}
|
|
|
|
.input:focus {
|
|
border-color: rgba(83, 216, 251, 0.55);
|
|
box-shadow: 0 0 0 3px rgba(83, 216, 251, 0.12);
|
|
}
|
|
|
|
.input::placeholder {
|
|
color: rgba(190, 206, 238, 0.82);
|
|
}
|
|
|
|
input.input:-webkit-autofill,
|
|
input.input:-webkit-autofill:hover,
|
|
input.input:-webkit-autofill:focus,
|
|
textarea.input:-webkit-autofill,
|
|
textarea.input:-webkit-autofill:hover,
|
|
textarea.input:-webkit-autofill:focus {
|
|
-webkit-text-fill-color: #f3f7ff !important;
|
|
caret-color: #f1d18a;
|
|
border-color: var(--line);
|
|
box-shadow: 0 0 0 1000px rgba(11, 24, 46, 0.96) inset !important;
|
|
transition: background-color 9999s ease-out 0s;
|
|
}
|
|
|
|
textarea.input {
|
|
padding: 10px 12px;
|
|
min-height: 92px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 19px;
|
|
line-height: 1.2;
|
|
color: #f1d69a;
|
|
}
|
|
|
|
.inline-error {
|
|
min-height: 18px;
|
|
}
|
|
|
|
.form-actions-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
}
|
|
|
|
.small-btn {
|
|
padding: 6px 10px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.session-item {
|
|
width: 100%;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: var(--radius-md);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: inherit;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.session-item:hover {
|
|
border-color: rgba(83, 216, 251, 0.4);
|
|
}
|
|
|
|
.session-tabs {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.session-tab {
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: var(--text-muted);
|
|
min-height: 36px;
|
|
padding: 6px 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.session-tab.is-active {
|
|
color: var(--text);
|
|
border-color: rgba(83, 216, 251, 0.45);
|
|
background: rgba(83, 216, 251, 0.15);
|
|
}
|
|
|
|
.session-current-badge {
|
|
display: inline-flex;
|
|
margin-top: 8px;
|
|
padding: 4px 9px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
color: #d7ffe3;
|
|
border: 1px solid rgba(132, 244, 161, 0.36);
|
|
background: rgba(132, 244, 161, 0.1);
|
|
}
|
|
|
|
.key-value {
|
|
font-family: "IBM Plex Mono", "Fira Code", monospace;
|
|
font-size: 13px;
|
|
line-height: 1.35;
|
|
word-break: break-all;
|
|
color: #dce7ff;
|
|
}
|
|
|
|
.qr-demo {
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 8px;
|
|
border: 2px solid rgba(255, 255, 255, 0.85);
|
|
background:
|
|
linear-gradient(
|
|
90deg,
|
|
#f6fbff 0 8px,
|
|
#0f1524 8px 16px,
|
|
#f6fbff 16px 24px,
|
|
#0f1524 24px 32px,
|
|
#f6fbff 32px 40px,
|
|
#0f1524 40px 48px,
|
|
#f6fbff 48px 56px,
|
|
#0f1524 56px 64px
|
|
);
|
|
}
|
|
|
|
.qr-image {
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 8px;
|
|
border: 1px solid rgba(255, 255, 255, 0.22);
|
|
background: #fff;
|
|
}
|
|
|
|
.modal-shell[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.modal-shell {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 24;
|
|
}
|
|
|
|
.modal-backdrop {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(5, 9, 16, 0.74);
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
.modal-dialog {
|
|
position: absolute;
|
|
left: 16px;
|
|
right: 16px;
|
|
bottom: 24px;
|
|
display: grid;
|
|
gap: 12px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.network-board {
|
|
position: relative;
|
|
height: 290px;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: var(--radius-lg);
|
|
background: radial-gradient(circle at center, rgba(83, 216, 251, 0.08), rgba(255, 255, 255, 0.01));
|
|
overflow: hidden;
|
|
}
|
|
|
|
.network-svg {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
|
|
.node {
|
|
position: absolute;
|
|
transform: translate(-50%, -50%);
|
|
width: 74px;
|
|
text-align: center;
|
|
}
|
|
|
|
.node-dot {
|
|
width: 52px;
|
|
height: 52px;
|
|
margin: 0 auto 4px;
|
|
border-radius: 50%;
|
|
display: grid;
|
|
place-items: center;
|
|
font-weight: 700;
|
|
background: #2f4265;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.node.center .node-dot {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: linear-gradient(130deg, #3a5f8e, #3dc4df);
|
|
color: #061119;
|
|
}
|
|
|
|
.node-label {
|
|
font-size: 11px;
|
|
color: #d6e2ff;
|
|
}
|
|
|
|
.tabs {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 12px;
|
|
padding: 4px;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
.tab-btn {
|
|
border: 0;
|
|
background: transparent;
|
|
border-radius: 9px;
|
|
padding: 8px;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tab-btn.active {
|
|
background: rgba(83, 216, 251, 0.16);
|
|
color: var(--text);
|
|
}
|
|
|
|
.modal {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.62);
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 20px;
|
|
z-index: 20;
|
|
}
|
|
|
|
.modal-card {
|
|
width: min(100%, 390px);
|
|
background: #172238;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-radius: 16px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.channels-screen .modal-card .input {
|
|
background: linear-gradient(180deg, rgba(16, 31, 58, 0.9), rgba(11, 22, 43, 0.94));
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #dbe7ff;
|
|
margin: 4px 2px;
|
|
}
|
|
|
|
.channels-scroll-wrap {
|
|
position: relative;
|
|
max-height: 58vh;
|
|
overflow-y: auto;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.channels-groups {
|
|
min-height: min-content;
|
|
}
|
|
|
|
.channels-divider {
|
|
border: 0;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.14);
|
|
margin: 6px 0 8px;
|
|
}
|
|
|
|
.channels-scroll-hint {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 0;
|
|
width: 4px;
|
|
height: calc(100% - 8px);
|
|
border-radius: 999px;
|
|
background: linear-gradient(180deg, rgba(83, 216, 251, 0.55), rgba(83, 216, 251, 0.15));
|
|
pointer-events: none;
|
|
}
|
|
|
|
.toolbar {
|
|
background:
|
|
radial-gradient(circle at 18% -120%, rgba(228, 186, 94, 0.28), transparent 48%),
|
|
linear-gradient(160deg, rgba(14, 25, 47, 0.98), rgba(7, 16, 34, 0.98));
|
|
border: 1px solid rgba(197, 160, 85, 0.38);
|
|
box-shadow: 0 18px 32px rgba(2, 6, 13, 0.62);
|
|
border-radius: 18px;
|
|
padding: 9px;
|
|
}
|
|
|
|
.toolbar-btn {
|
|
color: #b8c7ea;
|
|
border-radius: 12px;
|
|
min-height: 52px;
|
|
transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
|
|
}
|
|
|
|
.toolbar-btn.active {
|
|
background:
|
|
linear-gradient(145deg, rgba(220, 181, 94, 0.32), rgba(39, 66, 122, 0.3)),
|
|
rgba(20, 35, 64, 0.62);
|
|
border: 1px solid rgba(220, 183, 100, 0.44);
|
|
color: #f7e2ad;
|
|
box-shadow: inset 0 1px 0 rgba(255, 242, 204, 0.42);
|
|
}
|
|
|
|
.toolbar-btn:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.modal-card {
|
|
background: linear-gradient(165deg, rgba(16, 31, 58, 0.97), rgba(10, 18, 36, 0.97));
|
|
border-color: rgba(216, 179, 93, 0.4);
|
|
box-shadow: 0 20px 38px rgba(2, 6, 12, 0.55);
|
|
}
|
|
|
|
.channels-screen {
|
|
position: relative;
|
|
gap: 11px;
|
|
isolation: isolate;
|
|
}
|
|
|
|
.channels-screen::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: -24px -18px 0;
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
background:
|
|
radial-gradient(circle at 16% -4%, rgba(232, 191, 92, 0.22), transparent 40%),
|
|
radial-gradient(circle at 80% 6%, rgba(77, 114, 189, 0.35), transparent 39%),
|
|
radial-gradient(circle at 52% 22%, rgba(13, 33, 70, 0.54), transparent 44%),
|
|
linear-gradient(180deg, rgba(4, 11, 24, 0.92), rgba(4, 11, 23, 0.4) 46%, transparent 100%);
|
|
}
|
|
|
|
.channels-screen .page-header {
|
|
margin-bottom: 0;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.channels-screen .page-header .icon-btn,
|
|
.channels-screen .page-header .text-btn {
|
|
background: linear-gradient(180deg, rgba(20, 37, 67, 0.9), rgba(13, 24, 47, 0.94));
|
|
border-color: rgba(146, 173, 229, 0.38);
|
|
color: #d9e6ff;
|
|
}
|
|
|
|
.channels-screen .page-title {
|
|
font-size: 29px;
|
|
line-height: 1.05;
|
|
font-family: "Cormorant Garamond", "Times New Roman", serif;
|
|
letter-spacing: 0.01em;
|
|
color: #f5db9e;
|
|
text-shadow: 0 10px 20px rgba(0, 0, 0, 0.48);
|
|
}
|
|
|
|
.channels-screen--list .page-title {
|
|
font-size: 37px;
|
|
line-height: 0.95;
|
|
}
|
|
|
|
.channels-screen .card {
|
|
background:
|
|
linear-gradient(168deg, rgba(16, 31, 58, 0.95), rgba(8, 17, 34, 0.98)),
|
|
radial-gradient(circle at 50% 0%, rgba(53, 90, 165, 0.2), transparent 52%);
|
|
border: 1px solid rgba(176, 144, 74, 0.3);
|
|
box-shadow: 0 14px 30px rgba(2, 7, 15, 0.54);
|
|
}
|
|
|
|
.channels-screen .meta-muted {
|
|
color: #c3cfea;
|
|
}
|
|
|
|
.channels-screen .status-line.is-unavailable {
|
|
color: #ffd9e1;
|
|
}
|
|
|
|
.channels-hero {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 12px;
|
|
border-color: rgba(214, 177, 95, 0.42);
|
|
box-shadow: 0 14px 30px rgba(4, 9, 20, 0.54);
|
|
}
|
|
|
|
.channels-hero-emblem {
|
|
position: relative;
|
|
width: 62px;
|
|
height: 62px;
|
|
border-radius: 50%;
|
|
border: 1px solid rgba(220, 182, 98, 0.64);
|
|
background:
|
|
radial-gradient(circle at 45% 40%, rgba(247, 217, 145, 0.9), rgba(199, 146, 61, 0.95) 46%, rgba(127, 88, 36, 0.96) 100%);
|
|
box-shadow:
|
|
inset 0 0 0 5px rgba(20, 38, 74, 0.76),
|
|
0 10px 20px rgba(3, 7, 16, 0.52);
|
|
}
|
|
|
|
.channels-hero-emblem::before,
|
|
.channels-hero-emblem::after {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 14px;
|
|
border-radius: 50%;
|
|
border: 2px solid rgba(27, 47, 85, 0.74);
|
|
}
|
|
|
|
.channels-hero-emblem::after {
|
|
inset: 7px;
|
|
border-width: 1px;
|
|
border-color: rgba(228, 192, 109, 0.66);
|
|
}
|
|
|
|
.channels-hero-copy {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.channels-hero-kicker {
|
|
font-size: 11px;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
color: #e8cc8f;
|
|
}
|
|
|
|
.channels-hero-title {
|
|
font-family: "Cormorant Garamond", "Times New Roman", serif;
|
|
font-size: 26px;
|
|
line-height: 1;
|
|
color: #f4ddab;
|
|
}
|
|
|
|
.channels-hero-subtitle {
|
|
color: #afc1e3;
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.channels-user-chip {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 9px;
|
|
color: #e9f0ff;
|
|
min-height: 46px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.channels-user-chip::before {
|
|
content: "";
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 50%;
|
|
background: #ddb86f;
|
|
box-shadow: 0 0 0 6px rgba(221, 184, 111, 0.2);
|
|
}
|
|
|
|
.channels-help-card strong {
|
|
font-size: 17px;
|
|
color: #f3d79c;
|
|
font-family: "Cormorant Garamond", "Times New Roman", serif;
|
|
}
|
|
|
|
.channels-help-card .meta-muted {
|
|
line-height: 1.34;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.channels-help-card {
|
|
gap: 6px;
|
|
padding-top: 12px;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
.channels-info-strip {
|
|
border-radius: 14px;
|
|
padding: 10px 13px;
|
|
color: #ead3a0;
|
|
border: 1px solid rgba(214, 175, 89, 0.4);
|
|
background: linear-gradient(134deg, rgba(180, 140, 62, 0.22), rgba(23, 44, 84, 0.3));
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.channels-action-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 9px;
|
|
}
|
|
|
|
.channels-action-btn {
|
|
min-height: 50px;
|
|
border-radius: 999px;
|
|
text-align: center;
|
|
line-height: 1.25;
|
|
padding: 9px 10px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.01em;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.channels-action-btn.primary-btn {
|
|
box-shadow: inset 0 1px 0 rgba(255, 247, 214, 0.6), 0 10px 18px rgba(5, 8, 16, 0.46);
|
|
}
|
|
|
|
.channels-action-btn.destructive-btn {
|
|
border-color: rgba(248, 141, 163, 0.5);
|
|
background: linear-gradient(120deg, rgba(126, 31, 52, 0.94), rgba(88, 22, 37, 0.95));
|
|
box-shadow: inset 0 1px 0 rgba(171, 198, 255, 0.26), 0 9px 16px rgba(5, 8, 16, 0.36);
|
|
}
|
|
|
|
.channels-scroll-wrap {
|
|
max-height: none;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.channels-groups {
|
|
gap: 11px;
|
|
}
|
|
|
|
.channels-section {
|
|
gap: 8px;
|
|
}
|
|
|
|
.channels-section .section-title {
|
|
font-size: 21px;
|
|
color: #f2d395;
|
|
margin: 0 2px;
|
|
font-family: "Cormorant Garamond", "Times New Roman", serif;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.channels-list-empty {
|
|
border: 1px dashed rgba(209, 172, 87, 0.35);
|
|
border-radius: var(--radius-md);
|
|
padding: 12px;
|
|
color: #aeb9d8;
|
|
background: rgba(10, 18, 36, 0.5);
|
|
}
|
|
|
|
.channels-divider {
|
|
border-top-color: rgba(211, 170, 86, 0.22);
|
|
margin: 2px 0;
|
|
}
|
|
|
|
.channel-row {
|
|
display: grid;
|
|
grid-template-columns: 46px minmax(0, 1fr) 72px;
|
|
gap: 12px;
|
|
padding: 14px 13px;
|
|
border-radius: 16px;
|
|
border: 1px solid rgba(193, 157, 82, 0.28);
|
|
background:
|
|
linear-gradient(150deg, rgba(16, 31, 58, 0.9), rgba(10, 20, 40, 0.94)),
|
|
radial-gradient(circle at 100% 0%, rgba(72, 106, 179, 0.22), transparent 46%);
|
|
cursor: pointer;
|
|
transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.channel-row:hover {
|
|
border-color: rgba(224, 188, 106, 0.52);
|
|
box-shadow: 0 10px 22px rgba(2, 8, 16, 0.44);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.channel-row .avatar {
|
|
width: 42px;
|
|
height: 42px;
|
|
min-width: 42px;
|
|
min-height: 42px;
|
|
background: linear-gradient(138deg, #efd193, #c18c42);
|
|
color: #17233f;
|
|
box-shadow: inset 0 1px 0 rgba(255, 244, 208, 0.58);
|
|
}
|
|
|
|
.channel-row-main {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.channel-row-title {
|
|
font-size: 18px;
|
|
color: #f5daa0;
|
|
line-height: 1.2;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.channel-row-description {
|
|
font-size: 11px;
|
|
color: #9db0dc;
|
|
word-break: break-word;
|
|
opacity: 0.95;
|
|
}
|
|
|
|
.channel-row-message {
|
|
color: #e5eeff;
|
|
font-size: 14px;
|
|
line-height: 1.35;
|
|
word-break: break-word;
|
|
min-height: 18px;
|
|
}
|
|
|
|
.channel-row-owner {
|
|
font-size: 12px;
|
|
color: #bdcdeb;
|
|
}
|
|
|
|
.channel-row-meta {
|
|
display: grid;
|
|
justify-items: center;
|
|
align-content: start;
|
|
gap: 6px;
|
|
}
|
|
|
|
.channel-row-kind {
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
padding: 4px 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(205, 166, 86, 0.42);
|
|
color: #f1d49a;
|
|
background: rgba(191, 149, 66, 0.16);
|
|
}
|
|
|
|
.channel-row-time {
|
|
font-size: 11px;
|
|
color: #96a7ce;
|
|
}
|
|
|
|
.channel-row-count {
|
|
min-width: 28px;
|
|
justify-content: center;
|
|
background: linear-gradient(140deg, rgba(223, 186, 98, 0.95), rgba(199, 155, 75, 0.95));
|
|
color: #17203a;
|
|
}
|
|
|
|
.channels-bottom-action {
|
|
margin-top: 6px;
|
|
min-height: 48px;
|
|
border-radius: 13px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.channels-status {
|
|
border-color: rgba(227, 127, 144, 0.45);
|
|
background: linear-gradient(165deg, rgba(68, 24, 36, 0.55), rgba(19, 17, 33, 0.82));
|
|
}
|
|
|
|
.channel-head-card {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.channel-head-title {
|
|
font-size: 24px;
|
|
color: #f0d089;
|
|
line-height: 1.1;
|
|
font-family: "Cormorant Garamond", "Times New Roman", serif;
|
|
}
|
|
|
|
.channel-head-meta {
|
|
font-size: 13px;
|
|
color: #aebddd;
|
|
}
|
|
|
|
.channel-note {
|
|
font-size: 13px;
|
|
color: #e8d8b0;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.channel-feed {
|
|
gap: 10px;
|
|
}
|
|
|
|
.channel-message-card {
|
|
gap: 9px;
|
|
padding: 13px;
|
|
border-radius: 16px;
|
|
border-color: rgba(182, 149, 78, 0.3);
|
|
}
|
|
|
|
.channel-message-title {
|
|
font-size: 15px;
|
|
color: #f2dcab;
|
|
}
|
|
|
|
.channel-message-body {
|
|
color: #eef3ff;
|
|
line-height: 1.45;
|
|
font-size: 14px;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
border-radius: 10px;
|
|
padding: 8px 10px;
|
|
background: linear-gradient(170deg, rgba(22, 40, 73, 0.75), rgba(12, 25, 48, 0.78));
|
|
border: 1px solid rgba(116, 141, 193, 0.26);
|
|
}
|
|
|
|
.channel-message-stats {
|
|
font-size: 12px;
|
|
color: #9fb2dc;
|
|
}
|
|
|
|
.channel-message-actions {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.channel-message-actions .secondary-btn,
|
|
.thread-node-actions .secondary-btn {
|
|
min-height: 40px;
|
|
padding: 8px 9px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.thread-summary {
|
|
color: #efd9a4;
|
|
border-color: rgba(212, 171, 90, 0.36);
|
|
background: linear-gradient(130deg, rgba(178, 137, 58, 0.2), rgba(24, 41, 74, 0.24));
|
|
}
|
|
|
|
.thread-node-card {
|
|
gap: 9px;
|
|
border-radius: 16px;
|
|
border-color: rgba(183, 150, 79, 0.3);
|
|
}
|
|
|
|
.thread-node-heading {
|
|
color: #f1dcab;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.thread-node-meta {
|
|
color: #aebddd;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.thread-node-body {
|
|
color: #eef3ff;
|
|
font-size: 14px;
|
|
line-height: 1.45;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
border-radius: 10px;
|
|
padding: 8px 10px;
|
|
background: linear-gradient(170deg, rgba(22, 40, 73, 0.72), rgba(12, 25, 48, 0.78));
|
|
border: 1px solid rgba(116, 141, 193, 0.24);
|
|
}
|
|
|
|
.thread-node-stats {
|
|
color: #99acd6;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.thread-node-actions {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.thread-node-level {
|
|
margin-left: calc(min(var(--depth, 0), 4) * 12px);
|
|
}
|
|
|
|
.thread-block {
|
|
gap: 8px;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
border: 1px solid rgba(151, 174, 221, 0.2);
|
|
background: linear-gradient(160deg, rgba(10, 21, 43, 0.72), rgba(8, 16, 31, 0.78));
|
|
}
|
|
|
|
.thread-block--ancestors > .section-title {
|
|
color: #b9cbef;
|
|
}
|
|
|
|
.thread-block--ancestors {
|
|
border-color: rgba(141, 166, 214, 0.26);
|
|
background: linear-gradient(160deg, rgba(12, 28, 56, 0.73), rgba(7, 15, 32, 0.78));
|
|
}
|
|
|
|
.thread-block--focus > .section-title {
|
|
color: #f0d9a4;
|
|
}
|
|
|
|
.thread-block--focus {
|
|
border-color: rgba(214, 177, 95, 0.34);
|
|
background: linear-gradient(160deg, rgba(33, 44, 72, 0.68), rgba(12, 20, 36, 0.8));
|
|
}
|
|
|
|
.thread-block--replies > .section-title {
|
|
color: #c8d6f5;
|
|
}
|
|
|
|
.thread-block--replies {
|
|
border-color: rgba(161, 186, 233, 0.24);
|
|
}
|
|
|
|
.channel-main-action {
|
|
min-height: 48px;
|
|
border-radius: 13px;
|
|
}
|
|
|
|
.channel-back-btn {
|
|
min-height: 44px;
|
|
}
|
|
|
|
.channel-action-like.is-liked,
|
|
.thread-like-btn.is-liked {
|
|
background: linear-gradient(120deg, rgba(128, 39, 56, 0.92), rgba(92, 26, 39, 0.94));
|
|
border-color: rgba(250, 145, 165, 0.54);
|
|
color: #ffe5ec;
|
|
}
|
|
|
|
.channel-action-reply,
|
|
.thread-reply-btn {
|
|
border-color: rgba(152, 181, 240, 0.48);
|
|
}
|
|
|
|
.channel-action-thread {
|
|
border-color: rgba(216, 178, 95, 0.5);
|
|
color: #f3ddac;
|
|
}
|
|
|
|
@media (max-width: 430px) {
|
|
.channels-screen .page-title {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.channels-screen--list .page-title {
|
|
font-size: 34px;
|
|
}
|
|
|
|
.channels-hero-title {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.channels-action-btn {
|
|
min-height: 48px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.channel-row {
|
|
grid-template-columns: 40px minmax(0, 1fr) 64px;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.channel-row .avatar {
|
|
width: 38px;
|
|
height: 38px;
|
|
min-width: 38px;
|
|
min-height: 38px;
|
|
}
|
|
|
|
.channel-row-title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.channel-row-message {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.channel-message-actions {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 365px) {
|
|
.channels-screen .page-title {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.channels-action-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.channel-message-actions {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.thread-node-actions {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|