SHA256
Обновить UI профиля и навигации
This commit is contained in:
@@ -0,0 +1,247 @@
|
||||
/* Channel thread screen styles. */
|
||||
|
||||
.thread-node-card.is-rating {
|
||||
border-color: transparent;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(112, 84, 22, 0.12), rgba(20, 25, 35, 0.58)),
|
||||
rgba(20, 25, 35, 0.55);
|
||||
box-shadow: 0 0 38px rgba(181, 136, 42, 0.14);
|
||||
}
|
||||
.thread-node-stats.is-hidden {
|
||||
opacity: 0;
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.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-views {
|
||||
margin: 0;
|
||||
font-size: 12px;
|
||||
line-height: 1.35;
|
||||
color: rgba(255, 255, 255, 0.58);
|
||||
}
|
||||
|
||||
|
||||
.thread-node-actions {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--thread .thread-node-actions {
|
||||
display: flex;
|
||||
grid-template-columns: none;
|
||||
}
|
||||
|
||||
|
||||
.thread-node-level {
|
||||
--depth: 0;
|
||||
margin-left: calc(var(--depth) * 12px);
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--thread .thread-node-card {
|
||||
padding: 14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.thread-history-divider {
|
||||
height: 0;
|
||||
border-top: 2px solid rgba(255, 255, 255, 0.26);
|
||||
margin: 6px 0 10px;
|
||||
}
|
||||
|
||||
|
||||
.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: transparent;
|
||||
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);
|
||||
}
|
||||
.thread-like-btn {
|
||||
transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
|
||||
}
|
||||
.thread-like-btn.is-long-press {
|
||||
transform: scale(0.96);
|
||||
filter: brightness(1.08) drop-shadow(0 0 8px rgba(255, 220, 100, 0.28));
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
.thread-open-btn {
|
||||
color: rgba(255, 255, 255, 0.62);
|
||||
}
|
||||
@media (max-width: 430px) {
|
||||
.thread-node-actions {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
@media (max-width: 365px) {
|
||||
.thread-node-actions {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
.thread-node-card.is-own-new {
|
||||
box-shadow: 0 0 52px rgba(88, 69, 176, 0.2), 0 12px 24px rgba(2, 8, 16, 0.46);
|
||||
}
|
||||
@media (max-width: 420px) {
|
||||
.thread-node-actions {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.thread-block {
|
||||
gap: 8px;
|
||||
padding: 8px;
|
||||
background: rgba(20, 25, 35, 0.55);
|
||||
backdrop-filter: blur(24px);
|
||||
-webkit-backdrop-filter: blur(24px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.07);
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 0 60px rgba(80, 60, 180, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.07);
|
||||
}
|
||||
|
||||
|
||||
.thread-summary {
|
||||
color: #efd9a4;
|
||||
background: rgba(20, 25, 35, 0.55);
|
||||
backdrop-filter: blur(24px);
|
||||
-webkit-backdrop-filter: blur(24px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.07);
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 0 60px rgba(80, 60, 180, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.07);
|
||||
}
|
||||
|
||||
|
||||
.thread-node-card {
|
||||
gap: 9px;
|
||||
backdrop-filter: blur(24px);
|
||||
-webkit-backdrop-filter: blur(24px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.07);
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 0 60px rgba(80, 60, 180, 0.15);
|
||||
padding: 20px;
|
||||
margin-bottom: 16px;
|
||||
border-color: rgba(255, 255, 255, 0.07);
|
||||
background: rgba(20, 25, 35, 0.55);
|
||||
}
|
||||
|
||||
|
||||
.thread-node-actions .secondary-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
background: none;
|
||||
border: none;
|
||||
color: rgba(255, 255, 255, 0.45);
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
min-height: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--thread .channels-user-chip {
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
padding: 0;
|
||||
margin-bottom: 0;
|
||||
color: rgba(255, 255, 255, 0.35);
|
||||
min-height: 0;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.thread-block--replies > .section-title {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
margin: 0 0 2px;
|
||||
}
|
||||
.channels-screen .thread-node-card,
|
||||
.channels-screen .thread-block,
|
||||
.channels-screen .thread-summary {
|
||||
animation: breatheCard 8s ease-in-out infinite;
|
||||
position: relative;
|
||||
}
|
||||
.channels-screen .thread-node-card:hover,
|
||||
.channels-screen .thread-block:hover,
|
||||
.channels-screen .thread-summary:hover {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
|
||||
/* Thread cards should stay fixed without breathing motion */
|
||||
.channels-screen--thread .thread-node-card,
|
||||
.channels-screen--thread .thread-block,
|
||||
.channels-screen--thread .thread-summary {
|
||||
animation: none;
|
||||
}
|
||||
@@ -0,0 +1,685 @@
|
||||
/* Channel screen styles. */
|
||||
.channels-screen.channels-screen--channel::before {
|
||||
background:
|
||||
radial-gradient(circle at 14% 16%, rgba(82, 73, 184, 0.2), transparent 44%),
|
||||
radial-gradient(circle at 86% 8%, rgba(57, 89, 161, 0.22), transparent 46%),
|
||||
radial-gradient(circle at 54% 84%, rgba(64, 47, 138, 0.15), transparent 42%),
|
||||
linear-gradient(180deg, #0a0b10 0%, #0a0b10 62%, rgba(10, 11, 16, 0.92) 100%);
|
||||
}
|
||||
|
||||
|
||||
.channel-counter-meta,
|
||||
.channel-counter-value {
|
||||
opacity: 0;
|
||||
transform: translateY(3px);
|
||||
transition: opacity 0.22s ease, transform 0.22s ease;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-card {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
|
||||
.channel-note {
|
||||
font-size: 13px;
|
||||
color: #e8d8b0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
|
||||
.channel-feed {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
.channel-unread-line {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin: 10px 0 12px;
|
||||
padding: 10px 14px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid transparent;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(50, 39, 14, 0.9), rgba(22, 25, 39, 0.9));
|
||||
color: #ffe6a7;
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.08em;
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
box-shadow: 0 10px 24px rgba(6, 10, 20, 0.35);
|
||||
}
|
||||
|
||||
|
||||
.channel-unread-line::before,
|
||||
.channel-unread-line::after {
|
||||
content: "";
|
||||
flex: 1 1 0;
|
||||
height: 1px;
|
||||
min-width: 18px;
|
||||
background: linear-gradient(90deg, transparent, rgba(244, 202, 102, 0.8), transparent);
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--channel .channel-feed {
|
||||
gap: 2px;
|
||||
margin-left: -7px;
|
||||
margin-right: -7px;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-avatar.avatar-image {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-kind-badge--status {
|
||||
color: #bfe9d1;
|
||||
background: rgba(38, 92, 62, 0.32);
|
||||
border: 1px solid rgba(137, 223, 176, 0.26);
|
||||
}
|
||||
|
||||
|
||||
.channel-message-target-preview {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
padding: 9px 11px;
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(154, 178, 224, 0.16);
|
||||
background: rgba(13, 22, 39, 0.56);
|
||||
}
|
||||
|
||||
|
||||
.channel-message-target-preview strong {
|
||||
color: #f0d99c;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-target-preview span {
|
||||
color: rgba(188, 208, 244, 0.82);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-target-preview p {
|
||||
margin: 0;
|
||||
color: #d9e6ff;
|
||||
font-size: 13px;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen .channel-message-card.is-rating {
|
||||
border-color: transparent;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(112, 84, 22, 0.12), rgba(20, 25, 35, 0.58)),
|
||||
rgba(20, 25, 35, 0.55);
|
||||
box-shadow: 0 0 38px rgba(181, 136, 42, 0.14);
|
||||
}
|
||||
|
||||
|
||||
.channels-screen .channel-message-card.is-focus-flash {
|
||||
border-color: transparent;
|
||||
box-shadow: 0 0 34px rgba(255, 214, 117, 0.16);
|
||||
}
|
||||
|
||||
|
||||
.channel-message-body--deleted {
|
||||
color: #ff9e9e;
|
||||
border: 1px solid rgba(255, 126, 126, 0.5);
|
||||
background: rgba(120, 18, 18, 0.28);
|
||||
border-radius: 10px;
|
||||
padding: 8px 10px;
|
||||
}
|
||||
|
||||
|
||||
.channel-system-event-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
width: fit-content;
|
||||
max-width: min(88%, 460px);
|
||||
margin: 0 auto 4px;
|
||||
padding: 8px 16px;
|
||||
border-color: transparent;
|
||||
border-radius: 999px;
|
||||
background: rgba(89, 67, 31, 0.26);
|
||||
color: rgba(255, 235, 188, 0.92);
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.channel-system-event-card__label {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
|
||||
.channel-meta-details-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(96px, 120px) 1fr;
|
||||
gap: 10px 14px;
|
||||
align-items: start;
|
||||
color: rgba(255, 255, 255, 0.92);
|
||||
}
|
||||
|
||||
|
||||
.channel-meta-details-grid > span:nth-child(odd) {
|
||||
color: rgba(255, 255, 255, 0.48);
|
||||
}
|
||||
|
||||
|
||||
.channel-meta-details-grid code {
|
||||
color: rgba(255, 214, 117, 0.92);
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
|
||||
.channel-profile-card {
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
|
||||
.channel-profile-modal-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
.channel-profile-edit-btn {
|
||||
width: 38px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
|
||||
.channel-profile-avatar {
|
||||
--channel-avatar-size: 96px;
|
||||
width: var(--channel-avatar-size);
|
||||
height: var(--channel-avatar-size);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
align-self: center;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(145deg, rgba(255, 214, 122, 0.22), rgba(56, 41, 22, 0.65));
|
||||
border: 1px solid transparent;
|
||||
color: rgba(255, 236, 194, 0.95);
|
||||
font-size: calc(var(--channel-avatar-size) * 0.42);
|
||||
font-weight: 700;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.channel-profile-avatar img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-views {
|
||||
margin: 0;
|
||||
font-size: 12px;
|
||||
line-height: 1.35;
|
||||
color: rgba(255, 255, 255, 0.58);
|
||||
}
|
||||
|
||||
|
||||
.channel-message-stats.is-hidden {
|
||||
opacity: 0;
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen .channel-message-card.is-counters-visible .channel-action-counter {
|
||||
opacity: 1;
|
||||
max-width: 40px;
|
||||
margin-left: 2px;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
|
||||
.topbar__right .channel-header-entrypoint-btn {
|
||||
border: 1px solid transparent;
|
||||
background: linear-gradient(180deg, rgba(57, 74, 119, 0.34), rgba(18, 29, 54, 0.34));
|
||||
color: #f1d99c;
|
||||
border-radius: 10px;
|
||||
padding-inline: 9px;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: .02em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
.channel-main-action {
|
||||
min-height: 48px;
|
||||
border-radius: 13px;
|
||||
}
|
||||
|
||||
|
||||
.channel-back-btn {
|
||||
min-height: 44px;
|
||||
}
|
||||
|
||||
|
||||
.channel-action-like {
|
||||
transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
|
||||
}
|
||||
|
||||
|
||||
.channel-action-like.is-long-press {
|
||||
transform: scale(0.96);
|
||||
filter: brightness(1.08) drop-shadow(0 0 8px rgba(255, 220, 100, 0.28));
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.channel-menu-item:disabled {
|
||||
opacity: 0.68;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.channel-toggle-btn {
|
||||
width: 48px;
|
||||
height: 28px;
|
||||
border-radius: 999px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
transition:
|
||||
transform 90ms ease,
|
||||
box-shadow 90ms ease,
|
||||
background-color 90ms ease,
|
||||
filter 120ms ease;
|
||||
}
|
||||
|
||||
.channel-toggle-btn:hover {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
filter: brightness(1.12);
|
||||
}
|
||||
|
||||
.channel-toggle-btn:active {
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
border: 0;
|
||||
box-shadow:
|
||||
inset 0 3px 8px rgba(0, 0, 0, 0.58),
|
||||
inset 0 -1px 2px rgba(255, 255, 255, 0.08);
|
||||
transform: translateY(1px) scale(0.97);
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
.channel-toggle-btn:focus-visible {
|
||||
outline: 2px solid rgba(255, 255, 255, 0.62);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
|
||||
.channel-toggle-btn::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
left: 3px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 50%;
|
||||
background: #d9e6ff;
|
||||
transition: transform 0.24s cubic-bezier(.2,.9,.3,1.15), background 0.2s ease;
|
||||
}
|
||||
|
||||
|
||||
.channel-toggle-btn.is-on::after {
|
||||
transform: translateX(20px);
|
||||
background: #f4dca6;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-description {
|
||||
margin: 0;
|
||||
color: #c8d7f6;
|
||||
font-size: 14px;
|
||||
line-height: 1.4;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-description.is-expanded {
|
||||
-webkit-line-clamp: unset;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-more {
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: #efcf8b;
|
||||
font-size: 12px;
|
||||
padding: 0;
|
||||
width: fit-content;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-type-chip {
|
||||
flex: 0 0 auto;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 28px;
|
||||
padding: 4px 9px;
|
||||
border-radius: 9px;
|
||||
border: 1px solid transparent;
|
||||
background: linear-gradient(180deg, rgba(57, 74, 119, 0.34), rgba(18, 29, 54, 0.34));
|
||||
color: #f1d99c;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.02em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-tools {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-type-select {
|
||||
min-width: 0;
|
||||
min-height: 46px;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen .channel-message-card.is-own-new {
|
||||
box-shadow: 0 0 52px rgba(88, 69, 176, 0.2), 0 12px 24px rgba(2, 8, 16, 0.46);
|
||||
}
|
||||
.primary-btn.channel-main-action {
|
||||
border-radius: 14px;
|
||||
padding: 14px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-card {
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
padding: 0;
|
||||
margin-bottom: 6px;
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-title {
|
||||
line-height: 1.35;
|
||||
font-family: inherit;
|
||||
color: rgba(255, 255, 255, 0.95);
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-meta {
|
||||
line-height: 1.35;
|
||||
font-family: inherit;
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.entrypoint-history-list {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
max-height: min(58vh, 30rem);
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
||||
.entrypoint-history-item {
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-webkit-touch-callout: none;
|
||||
appearance: none;
|
||||
border-radius: 14px;
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
padding: 12px 13px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
.entrypoint-history-item strong {
|
||||
color: #f1d99c;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
|
||||
.entrypoint-history-item span {
|
||||
color: rgba(188, 208, 244, 0.74);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.entrypoint-history-item p {
|
||||
margin: 0;
|
||||
color: #f5f8ff;
|
||||
font-size: 13px;
|
||||
line-height: 1.4;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
|
||||
.channel-head-actions .secondary-btn {
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
border-radius: 12px;
|
||||
padding: 10px 16px;
|
||||
}
|
||||
|
||||
|
||||
/* 1) Minimal breathing only for content cards */
|
||||
|
||||
|
||||
.channels-screen .channel-message-card {
|
||||
gap: 14px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.07);
|
||||
backdrop-filter: blur(24px);
|
||||
box-shadow: 0 0 60px rgba(80, 60, 180, 0.15);
|
||||
padding: 20px;
|
||||
margin-bottom: 16px;
|
||||
border-color: rgba(255, 255, 255, 0.07);
|
||||
background: rgba(20, 25, 35, 0.55);
|
||||
animation: breatheCard 8s ease-in-out infinite;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
/* Keep card hover static so breathe is the only motion */
|
||||
.channels-screen .channel-message-card:hover {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--channel .channel-main-action--compose {
|
||||
position: sticky;
|
||||
bottom: -12px;
|
||||
margin: 16px 20px 0;
|
||||
width: calc(100% - 40px);
|
||||
font-weight: 700;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
|
||||
.channel-menu-trigger .app-overflow-dots {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
|
||||
.channel-menu-trigger {
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
line-height: 1;
|
||||
border: none;
|
||||
background: none;
|
||||
color: var(--app-topbar-gold);
|
||||
text-shadow: 0 0 5px var(--app-topbar-blue-glow),
|
||||
0 0 12px var(--app-topbar-blue-glow-soft);
|
||||
}
|
||||
|
||||
|
||||
/* У меню больше нет «облачного» треугольного хвостика. */
|
||||
|
||||
|
||||
.channel-menu-item {
|
||||
width: 100%;
|
||||
min-height: 42px;
|
||||
padding: 0 11px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
gap: 10px;
|
||||
border: 0;
|
||||
border-radius: 10px;
|
||||
background: transparent;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
color: #ffffff;
|
||||
font: inherit;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
line-height: 1.2;
|
||||
text-align: left;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.channel-menu-item:hover {
|
||||
color: #ffffff;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
filter: brightness(1.12);
|
||||
}
|
||||
|
||||
.channel-menu-item:active {
|
||||
color: #ffffff;
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
border: 0;
|
||||
box-shadow:
|
||||
inset 0 3px 8px rgba(0, 0, 0, 0.58),
|
||||
inset 0 -1px 2px rgba(255, 255, 255, 0.08);
|
||||
transform: translateY(1px) scale(0.97);
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
.channel-menu-item:focus-visible {
|
||||
color: #ffffff;
|
||||
background: rgba(var(--shine-action-blue-rgb), 0.12);
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
transform: none;
|
||||
filter: none;
|
||||
outline: 2px solid rgba(255, 255, 255, 0.62);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
.channel-menu-item::before,
|
||||
.channel-menu-item::after {
|
||||
background: transparent;
|
||||
background-image: none;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
.channel-menu-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
min-width: 18px;
|
||||
flex: 0 0 18px;
|
||||
object-fit: contain;
|
||||
color: #65b7ff;
|
||||
filter: drop-shadow(0 0 5px rgba(39, 141, 255, 0.28));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.channel-menu-item.destructive {
|
||||
color: #ffb7c5;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.channel-menu-item.destructive:hover,
|
||||
.channel-menu-item.destructive:active {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.channel-menu-item.destructive:active {
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.channel-menu-item.destructive:focus-visible {
|
||||
color: #ffb7c5;
|
||||
background: rgba(var(--shine-action-blue-rgb), 0.12);
|
||||
}
|
||||
@@ -0,0 +1,438 @@
|
||||
/* Styles shared by Channel and Thread rendering. */
|
||||
|
||||
.attachment-trigger-btn {
|
||||
justify-self: start;
|
||||
min-width: 3.25rem;
|
||||
padding-inline: 0.8rem;
|
||||
}
|
||||
|
||||
|
||||
.draft-attachments {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.45rem;
|
||||
}
|
||||
|
||||
|
||||
.draft-attachment-chip {
|
||||
border-radius: 999px;
|
||||
cursor: pointer;
|
||||
font-size: 0.82rem;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
padding: 0.4rem 0.65rem;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
.modal-danger-action {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--channel .channel-message-card {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--channel .channel-message-card.is-diary-entry {
|
||||
width: min(100%, 28rem);
|
||||
max-width: min(84vw, 28rem);
|
||||
padding: 16px 16px 15px;
|
||||
justify-self: center;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-author-tile {
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
flex: 1 1 auto;
|
||||
width: auto;
|
||||
min-width: 0;
|
||||
padding: 8px 10px;
|
||||
border-radius: 8px;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.channel-message-avatar {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
min-width: 28px;
|
||||
min-height: 28px;
|
||||
border-radius: 50%;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
color: #f4f6ff;
|
||||
background: radial-gradient(circle at 30% 30%, #8a73ff, #4f4bda 58%, #3b2b89);
|
||||
}
|
||||
|
||||
|
||||
.channel-message-author {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-head-row {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-title {
|
||||
font-size: 15px;
|
||||
color: #f5f8ff;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-kind-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: fit-content;
|
||||
padding: 3px 8px;
|
||||
border-radius: 999px;
|
||||
font-size: 12px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-kind-badge--rating {
|
||||
color: #ffe8b0;
|
||||
background: rgba(124, 92, 28, 0.36);
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-body {
|
||||
color: #ffffff;
|
||||
line-height: 1.5;
|
||||
font-size: 15px;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-card--deleted-compact {
|
||||
gap: 7px;
|
||||
padding-top: 9px;
|
||||
padding-bottom: 9px;
|
||||
}
|
||||
|
||||
|
||||
.deleted-message-pill {
|
||||
appearance: none;
|
||||
width: 100%;
|
||||
border-radius: 12px;
|
||||
font-size: 13px;
|
||||
line-height: 1.2;
|
||||
text-align: left;
|
||||
padding: 8px 10px;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.channel-message-time {
|
||||
font-size: 11px;
|
||||
color: rgba(255, 255, 255, 0.48);
|
||||
}
|
||||
|
||||
|
||||
.channel-message-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
flex-wrap: nowrap;
|
||||
overflow-x: auto;
|
||||
padding-top: 14px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
|
||||
|
||||
.channel-message-actions::-webkit-scrollbar {
|
||||
width: 0;
|
||||
height: 0;
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.channel-action-item {
|
||||
appearance: none;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
position: relative;
|
||||
min-height: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
min-width: 24px;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
transition: color 0.18s ease, text-shadow 0.18s ease, transform 0.18s ease;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
.channel-action-item:disabled {
|
||||
opacity: 0.56;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.channel-action-icon {
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
|
||||
.channel-action-label {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.message-edited-marker {
|
||||
appearance: none;
|
||||
border: none;
|
||||
background: transparent;
|
||||
font-size: 11px;
|
||||
line-height: 1;
|
||||
padding: 0;
|
||||
margin-left: 6px;
|
||||
cursor: pointer;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.channel-action-counter {
|
||||
font-size: 11px;
|
||||
color: rgba(255, 255, 255, 0.45);
|
||||
opacity: 0;
|
||||
max-width: 0;
|
||||
overflow: hidden;
|
||||
transform: translateX(-3px);
|
||||
transition: opacity 0.2s ease, max-width 0.2s ease, transform 0.2s ease, margin-left 0.2s ease;
|
||||
}
|
||||
|
||||
|
||||
.blockchain-details-card {
|
||||
max-width: min(620px, calc(100vw - 28px));
|
||||
}
|
||||
|
||||
|
||||
.blockchain-details-grid {
|
||||
display: grid;
|
||||
grid-template-columns: max-content minmax(0, 1fr);
|
||||
gap: 8px 12px;
|
||||
padding: 12px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 14px;
|
||||
background: rgba(255, 255, 255, 0.035);
|
||||
}
|
||||
|
||||
|
||||
.blockchain-details-grid span {
|
||||
color: rgba(255, 255, 255, 0.58);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.blockchain-details-grid code,
|
||||
.blockchain-details-grid strong {
|
||||
min-width: 0;
|
||||
color: rgba(255, 244, 210, 0.96);
|
||||
font-size: 12px;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
|
||||
.blockchain-raw-block {
|
||||
max-height: 280px;
|
||||
overflow: auto;
|
||||
padding: 12px;
|
||||
border-radius: 14px;
|
||||
background: rgba(0, 0, 0, 0.32);
|
||||
color: rgba(255, 255, 255, 0.82);
|
||||
font-size: 11px;
|
||||
line-height: 1.45;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
|
||||
.channel-header-route-btn {
|
||||
position: static;
|
||||
min-height: 40px;
|
||||
max-width: min(72vw, 100%);
|
||||
padding: 0 4px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
font-size: 14px;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
|
||||
.channel-header-route-btn:hover,
|
||||
.channel-header-route-btn:focus-visible,
|
||||
.channel-header-route-btn:active,
|
||||
.channel-header-route-btn.is-springing {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 430px) {
|
||||
.channel-message-actions {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
@media (max-width: 365px) {
|
||||
.channel-message-actions {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.author-line {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 6px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.author-line-main {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
min-width: 0;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.channel-message-type-button {
|
||||
flex: 0 0 auto;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 82px;
|
||||
min-height: 28px;
|
||||
padding: 6px 10px;
|
||||
border-radius: 10px;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.02em;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.channel-message-type-button.is-static,
|
||||
.channel-message-type-button:disabled {
|
||||
opacity: 1;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
|
||||
.author-line-login {
|
||||
font-weight: 700;
|
||||
color: #f5f8ff;
|
||||
}
|
||||
|
||||
|
||||
.author-line-num {
|
||||
font-weight: 400;
|
||||
color: rgba(255, 255, 255, 0.44);
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 420px) {
|
||||
.channel-message-actions {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.channel-message-actions,
|
||||
.thread-node-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
flex-wrap: nowrap;
|
||||
overflow-x: auto;
|
||||
padding-top: 14px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
/* 2) Static controls with energy + glass glare (no levitation) */
|
||||
.channels-screen--list .channels-tab-btn,
|
||||
.channels-screen--list .channels-bottom-action,
|
||||
.channels-screen .channel-main-action,
|
||||
.channels-screen .channel-back-btn,
|
||||
.channels-screen .channel-head-actions .secondary-btn,
|
||||
.channels-screen .channel-action-item {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
transition: box-shadow 0.75s ease-out, color 0.28s ease, border-color 0.28s ease, background 0.28s ease;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen--list .channels-tab-btn:hover,
|
||||
.channels-screen--list .channels-bottom-action:hover,
|
||||
.channels-screen .channel-main-action:hover,
|
||||
.channels-screen .channel-back-btn:hover,
|
||||
.channels-screen .channel-head-actions .secondary-btn:hover,
|
||||
.channels-screen .channel-action-item:hover {
|
||||
transform: none;
|
||||
}
|
||||
|
||||
|
||||
.channels-screen::before,
|
||||
.channels-screen.channels-screen--channel::before {
|
||||
background: transparent;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,202 @@
|
||||
/* Diagnostics/admin/developer UI styles. */
|
||||
|
||||
.key-storage-option {
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
|
||||
.key-storage-option__description {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.key-storage-note {
|
||||
margin: 0;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
|
||||
.key-storage-note--strong {
|
||||
font-size: 17px;
|
||||
font-weight: 700;
|
||||
color: #eef4ff;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-list {
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto 10px;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 10px;
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(143, 167, 215, 0.18);
|
||||
background: rgba(14, 24, 45, 0.42);
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-key {
|
||||
color: #cdd9f2;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-value {
|
||||
color: #edf3ff;
|
||||
font-size: 13px;
|
||||
text-align: right;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-indicator {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
background: #64708a;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-indicator.is-ok {
|
||||
background: #66d69a;
|
||||
box-shadow: 0 0 0 3px rgba(102, 214, 154, 0.18);
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-indicator.is-warn {
|
||||
background: #f0c56b;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-indicator.is-bad {
|
||||
background: #e48792;
|
||||
box-shadow: 0 0 0 3px rgba(228, 135, 146, 0.18);
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-indicator.is-neutral {
|
||||
background: #8994ab;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-actions {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-recommendations {
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
|
||||
.pwa-diag-json {
|
||||
margin: 0;
|
||||
max-height: 260px;
|
||||
overflow: auto;
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
font-size: 12px;
|
||||
line-height: 1.35;
|
||||
color: #dfe9ff;
|
||||
background: rgba(8, 15, 28, 0.82);
|
||||
border: 1px solid rgba(134, 157, 205, 0.2);
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-screen {
|
||||
box-sizing: border-box;
|
||||
min-height: 100vh;
|
||||
max-width: 100%;
|
||||
overflow-x: hidden;
|
||||
padding-top: 3.25rem;
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-toolbar {
|
||||
align-items: center;
|
||||
background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
|
||||
border-bottom: 1px solid transparent;
|
||||
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
|
||||
box-sizing: border-box;
|
||||
display: grid;
|
||||
gap: 0.42rem;
|
||||
grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem 2.4rem;
|
||||
justify-content: stretch;
|
||||
left: 0;
|
||||
margin: 0;
|
||||
padding: max(0.35rem, env(safe-area-inset-top)) 0.45rem 0.45rem;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 15;
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-back,
|
||||
.arweave-uploads-add,
|
||||
.arweave-uploads-menu-btn {
|
||||
align-items: center;
|
||||
aspect-ratio: 1;
|
||||
display: inline-flex;
|
||||
font-size: 1.2rem;
|
||||
height: 2.35rem;
|
||||
justify-content: center;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-title {
|
||||
align-self: center;
|
||||
color: #f8fafc;
|
||||
font-size: 0.94rem;
|
||||
font-weight: 800;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-menu {
|
||||
background: rgba(15, 23, 42, 0.98);
|
||||
border: 1px solid transparent;
|
||||
border-radius: 0.85rem;
|
||||
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
|
||||
display: grid;
|
||||
min-width: 13rem;
|
||||
padding: 0.35rem;
|
||||
position: absolute;
|
||||
right: 0.45rem;
|
||||
top: calc(100% + 0.35rem);
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-menu[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-menu .text-btn {
|
||||
color: #f8fafc;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
.arweave-uploads-list {
|
||||
max-height: calc(100vh - 4.1rem);
|
||||
min-height: calc(100vh - 4.1rem);
|
||||
width: 100%;
|
||||
}
|
||||
.arweave-uploads-menu-btn .app-overflow-dots {
|
||||
margin: auto;
|
||||
}
|
||||
@@ -0,0 +1,325 @@
|
||||
/* Device/session/pairing feature styles. */
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
|
||||
.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);
|
||||
}
|
||||
|
||||
|
||||
.session-status {
|
||||
color: var(--text-muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
|
||||
.session-status--online {
|
||||
color: #3dbb72;
|
||||
}
|
||||
|
||||
|
||||
.session-item {
|
||||
width: 100%;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: var(--radius-md);
|
||||
padding: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.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);
|
||||
}
|
||||
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
|
||||
/* Pairing approve/reject use their semantic button roles; legacy green/red surfaces were not observable in Stage 3.1. */
|
||||
|
||||
.pairing-request-actions > button {
|
||||
flex: 1 1 140px;
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-dialog {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 13000;
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-dialog__backdrop {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: rgba(3, 7, 15, .76);
|
||||
backdrop-filter: blur(8px);
|
||||
-webkit-backdrop-filter: blur(8px);
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-dialog__card {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: min(calc(100vw - 28px), 390px);
|
||||
transform: translate(-50%, -50%);
|
||||
padding: 16px;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-key-list {
|
||||
display: grid;
|
||||
gap: 9px;
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-key {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
align-items: center;
|
||||
gap: 11px;
|
||||
min-height: 58px;
|
||||
padding: 9px 12px;
|
||||
border: 1px solid rgba(255,255,255,.11);
|
||||
border-radius: 14px;
|
||||
background: rgba(255,255,255,.035);
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-key span {
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-key small {
|
||||
color: rgba(255,255,255,.48);
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-key.is-required {
|
||||
opacity: .82;
|
||||
}
|
||||
|
||||
|
||||
.pairing-transfer-dialog__actions {
|
||||
justify-content: flex-end;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
|
||||
/* Pairing actions retain the exact Stage 3.1 focus-only approve/reject variant. */
|
||||
.screen-content.settings-bordered-actions .pairing-approve-btn,
|
||||
.screen-content.settings-bordered-actions .pairing-reject-btn {
|
||||
border-radius: 14px;
|
||||
padding-inline: 12px;
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-approve-btn {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
background-image: none;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-approve-btn:hover {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
background-image: none;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
transform: none;
|
||||
filter: brightness(1.12);
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-approve-btn:active {
|
||||
color: #fff;
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
background-image: none;
|
||||
border: 0;
|
||||
box-shadow:
|
||||
inset 0 3px 8px rgba(0, 0, 0, 0.58),
|
||||
inset 0 -1px 2px rgba(255, 255, 255, 0.08);
|
||||
transform: none;
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-approve-btn:focus,
|
||||
.screen-content.settings-bordered-actions .pairing-approve-btn:focus-visible {
|
||||
background: linear-gradient(180deg, rgba(57, 180, 108, 0.92), rgba(22, 116, 69, 0.94));
|
||||
border: 1px solid rgba(126, 235, 170, 0.55);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 22px rgba(22, 116, 69, 0.20);
|
||||
transform: none;
|
||||
filter: none;
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-reject-btn {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-reject-btn:hover {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
transform: translateY(-1px);
|
||||
filter: brightness(1.12);
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-reject-btn:active {
|
||||
color: #fff;
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
border: 0;
|
||||
box-shadow:
|
||||
inset 0 3px 8px rgba(0, 0, 0, 0.58),
|
||||
inset 0 -1px 2px rgba(255, 255, 255, 0.08);
|
||||
transform: translateY(1px) scale(0.97);
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
.screen-content.settings-bordered-actions .pairing-reject-btn:focus,
|
||||
.screen-content.settings-bordered-actions .pairing-reject-btn:focus-visible {
|
||||
color: #fff1f3;
|
||||
background: rgba(134, 31, 49, 0.28);
|
||||
border: 1px solid rgba(255, 105, 128, 0.42);
|
||||
box-shadow: none;
|
||||
transform: none;
|
||||
filter: none;
|
||||
}
|
||||
@@ -0,0 +1,724 @@
|
||||
/* Поиск контактов относится к feature «Личные/Контакты». */
|
||||
.contact-search-actions {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.contact-search-form-card,
|
||||
.contact-search-results-card {
|
||||
margin: 0 6px;
|
||||
padding: 14px;
|
||||
border-radius: 24px;
|
||||
background: rgba(7, 10, 18, 0.88);
|
||||
border: 1px solid rgba(140, 99, 255, 0.24);
|
||||
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
|
||||
}
|
||||
|
||||
|
||||
.contact-search-input {
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
|
||||
.contact-search-results-title {
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: rgba(252, 234, 192, 0.92);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.contact-search-result-main {
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Personal messages list and DM-list styles. */
|
||||
|
||||
/* ===== Direct Messages Glass Theme (DM-only) ===== */
|
||||
.dm-screen {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
min-height: 100%;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
|
||||
.screen-content .dm-screen {
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dm-orbs-drift {
|
||||
from { transform: translate3d(0, 0, 0) scale(1); }
|
||||
to { transform: translate3d(0, -8px, 0) scale(1.02); }
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.dm-dialog-card {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: 60px minmax(0, 1fr) auto;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
min-height: 74px;
|
||||
padding: 10px 12px 10px 10px;
|
||||
border-radius: 26px;
|
||||
background: rgba(7, 10, 18, 0.88);
|
||||
backdrop-filter: blur(24px);
|
||||
-webkit-backdrop-filter: blur(24px);
|
||||
border: 1px solid rgba(140, 99, 255, 0.32); /* оконтовка = цвет линии связи; default = violet (контакт) */
|
||||
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dm-dialog-card:focus-visible { outline: 2px solid var(--rel-link); outline-offset: 2px; }
|
||||
|
||||
.dm-card--family { border-color: transparent; }
|
||||
/* линия связи: gold (семья) */
|
||||
.dm-card--shining { border-color: rgba(104, 216, 255, 0.45); }
|
||||
/* линия связи: cyan (сияющий) */
|
||||
|
||||
.dm-screen .list-item .avatar {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
min-width: 40px;
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
|
||||
.dm-screen .list-item {
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
|
||||
.dm-screen .meta-muted {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
|
||||
/* ===== «Личные сообщения» v2 — списочная форма «Связей» ===== */
|
||||
/* Токены-мост: НЕ придумываем цвета, наследуем канонический язык «Связей» (network-graph.css :root). */
|
||||
.dm-screen {
|
||||
--dm-tone-default: var(--rel-contact);
|
||||
--dm-tone-family: var(--rel-family);
|
||||
--dm-tone-shining: var(--rel-shining);
|
||||
}
|
||||
|
||||
|
||||
/* DM-шапка через grid 1fr auto 1fr: бренд слева, title строго по центру, «+» справа. */
|
||||
|
||||
.dm-head-brand { display: flex; align-items: center; gap: 8px; min-width: 0; }
|
||||
|
||||
.dm-head-logo-wrap { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 auto; }
|
||||
|
||||
.dm-head-logo {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
filter: drop-shadow(0 0 7px rgba(71, 196, 255, 0.38));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Центр шапки — светящийся бренд «Shine» */
|
||||
|
||||
@keyframes dm-shine-pulse {
|
||||
0%, 100% { text-shadow: 0 0 5px rgba(240, 184, 46, 0.42), 0 0 12px rgba(240, 184, 46, 0.26), 0 0 22px rgba(240, 184, 46, 0.12); }
|
||||
50% { text-shadow: 0 0 9px rgba(240, 184, 46, 0.68), 0 0 20px rgba(240, 184, 46, 0.46), 0 0 34px rgba(240, 184, 46, 0.26); }
|
||||
}
|
||||
|
||||
|
||||
.dm-divider { position: relative; height: 18px; margin: 6px 14px 8px; }
|
||||
|
||||
.dm-divider::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(240, 184, 46, 0.5), transparent); }
|
||||
|
||||
.dm-divider::after { content: ""; position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; transform: translate(-50%, -50%) rotate(45deg); background: var(--rel-family); box-shadow: 0 0 8px var(--rel-family-glow); }
|
||||
|
||||
|
||||
/* список: скролл внутри контента, карточки не ужимаем, отступ снизу под bottom nav (86px) + 16px */
|
||||
.dm-list { display: flex; flex-direction: column; gap: 8px; padding: 0 6px; padding-bottom: calc(86px + 16px); }
|
||||
|
||||
|
||||
/* текст карточки */
|
||||
.dm-row-main { min-width: 0; }
|
||||
|
||||
.dm-row-titleline { display: flex; align-items: center; gap: 6px; min-width: 0; }
|
||||
|
||||
.dm-row-titlewrap { flex-wrap: wrap; row-gap: 6px; }
|
||||
|
||||
.dm-dialog-card .dm-row-title { font-size: 16px; font-weight: 600; color: var(--text); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
|
||||
.dm-dialog-card .dm-row-last-message { font-size: 14px; color: rgba(244, 246, 255, 0.48); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
|
||||
.dm-contact-note {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 22px;
|
||||
padding: 0 8px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: rgba(244, 246, 255, 0.62);
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* галочка-подтверждён у имени (золотая, без слова «Подтверждён») */
|
||||
.dm-name-check { display: inline-flex; flex: 0 0 auto; color: var(--rel-family); }
|
||||
|
||||
.dm-name-check svg { width: 16px; height: 16px; }
|
||||
|
||||
|
||||
/* AvatarRing — обод/свечение по тону (адаптация орбов «Связей», без тяжёлой магии) */
|
||||
.dm-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; position: relative; }
|
||||
|
||||
.dm-av .avatar { width: 40px; height: 40px; min-width: 40px; min-height: 40px; border: none; box-shadow: none; }
|
||||
|
||||
/* Цветные обводки вокруг аватаров (violet/gold) убраны по просьбе. Свечение оставляем только у сияющих (ниже). */
|
||||
.dm-av--default { box-shadow: none; }
|
||||
|
||||
.dm-av--family { box-shadow: none; }
|
||||
|
||||
/* Сияющий аватар = АДАПТАЦИЯ сияющего узла экрана «Связи»: та же небесная палитра, тот же небесный rim,
|
||||
тот же двойной «дышащий» пульс. Переиспользуем ОБЩИЕ keyframes графа (fg-shine-glow — пульс box-shadow,
|
||||
fg-shine-halo — дыхание радиального ореола; объявлены в network-graph.css, грузится глобально), а не рисуем
|
||||
второй похожий эффект. Радиальный ореол повторяет стопы узла графа; SVG-фильтр #fg-shine-glow есть только на
|
||||
стр. «Связи», поэтому здесь мягкий CSS-blur. Мини-сфера компактная — не размывает текст/соседей. */
|
||||
.dm-av--shining {
|
||||
border: 1px solid rgba(150, 240, 255, 0.62);
|
||||
animation: fg-shine-glow 3.6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.dm-av--shining::before {
|
||||
content: ""; position: absolute; inset: -12px; border-radius: 50%; z-index: -1; pointer-events: none;
|
||||
background: radial-gradient(circle, rgba(140, 240, 255, 0.5) 0%, rgba(130, 235, 255, 0.18) 46%, rgba(130, 235, 255, 0) 72%);
|
||||
filter: blur(3.4px); /* = stdDeviation 3.4 SVG-фильтра #fg-shine-glow графа; геометрия inset −12px тоже как у узла (58px↔56px, scale≈1) */
|
||||
animation: fg-shine-halo 3.6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.dm-av--shining { animation: none; }
|
||||
.dm-av--shining::before { animation: none; }
|
||||
}
|
||||
|
||||
|
||||
.dm-row-meta-col {
|
||||
display: inline-flex;
|
||||
min-width: 0;
|
||||
align-self: stretch;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.dm-row-meta-line {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
min-height: 24px;
|
||||
}
|
||||
|
||||
.dm-row-meta-spacer {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.dm-row-time {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: rgba(244, 246, 255, 0.44);
|
||||
}
|
||||
|
||||
.dm-row-time--empty {
|
||||
width: 0;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* непрочитанные — отдельная violet-сфера (НЕ изумруд) */
|
||||
.dm-unread-badge {
|
||||
min-width: 24px; height: 24px; padding: 0 7px; border-radius: 12px;
|
||||
display: inline-flex; align-items: center; justify-content: center;
|
||||
font-size: 12px; font-weight: 700; color: var(--text);
|
||||
background: rgba(140, 99, 255, 0.16); border: 1px solid rgba(140, 99, 255, 0.55);
|
||||
}
|
||||
|
||||
.dm-chevron { display: inline-flex; color: rgba(244, 246, 255, 0.32); }
|
||||
|
||||
.dm-chevron svg { width: 16px; height: 16px; }
|
||||
|
||||
|
||||
@media (max-width: 380px) {
|
||||
.dm-dialog-card {
|
||||
grid-template-columns: 60px minmax(0, 1fr);
|
||||
row-gap: 10px;
|
||||
}
|
||||
.dm-row-meta-col {
|
||||
grid-column: 2;
|
||||
justify-self: end;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Значок «связь через кого» — ТОЛЬКО иконка (кликабельная); детали пути в попапе ниже */
|
||||
.dm-via {
|
||||
display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
|
||||
width: 24px; height: 24px; padding: 0; border-radius: 8px; cursor: pointer;
|
||||
color: var(--rel-link); border: 1px solid rgba(25, 229, 138, 0.5); background: rgba(25, 229, 138, 0.08);
|
||||
}
|
||||
|
||||
.dm-via-icon { display: inline-flex; }
|
||||
|
||||
.dm-via-icon svg { width: 14px; height: 14px; }
|
||||
|
||||
/* попап пути связи: Ты → …посредники… → он; узлы = аватар+имя, кликабельные → профиль */
|
||||
.dm-via-path {
|
||||
display: none; position: absolute; left: 14px; right: 14px; top: 46px; z-index: 6;
|
||||
flex-wrap: wrap; align-items: center; gap: 6px; padding: 9px 11px; border-radius: 12px;
|
||||
background: rgba(8, 12, 20, 0.97); border: 1px solid rgba(25, 229, 138, 0.35);
|
||||
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
|
||||
}
|
||||
|
||||
.dm-via-path.is-open { display: flex; }
|
||||
|
||||
.dm-via-node {
|
||||
display: inline-flex; align-items: center; gap: 5px; padding: 3px 7px 3px 4px; border-radius: 11px;
|
||||
background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
color: var(--text); font-size: 12px; cursor: default;
|
||||
}
|
||||
|
||||
button.dm-via-node { cursor: pointer; }
|
||||
|
||||
button.dm-via-node:hover { border-color: rgba(25, 229, 138, 0.5); }
|
||||
|
||||
.dm-via-node-ava { width: 20px; height: 20px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
|
||||
|
||||
.dm-via-node-ava .avatar { width: 20px; height: 20px; min-width: 20px; min-height: 20px; border: none; box-shadow: none; }
|
||||
|
||||
.dm-via-node-ava .avatar-fallback { font-size: 9px; font-weight: 700; }
|
||||
|
||||
.dm-via-me { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(150deg, #F0B82E, #D49F22); color: #1a1205; font-size: 10px; font-weight: 700; }
|
||||
|
||||
.dm-via-node-name { white-space: nowrap; }
|
||||
|
||||
.dm-via-arrow { font-size: 12px; color: rgba(25, 229, 138, 0.8); }
|
||||
|
||||
|
||||
.screen-content:has(> .dm-screen) {
|
||||
scrollbar-width: none;
|
||||
-ms-overflow-style: none;
|
||||
}
|
||||
|
||||
|
||||
.screen-content:has(> .dm-screen)::-webkit-scrollbar {
|
||||
width: 0;
|
||||
height: 0;
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.dm-history-loader {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 3;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
pointer-events: none;
|
||||
margin-bottom: -4px;
|
||||
opacity: 0;
|
||||
transform: translateY(-8px);
|
||||
transition: opacity 160ms ease, transform 160ms ease;
|
||||
}
|
||||
|
||||
|
||||
.dm-history-loader[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.dm-history-loader.is-visible {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
|
||||
.dm-history-loader__pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
min-height: 34px;
|
||||
padding: 7px 14px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid transparent;
|
||||
background: rgba(9, 15, 26, 0.92);
|
||||
color: rgba(245, 226, 179, 0.96);
|
||||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
|
||||
backdrop-filter: blur(14px);
|
||||
-webkit-backdrop-filter: blur(14px);
|
||||
}
|
||||
|
||||
|
||||
.dm-history-loader__label {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
|
||||
.dm-history-loader__spinner {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid transparent;
|
||||
border-top-color: transparent;
|
||||
box-shadow: 0 0 10px rgba(212, 175, 55, 0.18);
|
||||
animation: dm-history-loader-spin 0.85s linear infinite;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dm-history-loader-spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.dm-actions-col {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 46px);
|
||||
grid-template-rows: 46px;
|
||||
grid-template-areas: "emoji send";
|
||||
gap: 6px;
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
|
||||
.dm-screen .input {
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
border: 1px solid transparent;
|
||||
border-radius: 14px;
|
||||
color: rgba(255, 255, 255, 0.92);
|
||||
}
|
||||
|
||||
|
||||
.dm-floating-menu-layer {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 120;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
||||
.dm-confirm-check {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 10px;
|
||||
padding: 10px 12px;
|
||||
border-radius: 14px;
|
||||
background: rgba(17, 26, 46, 0.62);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
color: #d9e6ff;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
.dm-confirm-check input {
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
|
||||
/* ===== Empty states alignment + transparent wrappers cleanup ===== */
|
||||
|
||||
|
||||
.dm-screen::before {
|
||||
position: absolute;
|
||||
inset: -12px -12px 0;
|
||||
z-index: -1;
|
||||
pointer-events: none;
|
||||
background: radial-gradient(260px 260px at 86% 10%, rgba(147, 112, 219, 0.25), transparent 72%),
|
||||
radial-gradient(220px 220px at 14% 84%, rgba(147, 112, 219, 0.2), transparent 72%),
|
||||
radial-gradient(220px 220px at 76% 68%, rgba(212, 175, 55, 0.16), transparent 75%),
|
||||
radial-gradient(190px 190px at 26% 20%, rgba(212, 175, 55, 0.12), transparent 74%),
|
||||
#05070A;
|
||||
animation: dm-orbs-drift 16s ease-in-out infinite alternate;
|
||||
content: none;
|
||||
}
|
||||
|
||||
|
||||
.dm-screen .dm-list > .card.meta-muted {
|
||||
margin: 0 20px;
|
||||
padding: 14px 16px;
|
||||
border-radius: 14px;
|
||||
background: rgba(18, 24, 38, 0.42);
|
||||
backdrop-filter: blur(25px);
|
||||
-webkit-backdrop-filter: blur(25px);
|
||||
border: 1px solid transparent;
|
||||
color: rgba(225, 233, 248, 0.86);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
width: calc(100% - 40px);
|
||||
}
|
||||
|
||||
|
||||
/* «Личные»: вместо жёлтого шестиугольника — текущий аватар пользователя. */
|
||||
|
||||
|
||||
|
||||
|
||||
/* Список личных чатов: без цветной границы карточки, компактная ава как в шапке
|
||||
* самого чата, а дата/время стоит на строке превью. */
|
||||
|
||||
|
||||
.dm-list-screen .dm-card--family,
|
||||
.dm-list-screen .dm-card--shining {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-av {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
min-width: 60px;
|
||||
min-height: 60px;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-av .avatar,
|
||||
.dm-list-screen .list-item .avatar {
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
min-width: 56px;
|
||||
min-height: 56px;
|
||||
font-size: 18px;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-row-main {
|
||||
display: grid;
|
||||
grid-template-rows: 22px 20px;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
min-height: 42px;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-row-titlewrap {
|
||||
flex-wrap: nowrap;
|
||||
min-height: 22px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-row-last-message {
|
||||
align-self: center;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-unread-badge,
|
||||
.dm-list-screen .dm-row-meta-spacer {
|
||||
grid-row: 1;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-row-time {
|
||||
grid-row: 2;
|
||||
align-self: center;
|
||||
line-height: 20px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-row-meta-line {
|
||||
display: contents;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-chevron {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 380px) {
|
||||
.dm-list-screen .dm-dialog-card {
|
||||
grid-template-columns: 60px minmax(0, 1fr) auto;
|
||||
}
|
||||
.dm-list-screen .dm-row-meta-col {
|
||||
grid-column: 3;
|
||||
justify-self: end;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ===== DM + Channels polish (2026-08-22 13:22) ===== */
|
||||
/* «Личные»: аватар основной вкладки стоит ровно на той же горизонтальной позиции,
|
||||
* что и аватар собеседника в открытом чате: после 40px back-slot + 8px gap. */
|
||||
|
||||
|
||||
|
||||
/* ===== DM avatar + channel row visual alignment fix (2026-08-22 13:29) ===== */
|
||||
/* Шапка «Личных» переносится в topbar-slot отдельно от .dm-list-screen,
|
||||
* поэтому позиционируем аватар по реальной DOM-структуре. 48px = back 40px + gap 8px
|
||||
* в открытом чате, что даёт одинаковую абсолютную X-позицию. */
|
||||
|
||||
|
||||
/* «Контакты»: верхняя аватарка убрана полностью. Пустая левая колонка сохраняет
|
||||
* строгий центр заголовка относительно правого overflow-меню. */
|
||||
.topbar-slot .dm-head-brand {
|
||||
margin-left: 0;
|
||||
min-width: 40px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
.dm-menu-icon,
|
||||
.dm-menu-image-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
min-width: 18px;
|
||||
flex: 0 0 18px;
|
||||
object-fit: contain;
|
||||
color: #65b7ff;
|
||||
filter: drop-shadow(0 0 5px rgba(39, 141, 255, 0.28));
|
||||
}
|
||||
|
||||
|
||||
.dm-user-identity-menu {
|
||||
width: 196px;
|
||||
}
|
||||
|
||||
|
||||
.dm-user-menu-layer {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
|
||||
.dm-actions-col {
|
||||
grid-template-columns: repeat(2, 43px);
|
||||
grid-template-rows: 46px;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
|
||||
/* Loader не имеет права участвовать в растяжении пустого flex-контейнера. */
|
||||
.dm-history-loader {
|
||||
flex: 0 0 34px;
|
||||
align-self: center;
|
||||
width: max-content;
|
||||
max-width: calc(100% - 24px);
|
||||
height: 34px;
|
||||
min-height: 34px;
|
||||
max-height: 34px;
|
||||
top: calc(var(--topbar-height, 64px) + 8px);
|
||||
margin: 0 auto -4px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
|
||||
.dm-history-loader__pill {
|
||||
flex: 0 0 auto;
|
||||
width: max-content;
|
||||
max-width: 100%;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
|
||||
/* «Личные»: широкие, низкие и более плотные плитки. */
|
||||
.dm-list-screen .dm-list {
|
||||
width: calc(100% + 16px);
|
||||
margin-inline: -8px;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-dialog-card {
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
background: rgba(7, 10, 18, 0.42);
|
||||
backdrop-filter: blur(16px);
|
||||
-webkit-backdrop-filter: blur(16px);
|
||||
grid-template-columns: 50px minmax(0, 1fr) auto;
|
||||
min-height: 54px;
|
||||
margin: 0;
|
||||
padding: 5px 6px 5px 4px;
|
||||
gap: 8px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-av,
|
||||
.dm-list-screen .dm-av .avatar,
|
||||
.dm-list-screen .list-item .avatar {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
min-width: 48px;
|
||||
min-height: 48px;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-row-main {
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
|
||||
.dm-list-screen .dm-row-meta-col {
|
||||
display: grid;
|
||||
grid-template-rows: 22px 20px;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
align-self: center;
|
||||
justify-items: end;
|
||||
justify-content: initial;
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 380px) {
|
||||
.dm-list-screen .dm-dialog-card {
|
||||
grid-template-columns: 50px minmax(0, 1fr) auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.dm-head-filter-title {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.dm-head-filter-title::after {
|
||||
content: "⌄";
|
||||
font-size: 13px;
|
||||
line-height: 1;
|
||||
opacity: 0.72;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
@@ -0,0 +1,396 @@
|
||||
/* Connections/network feature styles layered before network-graph.css. */
|
||||
|
||||
.node-dot img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
border-radius: 50%;
|
||||
display: block;
|
||||
opacity: 0;
|
||||
transition: opacity 120ms ease;
|
||||
}
|
||||
|
||||
|
||||
.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-screen {
|
||||
position: relative;
|
||||
margin: -14px -14px -24px;
|
||||
min-height: calc(100dvh - 74px);
|
||||
}
|
||||
|
||||
|
||||
.app-shell--scroll-locked .screen-content .network-screen {
|
||||
margin: 0 0 -24px;
|
||||
}
|
||||
|
||||
|
||||
.network-stage {
|
||||
position: relative;
|
||||
height: calc(100dvh - 74px);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.network-board--full {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
min-height: 0;
|
||||
height: 100%;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.network-legend {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
font-size: 12px;
|
||||
color: #bfd2ff;
|
||||
}
|
||||
|
||||
|
||||
.network-legend span {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
|
||||
.legend-line,
|
||||
.legend-arrow {
|
||||
width: 18px;
|
||||
height: 2px;
|
||||
display: inline-block;
|
||||
border-radius: 2px;
|
||||
background: rgba(120, 179, 255, 0.95);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
.legend-line.relative {
|
||||
background: rgba(255, 159, 94, 0.95);
|
||||
}
|
||||
|
||||
|
||||
.legend-arrow::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: -1px;
|
||||
top: -3px;
|
||||
border-top: 4px solid transparent;
|
||||
border-bottom: 4px solid transparent;
|
||||
border-left: 6px solid rgba(120, 179, 255, 0.95);
|
||||
}
|
||||
|
||||
|
||||
.network-svg {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
||||
.network-link {
|
||||
stroke-width: 2;
|
||||
}
|
||||
|
||||
|
||||
.network-link.is-friend {
|
||||
stroke: rgba(120, 179, 255, 0.88);
|
||||
}
|
||||
|
||||
|
||||
.network-link.is-relative {
|
||||
stroke: rgba(255, 159, 94, 0.9);
|
||||
}
|
||||
|
||||
|
||||
.node-dot {
|
||||
position: relative;
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
margin: 0 auto 4px;
|
||||
border-radius: 50%;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-weight: 700;
|
||||
background: #2b3f66;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
box-shadow: 0 8px 16px rgba(4, 8, 15, 0.35);
|
||||
}
|
||||
|
||||
|
||||
.node-badge-official {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: -8px;
|
||||
transform: translateX(-50%);
|
||||
min-width: 26px;
|
||||
height: 18px;
|
||||
padding: 0 6px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid transparent;
|
||||
background: linear-gradient(180deg, rgba(255, 219, 145, 0.98), rgba(232, 165, 64, 0.98));
|
||||
color: #3a2003;
|
||||
font-size: 10px;
|
||||
line-height: 16px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.3px;
|
||||
text-transform: uppercase;
|
||||
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
|
||||
.node.is-shine .node-dot::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: -14px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle, rgba(130, 235, 255, 0.62) 0%, rgba(130, 235, 255, 0.28) 42%, rgba(130, 235, 255, 0) 76%);
|
||||
filter: blur(2px);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
|
||||
.node.is-shine .node-dot {
|
||||
box-shadow: 0 0 0 2px rgba(143, 231, 255, 0.5), 0 0 28px rgba(102, 220, 255, 0.58), 0 8px 16px rgba(4, 8, 15, 0.35);
|
||||
}
|
||||
|
||||
|
||||
.node.is-friend .node-dot {
|
||||
background: linear-gradient(165deg, #2f4f80, #2a3f62);
|
||||
}
|
||||
|
||||
|
||||
.node.is-relative .node-dot {
|
||||
background: linear-gradient(165deg, #785038, #5f3e2c);
|
||||
border-color: rgba(255, 194, 143, 0.55);
|
||||
}
|
||||
|
||||
|
||||
.node.center .node-dot {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: linear-gradient(130deg, #3a5f8e, #3dc4df);
|
||||
color: #061119;
|
||||
}
|
||||
|
||||
|
||||
.node-label {
|
||||
display: grid;
|
||||
gap: 1px;
|
||||
margin-top: 1px;
|
||||
font-size: 10px;
|
||||
color: #d6e2ff;
|
||||
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
|
||||
line-height: 1.12;
|
||||
}
|
||||
|
||||
|
||||
.node-label.is-login-only .node-name {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.node-name {
|
||||
display: grid;
|
||||
gap: 1px;
|
||||
color: #f2f6ff;
|
||||
}
|
||||
|
||||
|
||||
.node-name-line {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.node-login {
|
||||
display: block;
|
||||
color: #c8dafd;
|
||||
font-size: 10px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.node-relation {
|
||||
display: block;
|
||||
color: #ffd5b3;
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.network-search-candidate {
|
||||
width: 100%;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
|
||||
.network-search-candidate.is-selected {
|
||||
border-color: rgba(132, 209, 255, 0.78);
|
||||
background: rgba(65, 118, 191, 0.24);
|
||||
}
|
||||
|
||||
|
||||
.node:focus-visible .node-dot,
|
||||
.node:hover .node-dot {
|
||||
border-color: rgba(166, 218, 255, 0.92);
|
||||
box-shadow: 0 0 0 3px rgba(77, 160, 255, 0.2), 0 8px 16px rgba(4, 8, 15, 0.35);
|
||||
}
|
||||
|
||||
|
||||
.node-menu {
|
||||
position: absolute;
|
||||
z-index: 3;
|
||||
min-width: 240px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
|
||||
.node-menu-actions {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
/* Граф занимает ровно доступную область между общей шапкой и нижним toolbar. */
|
||||
.app-shell--scroll-locked .screen-content .network-screen {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.app-shell--scroll-locked .screen-content .network-stage {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
|
||||
/* В «Связях» screen-content намеренно без padding, поэтому тот же отступ задаём явно. */
|
||||
.network-stage > .fg-filter-bar.app-top-tabs {
|
||||
position: absolute;
|
||||
top: var(--app-primary-tabs-top-gap);
|
||||
left: 14px;
|
||||
right: 14px;
|
||||
z-index: 11;
|
||||
min-height: var(--app-primary-tab-min-height);
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Одинаковая фактическая высота и типографика самих верхних чипов. */
|
||||
.app-top-tabs .fg-filter-chip {
|
||||
min-height: var(--app-primary-tab-min-height);
|
||||
height: var(--app-primary-tab-min-height);
|
||||
padding: 0 14px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: var(--font-main);
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
/* «Связи»: фильтры остаются ниже интерактивной части общего TopBar. */
|
||||
.app-shell--scroll-locked .network-stage > .fg-filter-bar.app-top-tabs {
|
||||
top: calc(var(--topbar-height, 64px) + var(--app-primary-tabs-top-gap, 14px));
|
||||
}
|
||||
|
||||
|
||||
/* ===== «Связи»: боковой fade, ослабленный в зоне центрального света =====
|
||||
* Радиальная виньетка давала слишком общий эффект. Здесь края затухают независимо:
|
||||
* по X — узкой мягкой полосой от левого/правого края, а по Y сила этой полосы
|
||||
* уменьшается возле источника света графа (50% / 47%) и растёт к углам.
|
||||
* Поэтому центральное свечение визуально доходит почти до боковой кромки, тогда как
|
||||
* верхние/нижние участки графа растворяются по краям раньше. Blur не используется. */
|
||||
.app-shell--scroll-locked .network-stage::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 10;
|
||||
pointer-events: none;
|
||||
background:
|
||||
linear-gradient(
|
||||
to right,
|
||||
rgba(5, 7, 10, 0.96) 0%,
|
||||
rgba(5, 7, 10, 0.72) 4%,
|
||||
rgba(5, 7, 10, 0.42) 8%,
|
||||
rgba(5, 7, 10, 0.18) 12%,
|
||||
rgba(5, 7, 10, 0.06) 15%,
|
||||
rgba(5, 7, 10, 0) 18%
|
||||
) left center / 50% 100% no-repeat,
|
||||
linear-gradient(
|
||||
to left,
|
||||
rgba(5, 7, 10, 0.96) 0%,
|
||||
rgba(5, 7, 10, 0.72) 4%,
|
||||
rgba(5, 7, 10, 0.42) 8%,
|
||||
rgba(5, 7, 10, 0.18) 12%,
|
||||
rgba(5, 7, 10, 0.06) 15%,
|
||||
rgba(5, 7, 10, 0) 18%
|
||||
) right center / 50% 100% no-repeat;
|
||||
-webkit-mask-image: linear-gradient(
|
||||
to bottom,
|
||||
rgba(0, 0, 0, 0.96) 0%,
|
||||
rgba(0, 0, 0, 0.76) 18%,
|
||||
rgba(0, 0, 0, 0.46) 34%,
|
||||
rgba(0, 0, 0, 0.18) 47%,
|
||||
rgba(0, 0, 0, 0.28) 58%,
|
||||
rgba(0, 0, 0, 0.54) 72%,
|
||||
rgba(0, 0, 0, 0.82) 88%,
|
||||
rgba(0, 0, 0, 0.96) 100%
|
||||
);
|
||||
mask-image: linear-gradient(
|
||||
to bottom,
|
||||
rgba(0, 0, 0, 0.96) 0%,
|
||||
rgba(0, 0, 0, 0.76) 18%,
|
||||
rgba(0, 0, 0, 0.46) 34%,
|
||||
rgba(0, 0, 0, 0.18) 47%,
|
||||
rgba(0, 0, 0, 0.28) 58%,
|
||||
rgba(0, 0, 0, 0.54) 72%,
|
||||
rgba(0, 0, 0, 0.82) 88%,
|
||||
rgba(0, 0, 0, 0.96) 100%
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,232 @@
|
||||
/* Notifications feature styles. */
|
||||
|
||||
/* ===== Notifications glass style ===== */
|
||||
.notifications-screen {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
min-height: 100%;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: -12px -12px 0;
|
||||
z-index: -1;
|
||||
pointer-events: none;
|
||||
background:
|
||||
radial-gradient(320px 320px at 86% 12%, rgba(147, 112, 219, 0.2), transparent 72%),
|
||||
radial-gradient(280px 280px at 18% 82%, rgba(147, 112, 219, 0.14), transparent 72%),
|
||||
radial-gradient(260px 260px at 70% 65%, rgba(212, 175, 55, 0.12), transparent 75%),
|
||||
#05070A;
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .tabs {
|
||||
background: rgba(20, 25, 35, 0.5);
|
||||
backdrop-filter: blur(18px);
|
||||
-webkit-backdrop-filter: blur(18px);
|
||||
border: 1px solid transparent;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .tab-btn {
|
||||
color: rgba(255, 255, 255, 0.65);
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .tab-btn.active {
|
||||
background: rgba(255, 180, 0, 0.12);
|
||||
border: 1px solid transparent;
|
||||
color: rgba(255, 200, 50, 0.92);
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .notifications-list > .card {
|
||||
background: rgba(20, 25, 35, 0.55);
|
||||
backdrop-filter: blur(24px);
|
||||
-webkit-backdrop-filter: blur(24px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 0 60px rgba(80, 60, 180, 0.12);
|
||||
}
|
||||
.notifications-screen::before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
|
||||
/* Contacts overflow menu body portal: avoids topbar overflow hit-testing on desktop/Android. */
|
||||
|
||||
|
||||
/* ===== Notifications: social event cards ===== */
|
||||
.notifications-screen .notification-card {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
.notification-identity {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
|
||||
.notification-avatar {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
min-width: 40px;
|
||||
min-height: 40px;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
|
||||
.notification-identity-text {
|
||||
min-width: 0;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
|
||||
.notification-identity-primary {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 6px;
|
||||
min-width: 0;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
|
||||
.notification-person-name {
|
||||
color: rgba(255, 255, 255, 0.96);
|
||||
font-weight: 700;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
|
||||
.notification-login,
|
||||
.notification-time-separator,
|
||||
.notification-time {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.notification-action,
|
||||
.notification-content {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.notification-action {
|
||||
color: rgba(255, 255, 255, 0.66);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
|
||||
.notification-content {
|
||||
color: rgba(255, 255, 255, 0.94);
|
||||
font-size: 15px;
|
||||
line-height: 1.45;
|
||||
white-space: pre-wrap;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
|
||||
.notification-engagement {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 18px;
|
||||
flex-wrap: wrap;
|
||||
padding-top: 2px;
|
||||
color: rgba(255, 255, 255, 0.58);
|
||||
}
|
||||
|
||||
|
||||
.notification-engagement-item {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
min-width: 24px;
|
||||
font-size: 12px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
|
||||
.notification-engagement-icon {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.notifications-screen .notification-card--clickable {
|
||||
cursor: pointer;
|
||||
transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .notification-card--clickable:hover,
|
||||
.notifications-screen .notification-card--clickable:focus-visible {
|
||||
border-color: rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.055);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .notification-card--clickable:active {
|
||||
transform: scale(0.99);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Уведомления: переключатели лент повторяют стеклянные чипы экрана «Связи». */
|
||||
.notifications-screen .notification-feed-tabs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
padding: 8px 12px 4px;
|
||||
margin: 0;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .notification-feed-tabs .notification-tab-btn {
|
||||
min-width: 92px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
/* На обычных экранах отступ создаёт стандартный padding screen-content (14px). */
|
||||
.notifications-screen .notification-feed-tabs.app-top-tabs {
|
||||
min-height: var(--app-primary-tab-min-height);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.notifications-screen .notification-feed-tabs .notification-tab-btn {
|
||||
min-width: 92px;
|
||||
}
|
||||
|
||||
|
||||
/* Уведомления: информационные блоки без рамок. Hover/focus не возвращает
|
||||
* обводку — различение сохраняется фоном и лёгкой реакцией на нажатие. */
|
||||
.notifications-screen .notifications-list > .notification-card,
|
||||
.notifications-screen .notifications-list > .notification-card:hover,
|
||||
.notifications-screen .notifications-list > .notification-card:focus,
|
||||
.notifications-screen .notifications-list > .notification-card:focus-visible,
|
||||
.notifications-screen .notifications-list > .notification-card:active {
|
||||
border: 0;
|
||||
outline: 0;
|
||||
}
|
||||
@@ -0,0 +1,971 @@
|
||||
/* Start/login/registration pre-auth flow styles. */
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
|
||||
.initial-splash {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 10000;
|
||||
display: grid;
|
||||
align-content: center;
|
||||
justify-items: center;
|
||||
gap: clamp(12px, 2.4vh, 20px);
|
||||
padding: 24px;
|
||||
overflow: hidden;
|
||||
background:
|
||||
radial-gradient(circle at 50% 18%, rgba(224, 172, 75, 0.08), transparent 26%),
|
||||
radial-gradient(circle at 50% 67%, rgba(45, 81, 143, 0.06), transparent 38%),
|
||||
linear-gradient(180deg, #040816 0%, #020611 54%, #01040c 100%);
|
||||
font-family: "Manrope", "Inter", "SF Pro Display", system-ui, sans-serif;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: opacity 520ms ease, visibility 520ms ease;
|
||||
}
|
||||
|
||||
|
||||
.initial-splash.is-leaving {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
||||
.initial-splash__logo-wrap {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
width: clamp(156px, 42vw, 208px);
|
||||
aspect-ratio: 1;
|
||||
}
|
||||
|
||||
|
||||
.initial-splash__logo-wrap::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 16%;
|
||||
z-index: -1;
|
||||
border-radius: 50%;
|
||||
background: rgba(214, 155, 56, 0.2);
|
||||
filter: blur(30px);
|
||||
animation: shine-halo-breathe 4.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
|
||||
.initial-splash__logo {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
filter:
|
||||
drop-shadow(0 0 8px rgba(255, 211, 121, 0.72))
|
||||
drop-shadow(0 8px 22px rgba(225, 158, 48, 0.38));
|
||||
animation: shine-logo-breathe 4.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
|
||||
.initial-splash__brand {
|
||||
margin-top: -2px;
|
||||
color: #f4ebdd;
|
||||
font-size: clamp(34px, 7vw, 46px);
|
||||
font-weight: 500;
|
||||
line-height: 1;
|
||||
text-shadow: 0 3px 22px rgba(210, 168, 90, 0.2);
|
||||
}
|
||||
|
||||
|
||||
.auth-screen--welcome {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
align-content: center;
|
||||
justify-items: center;
|
||||
gap: clamp(12px, 2.4vh, 20px);
|
||||
padding-block: 8px;
|
||||
font-family: "Manrope", "Inter", "SF Pro Display", system-ui, sans-serif;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.no-app-chrome:has(> .auth-screen--welcome) {
|
||||
overflow: hidden;
|
||||
overscroll-behavior: none;
|
||||
}
|
||||
|
||||
|
||||
.auth-screen--welcome::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: -14px -14px calc(-24px - env(safe-area-inset-bottom));
|
||||
z-index: -2;
|
||||
background:
|
||||
radial-gradient(circle at 50% 18%, rgba(224, 172, 75, 0.08), transparent 26%),
|
||||
radial-gradient(circle at 50% 67%, rgba(45, 81, 143, 0.06), transparent 38%),
|
||||
linear-gradient(180deg, #040816 0%, #020611 54%, #01040c 100%);
|
||||
}
|
||||
|
||||
|
||||
.auth-screen--welcome::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: -1;
|
||||
pointer-events: none;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.015) 50%, transparent);
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
|
||||
.auth-screen--lower {
|
||||
align-content: start;
|
||||
padding-top: clamp(80px, 18vh, 180px);
|
||||
}
|
||||
|
||||
|
||||
.auth-logo {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
filter:
|
||||
drop-shadow(0 0 8px rgba(255, 211, 121, 0.72))
|
||||
drop-shadow(0 8px 22px rgba(225, 158, 48, 0.38));
|
||||
animation: shine-logo-breathe 4.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
|
||||
.auth-logo-wrap {
|
||||
position: relative;
|
||||
width: clamp(232px, 59vw, 284px);
|
||||
aspect-ratio: 1;
|
||||
}
|
||||
|
||||
|
||||
.auth-logo-wrap::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 16%;
|
||||
z-index: -1;
|
||||
border-radius: 50%;
|
||||
background: rgba(214, 155, 56, 0.2);
|
||||
filter: blur(30px);
|
||||
animation: shine-halo-breathe 4.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
|
||||
.auth-brand {
|
||||
margin: -4px 0 clamp(4px, 1vh, 10px);
|
||||
color: #f4ebdd;
|
||||
font-size: clamp(42px, 9vw, 56px);
|
||||
font-weight: 500;
|
||||
line-height: 1;
|
||||
letter-spacing: 0;
|
||||
text-shadow: 0 3px 22px rgba(210, 168, 90, 0.2);
|
||||
}
|
||||
|
||||
|
||||
.auth-actions,
|
||||
.auth-footer-actions {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
.auth-actions {
|
||||
width: min(100%, 320px);
|
||||
}
|
||||
|
||||
|
||||
.shine-actions {
|
||||
width: min(100%, 390px);
|
||||
max-width: calc(100% - 48px);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
|
||||
.shine-btn {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: 56px;
|
||||
min-height: 48px;
|
||||
padding: 0 24px;
|
||||
border-radius: 18px;
|
||||
font-family: "Manrope", "Inter", "SF Pro Display", system-ui, sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
letter-spacing: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.shine-btn:disabled {
|
||||
opacity: 0.45;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.shine-local-demo-btn {
|
||||
min-height: 32px;
|
||||
padding: 5px 12px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: rgba(162, 180, 215, 0.68);
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.shine-local-demo-btn:hover {
|
||||
color: rgba(216, 226, 247, 0.9);
|
||||
}
|
||||
|
||||
|
||||
@keyframes shine-logo-breathe {
|
||||
0%, 100% {
|
||||
filter:
|
||||
drop-shadow(0 0 8px rgba(255, 211, 121, 0.62))
|
||||
drop-shadow(0 8px 22px rgba(225, 158, 48, 0.34));
|
||||
}
|
||||
50% {
|
||||
filter:
|
||||
drop-shadow(0 0 14px rgba(255, 220, 147, 0.88))
|
||||
drop-shadow(0 10px 28px rgba(225, 158, 48, 0.5));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes shine-halo-breathe {
|
||||
0%, 100% { opacity: 0.66; transform: scale(0.96); }
|
||||
50% { opacity: 1; transform: scale(1.05); }
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.shine-btn {
|
||||
height: 60px;
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-height: 760px) {
|
||||
.initial-splash__logo-wrap {
|
||||
width: 206px;
|
||||
}
|
||||
.initial-splash__brand {
|
||||
font-size: 40px;
|
||||
}
|
||||
.auth-screen--welcome {
|
||||
gap: 10px;
|
||||
}
|
||||
.auth-logo-wrap {
|
||||
width: 206px;
|
||||
}
|
||||
.auth-brand {
|
||||
font-size: 40px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.shine-actions {
|
||||
gap: 10px;
|
||||
}
|
||||
.shine-btn {
|
||||
height: 52px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.initial-splash {
|
||||
transition-duration: 1ms;
|
||||
}
|
||||
.initial-splash__logo,
|
||||
.initial-splash__logo-wrap::before,
|
||||
.auth-logo,
|
||||
.auth-logo-wrap::before,
|
||||
.shine-btn {
|
||||
animation: none;
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.login-actions-wide {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* Shared visual language for every screen before a user enters the app. */
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) {
|
||||
--preauth-ivory: #f4ebdd;
|
||||
--preauth-muted: #b7c4de;
|
||||
--preauth-line: rgba(182, 201, 235, 0.24);
|
||||
--preauth-card: rgba(9, 18, 37, 0.78);
|
||||
padding: 18px 16px calc(28px + env(safe-area-inset-bottom));
|
||||
overflow-x: hidden;
|
||||
background:
|
||||
radial-gradient(circle at 50% 18%, rgba(224, 172, 75, 0.08), transparent 26%),
|
||||
radial-gradient(circle at 50% 67%, rgba(45, 81, 143, 0.06), transparent 38%),
|
||||
linear-gradient(180deg, #040816 0%, #020611 54%, #01040c 100%);
|
||||
color: var(--preauth-ivory);
|
||||
font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) > section.stack {
|
||||
width: min(100%, 420px);
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .topbar {
|
||||
display: grid;
|
||||
grid-template-columns: 42px minmax(0, 1fr) 42px;
|
||||
align-items: center;
|
||||
min-height: 42px;
|
||||
margin-bottom: 18px;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .topbar__title {
|
||||
min-width: 0;
|
||||
margin: 0;
|
||||
color: var(--preauth-ivory);
|
||||
font-size: 20px;
|
||||
font-weight: 650;
|
||||
letter-spacing: 0;
|
||||
line-height: 1.2;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .topbar__left,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .topbar__right {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .topbar__right {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .topbar__left .icon-btn,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .topbar__right .icon-btn {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 40px;
|
||||
min-width: 40px;
|
||||
height: 40px;
|
||||
min-height: 40px;
|
||||
padding: 0;
|
||||
border-radius: 12px;
|
||||
border-color: var(--preauth-line);
|
||||
background: rgba(12, 23, 46, 0.72);
|
||||
color: var(--preauth-ivory);
|
||||
font-size: 22px;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-choice-screen {
|
||||
align-content: start;
|
||||
justify-items: stretch;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-choice-screen .topbar {
|
||||
margin-bottom: clamp(72px, 14vh, 132px);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-choice-screen .topbar__title {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-choice-screen .topbar__left .icon-btn {
|
||||
justify-self: start;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .card,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-panel {
|
||||
border: 1px solid var(--preauth-line);
|
||||
border-radius: 16px;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 24%),
|
||||
var(--preauth-card);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.075),
|
||||
0 16px 34px rgba(0, 0, 0, 0.24);
|
||||
backdrop-filter: blur(16px) saturate(120%);
|
||||
-webkit-backdrop-filter: blur(16px) saturate(120%);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .card {
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .card .card {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-panel {
|
||||
width: min(100%, 420px);
|
||||
padding: 20px;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-panel-title,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-faq-title,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .modal-title {
|
||||
color: var(--preauth-ivory);
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-panel-title {
|
||||
font-size: 24px;
|
||||
font-weight: 650;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .field-label,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .auth-copy,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .status-line,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-word-number {
|
||||
color: var(--preauth-muted);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .input,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .select {
|
||||
min-height: 48px;
|
||||
border-color: rgba(182, 201, 235, 0.22);
|
||||
border-radius: 12px;
|
||||
background: rgba(4, 11, 25, 0.64);
|
||||
color: var(--preauth-ivory);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .input:focus,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .select:focus {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .auth-footer-actions {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
width: min(100%, 420px);
|
||||
margin-inline: auto;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) :is(.primary-btn, .secondary-btn, .ghost-btn) {
|
||||
min-height: 50px;
|
||||
border-radius: 14px;
|
||||
font-family: inherit;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .link-card {
|
||||
min-height: 50px;
|
||||
border-radius: 14px;
|
||||
color: var(--preauth-ivory);
|
||||
font-family: inherit;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .link-card {
|
||||
border-color: var(--preauth-line);
|
||||
background: linear-gradient(180deg, rgba(24, 43, 79, 0.84), rgba(8, 17, 35, 0.86));
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.18);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .link-card:hover {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .preauth-local-demo-btn {
|
||||
min-height: 44px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-toggle,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .session-item {
|
||||
border-color: var(--preauth-line);
|
||||
background: rgba(9, 19, 38, 0.58);
|
||||
color: var(--preauth-ivory);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-progress {
|
||||
border-color: transparent;
|
||||
background: rgba(3, 9, 21, 0.62);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-progress-bar {
|
||||
background: linear-gradient(90deg, #b27c38, #f1cd80);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .camera-shell {
|
||||
min-height: min(48dvh, 360px);
|
||||
border-radius: 16px;
|
||||
border-color: var(--preauth-line);
|
||||
background: #050b18;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .camera-video {
|
||||
min-height: min(48dvh, 360px);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-screen {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-form {
|
||||
gap: 14px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-form .field-label {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-password-single {
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
|
||||
.password-length-hint {
|
||||
margin: 0;
|
||||
color: rgba(183, 196, 222, 0.76);
|
||||
font-size: 12px;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .registration-toggle {
|
||||
min-height: 48px;
|
||||
padding: 10px 12px;
|
||||
border-radius: 12px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
|
||||
.registration-login-status {
|
||||
margin: 0;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
|
||||
.registration-faq-link {
|
||||
justify-self: center;
|
||||
min-height: 30px;
|
||||
padding: 4px 8px;
|
||||
font: inherit;
|
||||
font-size: 13px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@media (max-width: 360px) {
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) {
|
||||
padding-inline: 12px;
|
||||
}
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .card,
|
||||
.screen-content.preauth-flow:not(:has(> .auth-screen--welcome)) .login-panel {
|
||||
padding: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.login-panel {
|
||||
width: min(100%, 360px);
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
|
||||
.login-panel--wide {
|
||||
width: min(100%, 420px);
|
||||
}
|
||||
|
||||
|
||||
.login-panel-title {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
color: var(--text);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
|
||||
.registration-finish-card {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.registration-finish-title {
|
||||
margin: 0;
|
||||
font-size: clamp(1.7rem, 6vw, 2.15rem);
|
||||
line-height: 1.18;
|
||||
text-wrap: balance;
|
||||
}
|
||||
|
||||
|
||||
.registration-finish-text,
|
||||
.registration-finish-tx,
|
||||
.registration-finish-progress {
|
||||
max-width: 100%;
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
|
||||
.registration-finish-tx-link {
|
||||
color: #9fd8ff;
|
||||
text-decoration: underline;
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
|
||||
.registration-finish-tx-link:hover,
|
||||
.registration-finish-tx-link:focus-visible {
|
||||
color: #c9ebff;
|
||||
}
|
||||
|
||||
|
||||
.registration-toggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 12px 14px;
|
||||
border-radius: 14px;
|
||||
border: 1px solid rgba(132, 162, 228, 0.22);
|
||||
background: rgba(20, 31, 52, 0.72);
|
||||
color: #eef3ff;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
|
||||
.registration-toggle input {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
accent-color: #d4af37;
|
||||
}
|
||||
|
||||
|
||||
.registration-words-block[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.registration-words-block {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
.registration-words-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.registration-word-row {
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.registration-word-number {
|
||||
font-size: 12px;
|
||||
color: #b2c2e6;
|
||||
min-width: 18px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
.registration-word-input {
|
||||
min-height: 44px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
|
||||
.registration-faq-card {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
|
||||
.registration-faq-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
.registration-faq-grid .ghost-btn,
|
||||
.registration-faq-grid .secondary-btn {
|
||||
min-height: 44px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 740px) {
|
||||
.registration-words-grid,
|
||||
.registration-faq-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 460px) {
|
||||
.registration-words-grid,
|
||||
.registration-faq-grid {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.registration-faq-hero {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
|
||||
.registration-faq-topic {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
|
||||
.registration-faq-title {
|
||||
margin: 0;
|
||||
font-size: 22px;
|
||||
line-height: 1.2;
|
||||
color: #f6deb0;
|
||||
}
|
||||
|
||||
|
||||
.registration-password-toggle {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
min-width: 44px;
|
||||
min-height: 44px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
|
||||
.registration-progress {
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
border: 1px solid rgba(180, 180, 180, 0.5);
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.registration-progress-bar {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background: rgba(80, 160, 255, 0.9);
|
||||
transition: width 180ms linear;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Новый двухшаговый login flow */
|
||||
.login-remote-server {
|
||||
width: 100%;
|
||||
padding: 14px;
|
||||
border: 1px solid rgba(182, 201, 235, 0.18);
|
||||
border-radius: 14px;
|
||||
background: rgba(4, 11, 25, 0.44);
|
||||
}
|
||||
|
||||
|
||||
.login-server-link {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
overflow-wrap: anywhere;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
.login-device-preparation {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.secret-generation-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 12000;
|
||||
place-items: center;
|
||||
padding: 24px;
|
||||
background: rgba(1, 5, 14, 0.72);
|
||||
backdrop-filter: blur(14px);
|
||||
-webkit-backdrop-filter: blur(14px);
|
||||
}
|
||||
|
||||
|
||||
.secret-generation-card {
|
||||
width: min(100%, 290px);
|
||||
place-items: center;
|
||||
padding: 28px 24px;
|
||||
border: 1px solid rgba(205, 220, 246, 0.18);
|
||||
border-radius: 20px;
|
||||
background: rgba(7, 15, 31, 0.9);
|
||||
box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.secret-generation-spinner {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
border: 3px solid rgba(220, 232, 255, 0.18);
|
||||
border-top-color: transparent;
|
||||
border-radius: 50%;
|
||||
animation: secret-generation-spin 0.82s linear infinite;
|
||||
}
|
||||
|
||||
|
||||
.secret-generation-title {
|
||||
color: var(--preauth-ivory, #f4ebdd);
|
||||
font-size: 18px;
|
||||
font-weight: 650;
|
||||
}
|
||||
|
||||
|
||||
.secret-generation-progress {
|
||||
min-height: 20px;
|
||||
color: var(--preauth-muted, #a8bcdf);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
|
||||
@keyframes secret-generation-spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
|
||||
/* ===== Вход через другое устройство: заголовок внутри панели ===== */
|
||||
.auth-screen--other-device {
|
||||
justify-content: flex-start;
|
||||
padding-top: max(18px, env(safe-area-inset-top));
|
||||
}
|
||||
|
||||
|
||||
.auth-screen--other-device .login-panel {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
|
||||
.login-panel-inline-back {
|
||||
width: 100%;
|
||||
min-height: 42px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
gap: 10px;
|
||||
padding: 0 2px;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
|
||||
.login-panel-inline-back > span:first-child {
|
||||
font-size: 24px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ===== UX refinements 2026-08-29 ===== */
|
||||
/* Start: larger breathing room between brand and actions. */
|
||||
.auth-screen--welcome .auth-brand {
|
||||
margin-bottom: clamp(34px, 6vh, 58px);
|
||||
}
|
||||
|
||||
.auth-screen--welcome .shine-actions {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Entry settings actions use the existing Start button visual language without huge width side effects. */
|
||||
.screen-content.preauth-flow .server-check-btn.shine-btn {
|
||||
width: auto;
|
||||
height: 44px;
|
||||
min-height: 44px;
|
||||
padding-inline: 18px;
|
||||
border-radius: 14px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.screen-content.preauth-flow .auth-footer-actions .shine-btn {
|
||||
width: 100%;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,272 @@
|
||||
/* Settings/language feature styles. */
|
||||
|
||||
.settings-developer-card {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
|
||||
.settings-developer-panel {
|
||||
margin-top: 2px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px solid rgba(132, 157, 206, 0.22);
|
||||
}
|
||||
|
||||
|
||||
.settings-dev-avatar-modal-card {
|
||||
max-width: 520px;
|
||||
}
|
||||
|
||||
|
||||
.settings-dev-avatar-meta {
|
||||
min-height: 18px;
|
||||
font-size: 13px;
|
||||
color: #d9e7ff;
|
||||
}
|
||||
|
||||
|
||||
.settings-dev-avatar-error {
|
||||
min-height: 18px;
|
||||
color: #f0a9b3;
|
||||
}
|
||||
|
||||
|
||||
.settings-dev-avatar-result {
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
|
||||
/* ===== Выбор языка со стартового экрана ===== */
|
||||
.language-screen {
|
||||
width: min(100%, 430px);
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
|
||||
.language-choice-card {
|
||||
padding: 16px;
|
||||
background: rgba(38, 43, 52, 0.74);
|
||||
border: 1px solid rgba(255, 255, 255, 0.10);
|
||||
}
|
||||
|
||||
|
||||
.language-choice-hint {
|
||||
margin: 0 0 4px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.language-choice-grid {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
|
||||
.language-choice-option {
|
||||
min-height: 64px;
|
||||
padding: 0 16px;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr auto;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
border: 1px solid rgba(210, 222, 241, 0.16);
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 255, 255, 0.035);
|
||||
box-shadow: none;
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
text-align: left;
|
||||
transform: none;
|
||||
transition: transform 90ms ease, box-shadow 90ms ease, background-color 90ms ease, filter 120ms ease;
|
||||
}
|
||||
|
||||
.language-choice-option:hover {
|
||||
border-color: rgba(210, 222, 241, 0.16);
|
||||
background: rgba(255, 255, 255, 0.035);
|
||||
box-shadow: none;
|
||||
color: #ffffff;
|
||||
transform: none;
|
||||
filter: brightness(1.12);
|
||||
}
|
||||
|
||||
.language-choice-option:active {
|
||||
color: #ffffff;
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
border: 0;
|
||||
box-shadow:
|
||||
inset 0 3px 8px rgba(0, 0, 0, 0.58),
|
||||
inset 0 -1px 2px rgba(255, 255, 255, 0.08);
|
||||
transform: translateY(1px) scale(0.97);
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
.language-choice-option:focus-visible {
|
||||
border: 1px solid rgba(210, 222, 241, 0.16);
|
||||
background: rgba(255, 255, 255, 0.035);
|
||||
box-shadow: none;
|
||||
color: #ffffff;
|
||||
outline: 2px solid rgba(255, 255, 255, 0.62);
|
||||
outline-offset: 2px;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.language-choice-option.is-selected,
|
||||
.language-choice-option.is-selected:hover,
|
||||
.language-choice-option.is-selected:focus-visible {
|
||||
border: 1px solid rgba(92, 190, 255, 0.62);
|
||||
background: rgba(39, 141, 255, 0.12);
|
||||
box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 20px rgba(39,141,255,.10);
|
||||
}
|
||||
|
||||
.language-choice-option.is-selected:active {
|
||||
border: 1px solid rgba(92, 190, 255, 0.62);
|
||||
background: rgba(39, 141, 255, 0.12);
|
||||
box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 20px rgba(39,141,255,.10);
|
||||
transform: translateY(1px) scale(0.97);
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
|
||||
.language-choice-name {
|
||||
font-size: 17px;
|
||||
font-weight: 650;
|
||||
}
|
||||
|
||||
|
||||
.language-choice-code {
|
||||
color: rgba(255,255,255,.5);
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
letter-spacing: .08em;
|
||||
}
|
||||
|
||||
|
||||
/* ===== Вложенные настройки: тот же рамочный язык действий ===== */
|
||||
.screen-content.settings-bordered-actions :is(.primary-btn, .secondary-btn, .destructive-btn, .ghost-btn, .text-btn, .shine-btn, .settings-bordered-btn, .session-item, .profile-relative-suggest-item, .help-fab) {
|
||||
border: 1px solid rgba(183, 203, 235, 0.28);
|
||||
border-radius: 14px;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(255,255,255,.055), transparent 30%),
|
||||
rgba(8, 19, 42, .58);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgba(255,255,255,.10),
|
||||
0 5px 16px rgba(0,0,0,.18);
|
||||
color: #ffffff;
|
||||
text-shadow: none;
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
padding-inline: 14px;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
|
||||
.screen-content.settings-bordered-actions :is(.primary-btn, .secondary-btn, .destructive-btn, .ghost-btn, .text-btn, .shine-btn, .settings-bordered-btn, .session-item, .profile-relative-suggest-item, .help-fab):hover {
|
||||
border-color: rgba(213, 225, 247, 0.42);
|
||||
background:
|
||||
linear-gradient(180deg, rgba(255,255,255,.075), transparent 30%),
|
||||
rgba(10, 24, 52, .68);
|
||||
color: #ffffff;
|
||||
transform: none;
|
||||
filter: brightness(1.12);
|
||||
}
|
||||
|
||||
|
||||
.screen-content.settings-bordered-actions :is(.primary-btn, .secondary-btn, .destructive-btn, .ghost-btn, .text-btn, .shine-btn, .settings-bordered-btn, .session-item, .profile-relative-suggest-item, .help-fab):active {
|
||||
transform: none;
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
|
||||
/* Language selector: actual two-position switch with explicit confirmation. */
|
||||
.language-segmented-control {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 0;
|
||||
padding: 4px;
|
||||
min-height: 58px;
|
||||
border: 1px solid rgba(190, 210, 238, .18);
|
||||
border-radius: 18px;
|
||||
background: rgba(12, 22, 40, .72);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.language-segmented-thumb {
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
top: 4px;
|
||||
bottom: 4px;
|
||||
left: 4px;
|
||||
width: calc(50% - 4px);
|
||||
border: 1px solid rgba(99, 190, 255, .52);
|
||||
border-radius: 14px;
|
||||
background: linear-gradient(180deg, rgba(76, 166, 255, .28), rgba(30, 105, 204, .20));
|
||||
box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 18px rgba(63,160,255,.14);
|
||||
transition: transform 180ms ease;
|
||||
}
|
||||
|
||||
.language-choice-card[data-language="en"] .language-segmented-thumb { transform: translateX(100%); }
|
||||
|
||||
.language-segment {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
min-height: 50px;
|
||||
padding: 0 12px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
color: #fff;
|
||||
text-shadow: none;
|
||||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
font-size: 16px;
|
||||
font-weight: 650;
|
||||
transition:
|
||||
transform 90ms ease,
|
||||
box-shadow 90ms ease,
|
||||
background-color 90ms ease,
|
||||
filter 120ms ease;
|
||||
}
|
||||
|
||||
.language-segment:hover {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
filter: brightness(1.12);
|
||||
}
|
||||
|
||||
.language-segment:active {
|
||||
color: #fff;
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
border: 0;
|
||||
box-shadow:
|
||||
inset 0 3px 8px rgba(0, 0, 0, 0.58),
|
||||
inset 0 -1px 2px rgba(255, 255, 255, 0.08);
|
||||
transform: translateY(1px) scale(0.97);
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
.language-segment:focus-visible {
|
||||
outline: 2px solid rgba(255, 255, 255, 0.62);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
.language-segment::before,
|
||||
.language-segment::after {
|
||||
background: transparent;
|
||||
background-image: none;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.language-choice-actions {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 10px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.language-choice-actions .shine-btn { height: 50px; }
|
||||
Reference in New Issue
Block a user