sw-fe/src/styles/topbar.css.bak.1766214715

252 lines
6.4 KiB
Plaintext

.topbar{
position: sticky; top:0; z-index:100;
width:100%;
padding: .55rem .9rem;
display:flex; align-items:center; justify-content:space-between; gap:.6rem;
background: linear-gradient(135deg,#071225 0%,#0b2b5f 38%,#0e65c0 72%,#27a8ff 100%);
border-bottom-left-radius:18px; border-bottom-right-radius:18px;
box-shadow: 0 10px 24px rgba(0,0,0,.55), 0 0 18px rgba(56,189,248,.45);
overflow:hidden;
}
.logo-circle{
width:40px; height:40px; border-radius:50%; flex-shrink:0;
background-image:url("/icons/logo-master.png");
background-size:cover; background-position:center; background-repeat:no-repeat;
box-shadow: 0 0 10px rgba(37,99,235,.8), 0 0 18px rgba(56,189,248,.6);
color:transparent;
}
.title-block{ display:flex; flex-direction:column; line-height:1.05; min-width:0; }
.main-title{ font-size:1.02rem; font-weight:800; letter-spacing:.04em; color:#f9fafb; }
.sub-title{ font-size:.74rem; color:#dbeafe; opacity:.95; }
.topbar-right{ display:flex; align-items:center; gap:.5rem; margin-left:auto; flex-wrap:wrap; }
.theme-switch{ display:flex; gap:.28rem; }
.theme-dot{
width:22px; height:22px; border-radius:999px;
border:1px solid rgba(148,163,184,.85);
background:rgba(15,23,42,.9); color:#e5e7eb; font-size:.65rem;
display:flex; align-items:center; justify-content:center; padding:0; cursor:pointer;
box-shadow:0 0 6px rgba(15,23,42,.9); transition:transform 0.36s ease;
}
.theme-dot:hover{ transform:scale(1.06); }
.theme-dot-active{ border-color:#facc15; box-shadow:0 0 10px rgba(250,204,21,.9),0 0 14px rgba(56,189,248,.55); }
.btn-primary, .btn-secondary{
padding:.32rem .85rem; font-size:.78rem; border-radius:999px; font-weight:700; cursor:pointer;
white-space:nowrap; line-height:1;
}
.btn-primary{
border:1px solid #22c55e;
background:radial-gradient(circle at 30% 30%,#22c55e,#16a34a);
color:#f9fafb;
box-shadow:0 4px 10px rgba(22,163,74,.5),0 0 8px rgba(22,163,74,.6);
}
.btn-primary:disabled{ opacity:.6; cursor:default; }
.btn-secondary{
border:1px solid #bfdbfe;
background:rgba(15,23,42,.25);
color:#e0f2fe;
box-shadow:0 3px 10px rgba(15,23,42,.6);
}
.btn-secondary:hover{ background:rgba(15,23,42,.45); }
@media (max-width:640px){
.topbar{ padding:.5rem .7rem; border-bottom-left-radius:16px; border-bottom-right-radius:16px; }
.main-title{ font-size:1rem; }
.sub-title{ font-size:.7rem; }
.topbar-right{ width:100%; justify-content:flex-start; gap:.45rem; }
}
/* SW_AUTH_UI:BEGIN */
.auth-strip{
margin-top: 6px;
display:flex;
align-items:center;
gap: .45rem;
flex-wrap: wrap;
}
.auth-pill{
display:inline-flex;
align-items:center;
gap: .35rem;
padding: .18rem .55rem;
border-radius: 999px;
font-size: .70rem;
font-weight: 900;
letter-spacing: .02em;
border: 1px solid rgba(148,163,184,.55);
background: rgba(2,6,23,.25);
color: #e5e7eb;
}
.auth-pill i{ font-size: .85rem; opacity:.95; }
.auth-pill--ok{
border-color: rgba(34,197,94,.65);
background: rgba(34,197,94,.16);
}
.auth-pill--loading{
border-color: rgba(56,189,248,.65);
background: rgba(56,189,248,.14);
}
.auth-pill--anon{
border-color: rgba(148,163,184,.55);
background: rgba(2,6,23,.20);
}
.auth-banner{
margin-top: 6px;
padding: 6px 10px;
border-radius: 14px;
font-size: .72rem;
font-weight: 800;
display:flex;
gap: 8px;
align-items:center;
flex-wrap:wrap;
}
.auth-banner--error{
background: rgba(248,113,113,0.14);
border: 1px solid rgba(248,113,113,0.55);
color: #ffe4e6;
}
.auth-banner--info{
background: rgba(56,189,248,0.14);
border: 1px solid rgba(56,189,248,0.55);
color: #e0f2fe;
}
.auth-banner--success{
background: rgba(34,197,94,0.14);
border: 1px solid rgba(34,197,94,0.55);
color: #d1fae5;
}
.user-chip{
display:inline-flex;
align-items:center;
gap: .45rem;
padding: .22rem .55rem;
border-radius: 999px;
background: rgba(2,6,23,.25);
border: 1px solid rgba(148,163,184,.55);
}
.user-avatar{
width: 26px;
height: 26px;
border-radius: 999px;
display:flex;
align-items:center;
justify-content:center;
background: rgba(56,189,248,0.18);
border: 1px solid rgba(56,189,248,0.35);
}
.user-avatar i{ font-size: 14px; }
.user-name{
font-size: .80rem;
font-weight: 950;
color: #f9fafb;
max-width: 220px;
overflow:hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Light theme readability */
body[data-theme="light"] .auth-pill{
background: rgba(255,255,255,0.82);
border-color: rgba(148,163,184,0.85);
color: #0b1220;
}
body[data-theme="light"] .user-chip{
background: rgba(255,255,255,0.82);
border-color: rgba(148,163,184,0.85);
}
body[data-theme="light"] .user-name{ color:#0b1220; }
body[data-theme="light"] .user-avatar{
background: rgba(30,107,255,0.12);
border-color: rgba(30,107,255,0.35);
color:#0b1220;
}
/* SW_AUTH_UI:END */
/* SW_AUTH_UI2:BEGIN */
.sw-notice{
margin: 10px 14px 0 14px;
padding: 10px 12px;
border-radius: 16px;
font-size: .78rem;
font-weight: 800;
line-height: 1.2;
border: 1px solid rgba(148,163,184,.35);
background: rgba(2,6,23,.22);
color: #e5e7eb;
}
.sw-notice--error{
background: rgba(248,113,113,0.14);
border-color: rgba(248,113,113,0.55);
color: #ffe4e6;
}
.sw-notice--info{
background: rgba(56,189,248,0.14);
border-color: rgba(56,189,248,0.55);
color: #e0f2fe;
}
.sw-notice--success{
background: rgba(34,197,94,0.14);
border-color: rgba(34,197,94,0.55);
color: #d1fae5;
}
.sw-notice--warn{
background: rgba(251,191,36,0.12);
border-color: rgba(251,191,36,0.40);
color: #fffbeb;
}
/* single user chip (no duplicates) */
.user-chip{
display:inline-flex;
align-items:center;
gap: .45rem;
padding: .22rem .55rem;
border-radius: 999px;
background: rgba(2,6,23,.25);
border: 1px solid rgba(148,163,184,.55);
}
.user-avatar{
width: 26px;
height: 26px;
border-radius: 999px;
display:flex;
align-items:center;
justify-content:center;
background: rgba(56,189,248,0.18);
border: 1px solid rgba(56,189,248,0.35);
}
.user-avatar i{ font-size: 14px; }
.user-name{
font-size: .82rem;
font-weight: 950;
color: #f9fafb;
max-width: 180px;
overflow:hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.user-badge{
display:inline-flex;
align-items:center;
gap: .35rem;
padding: .10rem .45rem;
border-radius: 999px;
font-size: .70rem;
font-weight: 950;
border: 1px solid rgba(34,197,94,.55);
background: rgba(34,197,94,.14);
color: #d1fae5;
}
/* SW_AUTH_UI2:END */