6236 lines
110 KiB
CSS
6236 lines
110 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');
|
|
|
|
:root {
|
|
color-scheme: light;
|
|
--ink: #0f1117;
|
|
--ink-muted: #3f4656;
|
|
--paper: #f0f4ff;
|
|
--paper-strong: #ffffff;
|
|
--accent: #ff6b2b;
|
|
--accent-2: #1c6bff;
|
|
--accent-3: #11d6c6;
|
|
--border: rgba(15, 17, 23, 0.12);
|
|
--shadow: rgba(15, 17, 23, 0.18);
|
|
--glow: 0 0 18px rgba(28, 107, 255, 0.25);
|
|
--input-bg: rgba(15, 17, 23, 0.04);
|
|
--input-ink: var(--ink);
|
|
--error-bg: rgba(255, 107, 43, 0.12);
|
|
--error-ink: #6b2c17;
|
|
}
|
|
|
|
[data-theme='dark'] {
|
|
color-scheme: dark;
|
|
--ink: #e9ecf5;
|
|
--ink-muted: #9aa3b8;
|
|
--paper: #0b0f18;
|
|
--paper-strong: #111827;
|
|
--accent: #ff6b2b;
|
|
--accent-2: #3b82f6;
|
|
--accent-3: #22f6e3;
|
|
--border: rgba(255, 255, 255, 0.08);
|
|
--shadow: rgba(0, 0, 0, 0.6);
|
|
--glow: 0 0 22px rgba(59, 130, 246, 0.45);
|
|
--input-bg: rgba(255, 255, 255, 0.08);
|
|
--input-ink: var(--ink);
|
|
--error-bg: rgba(255, 107, 43, 0.18);
|
|
--error-ink: #ffd3bf;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: "Space Grotesk", "Segoe UI", sans-serif;
|
|
background: radial-gradient(circle at top, rgba(17, 33, 74, 0.9) 0%, rgba(8, 12, 22, 1) 55%, #05070d 100%);
|
|
color: var(--ink);
|
|
min-height: 100vh;
|
|
transition: background 0.4s ease, color 0.4s ease;
|
|
}
|
|
|
|
[data-theme='light'] body {
|
|
background: radial-gradient(circle at top, #f7faff 0%, #eef2ff 45%, #e3edff 100%);
|
|
}
|
|
|
|
.page {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 40px 24px 80px;
|
|
display: grid;
|
|
gap: 32px;
|
|
}
|
|
|
|
.header {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
grid-template-rows: auto auto;
|
|
align-items: center;
|
|
gap: 12px 16px;
|
|
}
|
|
|
|
.header-left {
|
|
grid-column: 1 / 2;
|
|
grid-row: 1 / 2;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
}
|
|
|
|
.brand-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.brand-link:hover .brand {
|
|
color: var(--ink);
|
|
}
|
|
|
|
.brand-stack {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.header-right {
|
|
grid-column: 2 / 3;
|
|
grid-row: 1 / 2;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 12px;
|
|
}
|
|
|
|
.header-nav {
|
|
grid-column: 1 / -1;
|
|
grid-row: 2 / 3;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.brand {
|
|
font-size: 32px;
|
|
letter-spacing: 0.02em;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.tagline {
|
|
color: var(--ink-muted);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.header-actions {
|
|
display: flex;
|
|
gap: 16px;
|
|
font-size: 14px;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
}
|
|
|
|
.header-actions a {
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid var(--border);
|
|
backdrop-filter: blur(8px);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.header-actions .header-link {
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid var(--border);
|
|
backdrop-filter: blur(8px);
|
|
font-size: 14px;
|
|
box-shadow: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.header-actions .header-cta {
|
|
background: linear-gradient(120deg, rgba(255, 107, 43, 0.95), rgba(255, 168, 75, 0.95));
|
|
color: #151515;
|
|
border: 1px solid rgba(255, 140, 60, 0.7);
|
|
box-shadow: 0 12px 24px rgba(255, 107, 43, 0.35);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.header-actions .header-cta--left {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.signed-in-menu {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.avatar-button {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 50%;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
background: linear-gradient(130deg, rgba(28, 107, 255, 0.35), rgba(17, 214, 198, 0.25));
|
|
color: var(--ink);
|
|
font-weight: 700;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 10px 20px rgba(28, 107, 255, 0.25);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.signed-in-dropdown {
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
right: 0;
|
|
width: min(260px, 90vw);
|
|
background: rgba(14, 20, 32, 0.96);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 8px;
|
|
box-shadow: 0 12px 26px var(--shadow);
|
|
z-index: 20;
|
|
}
|
|
|
|
.signed-in-header {
|
|
font-size: 11px;
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
color: var(--ink-muted);
|
|
padding: 8px 10px 6px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.signed-in-actions {
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 8px 4px 4px;
|
|
}
|
|
|
|
.signed-in-actions a,
|
|
.signed-in-signout {
|
|
display: block;
|
|
padding: 8px 12px;
|
|
border-radius: 10px;
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
text-align: left;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.signed-in-signout {
|
|
cursor: pointer;
|
|
font: inherit;
|
|
}
|
|
|
|
.signed-in-actions a:hover,
|
|
.signed-in-signout:hover {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.signed-in-build {
|
|
margin-top: 6px;
|
|
padding: 6px 10px 8px;
|
|
font-size: 11px;
|
|
color: var(--ink-muted);
|
|
text-align: left;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.theme-toggle {
|
|
width: 40px;
|
|
height: 40px;
|
|
padding: 0;
|
|
border-radius: 50%;
|
|
background: linear-gradient(120deg, rgba(28, 107, 255, 0.2), rgba(34, 246, 227, 0.2));
|
|
border: 1px solid var(--border);
|
|
color: var(--ink);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: var(--glow);
|
|
}
|
|
|
|
.theme-toggle svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
fill: none;
|
|
stroke: currentColor;
|
|
stroke-width: 1.6;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
.card {
|
|
background: var(--paper-strong);
|
|
border-radius: 24px;
|
|
padding: 32px;
|
|
box-shadow: 0 18px 40px var(--shadow);
|
|
display: grid;
|
|
gap: 24px;
|
|
animation: rise 0.5s ease-out;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.layout-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
|
|
gap: 28px;
|
|
align-items: start;
|
|
}
|
|
|
|
.side-panel {
|
|
position: sticky;
|
|
top: 24px;
|
|
align-self: start;
|
|
}
|
|
|
|
.find-panel {
|
|
display: grid;
|
|
gap: 20px;
|
|
}
|
|
|
|
.find-header {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.find-controls {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
.centerpiece {
|
|
padding: 8px 0 4px;
|
|
}
|
|
|
|
.centerpiece .recent-grid button {
|
|
padding: 14px 18px;
|
|
border-radius: 18px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.lede {
|
|
font-size: 18px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.search {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 14px;
|
|
}
|
|
|
|
.search-row button {
|
|
align-self: stretch;
|
|
}
|
|
|
|
input {
|
|
padding: 14px 16px;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
font-size: 16px;
|
|
background: var(--input-bg);
|
|
color: var(--input-ink);
|
|
}
|
|
|
|
input::placeholder {
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
select {
|
|
padding: 14px 16px;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
font-size: 16px;
|
|
background: var(--input-bg);
|
|
color: var(--input-ink);
|
|
}
|
|
|
|
select option {
|
|
background: var(--paper-strong);
|
|
color: var(--ink);
|
|
}
|
|
|
|
textarea {
|
|
padding: 14px 16px;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
font-size: 16px;
|
|
background: var(--input-bg);
|
|
color: var(--input-ink);
|
|
font-family: inherit;
|
|
resize: vertical;
|
|
}
|
|
|
|
button {
|
|
padding: 12px 18px;
|
|
border-radius: 999px;
|
|
border: none;
|
|
background: linear-gradient(120deg, var(--accent), var(--accent-2));
|
|
color: #fff;
|
|
font-size: 15px;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
box-shadow: var(--glow);
|
|
text-align: center;
|
|
}
|
|
|
|
button span {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
opacity: 0.8;
|
|
text-align: center;
|
|
}
|
|
|
|
.filters {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.filters-compact {
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
align-items: start;
|
|
padding: 12px;
|
|
border-radius: 18px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.filter {
|
|
display: grid;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.pill-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.pill-group button {
|
|
background: rgba(28, 107, 255, 0.15);
|
|
color: var(--ink);
|
|
padding: 8px 14px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.recent-grid {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.recent-grid button {
|
|
justify-content: center;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.recent-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
.recent-poster {
|
|
width: 46px;
|
|
height: 68px;
|
|
border-radius: 10px;
|
|
object-fit: cover;
|
|
border: 1px solid var(--border);
|
|
box-shadow: 0 8px 18px var(--shadow);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.recent-info {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.recent-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.recent-meta {
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.request-header {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
|
|
.request-header-main {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.request-poster {
|
|
width: 90px;
|
|
height: 135px;
|
|
border-radius: 14px;
|
|
object-fit: cover;
|
|
border: 1px solid var(--border);
|
|
box-shadow: 0 12px 26px var(--shadow);
|
|
}
|
|
|
|
.brand-preview {
|
|
margin-top: 12px;
|
|
max-width: 300px;
|
|
max-height: 300px;
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.05);
|
|
box-shadow: 0 10px 24px var(--shadow);
|
|
}
|
|
|
|
.brand-logo {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.brand-logo--header {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 0;
|
|
border: none;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.brand-logo--login {
|
|
width: 180px;
|
|
height: 180px;
|
|
margin: 40px auto 16px;
|
|
border-radius: 0;
|
|
border: none;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.meta {
|
|
color: var(--ink-muted);
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.profile-grid {
|
|
display: grid;
|
|
gap: 20px;
|
|
}
|
|
|
|
.profile-section {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.stat-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.stat-card {
|
|
padding: 14px;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.05);
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.stat-value--small {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.connection-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.connection-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 12px 14px;
|
|
border-radius: 14px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.connection-label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.connection-count {
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.state {
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 12px 16px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.status-box {
|
|
background: rgba(11, 15, 24, 0.7);
|
|
border-radius: 20px;
|
|
padding: 20px;
|
|
display: grid;
|
|
gap: 16px;
|
|
border: 1px solid var(--border);
|
|
box-shadow: var(--glow);
|
|
}
|
|
|
|
.status-box h2 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.status-box p {
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.status-text {
|
|
font-size: 20px;
|
|
color: var(--ink);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.timeline {
|
|
display: grid;
|
|
gap: 20px;
|
|
position: relative;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.timeline::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: linear-gradient(180deg, var(--accent-2), transparent);
|
|
}
|
|
|
|
.timeline-item {
|
|
display: grid;
|
|
grid-template-columns: 20px 1fr;
|
|
gap: 12px;
|
|
}
|
|
|
|
.timeline-marker {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
background: var(--accent-3);
|
|
box-shadow: 0 0 10px rgba(34, 246, 227, 0.6);
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.timeline-card {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border-radius: 16px;
|
|
padding: 16px;
|
|
display: grid;
|
|
gap: 12px;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.timeline-card pre {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
padding: 12px;
|
|
border-radius: 12px;
|
|
overflow-x: auto;
|
|
font-size: 12px;
|
|
font-family: "JetBrains Mono", "Consolas", monospace;
|
|
}
|
|
|
|
.timeline-sublist {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.timeline-sublist ul {
|
|
list-style: none;
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.timeline-sublist li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
font-size: 14px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.timeline-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.summary-card {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-radius: 18px;
|
|
padding: 18px;
|
|
display: grid;
|
|
gap: 10px;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.user-card {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
align-items: start;
|
|
gap: 16px;
|
|
}
|
|
|
|
.user-card strong {
|
|
display: block;
|
|
font-size: 16px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.user-meta {
|
|
display: grid;
|
|
gap: 6px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.user-meta .meta {
|
|
display: block;
|
|
}
|
|
|
|
.user-actions {
|
|
display: grid;
|
|
gap: 8px;
|
|
justify-items: end;
|
|
}
|
|
|
|
.toggle {
|
|
display: inline-flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.toggle input[type='checkbox'] {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.summary-card ul {
|
|
list-style: disc;
|
|
padding-left: 18px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.summary-card p {
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.summary-card .helper {
|
|
font-size: 13px;
|
|
line-height: 1.4;
|
|
color: #6a5b4c;
|
|
}
|
|
|
|
.details-toggle {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.details-toggle button {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.actions {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.action-grid {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.action-message {
|
|
padding: 10px 14px;
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink-muted);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.action-grid button {
|
|
background: linear-gradient(120deg, rgba(59, 130, 246, 0.8), rgba(34, 246, 227, 0.7));
|
|
}
|
|
|
|
.history {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.history-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.history-grid ul {
|
|
list-style: none;
|
|
display: grid;
|
|
gap: 8px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.history-grid li {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.history-grid li span:last-child {
|
|
font-size: 13px;
|
|
color: #6a5b4c;
|
|
}
|
|
|
|
.modal-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(27, 28, 30, 0.45);
|
|
display: grid;
|
|
place-items: center;
|
|
z-index: 40;
|
|
padding: 24px;
|
|
}
|
|
|
|
.modal-card {
|
|
background: var(--paper-strong);
|
|
border-radius: 20px;
|
|
padding: 24px;
|
|
box-shadow: 0 20px 45px var(--shadow);
|
|
display: grid;
|
|
gap: 12px;
|
|
max-width: 420px;
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-card button {
|
|
justify-self: start;
|
|
background: linear-gradient(120deg, var(--accent), var(--accent-2));
|
|
}
|
|
|
|
.auth-card {
|
|
max-width: 520px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.auth-form {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
.auth-actions {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.ghost-button {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink);
|
|
border: 1px solid var(--border);
|
|
box-shadow: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
padding: 12px 18px;
|
|
border-radius: 999px;
|
|
font-size: 15px;
|
|
text-decoration: none;
|
|
text-align: center;
|
|
}
|
|
|
|
.auth-form label {
|
|
display: grid;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
color: var(--ink-muted);
|
|
text-align: center;
|
|
}
|
|
|
|
.error-banner {
|
|
padding: 10px 14px;
|
|
border-radius: 12px;
|
|
background: var(--error-bg);
|
|
color: var(--error-ink);
|
|
font-size: 14px;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.admin-card {
|
|
gap: 32px;
|
|
}
|
|
|
|
.admin-shell {
|
|
display: grid;
|
|
grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
|
|
gap: 24px;
|
|
align-items: start;
|
|
}
|
|
|
|
.admin-shell-nav {
|
|
position: sticky;
|
|
top: 24px;
|
|
}
|
|
|
|
.admin-sidebar {
|
|
display: grid;
|
|
gap: 16px;
|
|
padding: 16px;
|
|
border-radius: 18px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.admin-sidebar-title {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.12em;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.admin-nav-group {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.admin-nav-title {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.admin-nav-links {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.admin-nav-links a {
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
padding: 8px 12px;
|
|
border-radius: 12px;
|
|
border: 1px solid transparent;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.admin-nav-links a.is-active {
|
|
border-color: rgba(59, 130, 246, 0.4);
|
|
background: rgba(59, 130, 246, 0.18);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.admin-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.admin-form {
|
|
display: grid;
|
|
gap: 24px;
|
|
}
|
|
|
|
.admin-section {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
/* Header account menu layering fix */
|
|
.header {
|
|
position: relative;
|
|
overflow: visible;
|
|
}
|
|
|
|
.header-right {
|
|
position: relative;
|
|
z-index: 40;
|
|
}
|
|
|
|
.signed-in-menu {
|
|
z-index: 50;
|
|
}
|
|
|
|
.signed-in-dropdown {
|
|
z-index: 2000;
|
|
}
|
|
|
|
.header-nav {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.admin-toolbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.admin-toolbar-info {
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.admin-toolbar-actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.admin-select {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.admin-table {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.admin-table-head {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
gap: 12px;
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.admin-table-row {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
gap: 12px;
|
|
align-items: center;
|
|
text-align: left;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border-radius: 16px;
|
|
padding: 12px;
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.admin-table-row:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 12px 24px rgba(15, 20, 45, 0.18);
|
|
}
|
|
|
|
.admin-pagination {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.admin-pagination button {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.admin-pagination span {
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.section-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.section-subtitle {
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
margin-top: -6px;
|
|
}
|
|
|
|
.sync-actions {
|
|
display: inline-flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.sync-actions-block {
|
|
display: grid;
|
|
gap: 6px;
|
|
justify-items: end;
|
|
text-align: right;
|
|
}
|
|
|
|
.sync-note {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.section-header button {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.admin-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.admin-grid label {
|
|
display: grid;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
color: var(--ink-muted);
|
|
text-align: center;
|
|
}
|
|
|
|
.admin-grid label[data-helper]::after {
|
|
content: attr(data-helper);
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.user-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.user-grid-card {
|
|
display: grid;
|
|
gap: 14px;
|
|
padding: 16px;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
transition: border-color 0.2s ease, transform 0.2s ease;
|
|
}
|
|
|
|
.user-grid-card:hover {
|
|
border-color: rgba(59, 130, 246, 0.5);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.user-grid-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.user-grid-meta {
|
|
display: block;
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.user-grid-pill {
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
border: 1px solid rgba(59, 130, 246, 0.4);
|
|
color: var(--ink);
|
|
background: rgba(59, 130, 246, 0.2);
|
|
}
|
|
|
|
.user-grid-pill.is-blocked {
|
|
border-color: rgba(255, 82, 82, 0.5);
|
|
background: rgba(255, 82, 82, 0.2);
|
|
}
|
|
|
|
.user-grid-pill.is-disabled {
|
|
border-color: rgba(255, 200, 87, 0.45);
|
|
background: rgba(255, 200, 87, 0.16);
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.user-grid-subpills {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.user-grid-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.user-grid-stats .label {
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
display: block;
|
|
}
|
|
|
|
.user-grid-stats .value {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.user-grid-footer {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.user-detail-card {
|
|
display: grid;
|
|
gap: 16px;
|
|
padding: 18px;
|
|
border-radius: 18px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.user-detail-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.user-detail-meta {
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.user-bulk-toolbar {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 14px;
|
|
align-items: center;
|
|
padding: 14px 16px;
|
|
border-radius: 14px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.user-bulk-summary {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.user-bulk-summary strong {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.user-bulk-summary span {
|
|
font-size: 13px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.user-bulk-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.user-detail-layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.6fr) minmax(260px, 360px);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
|
|
.user-detail-identity {
|
|
display: grid;
|
|
gap: 12px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.user-detail-title-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.user-detail-name {
|
|
font-size: 24px;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.user-detail-meta-pills {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.user-detail-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 30px;
|
|
padding: 6px 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.user-detail-controls {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 14px;
|
|
border-radius: 14px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.user-detail-controls-title {
|
|
font-size: 12px;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.user-detail-actions {
|
|
display: grid;
|
|
gap: 10px;
|
|
justify-items: start;
|
|
}
|
|
|
|
.user-detail-actions .ghost-button {
|
|
width: 100%;
|
|
}
|
|
|
|
.user-detail-helper {
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.user-detail-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.user-detail-stat {
|
|
display: grid;
|
|
gap: 4px;
|
|
padding: 10px 12px;
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
.user-detail-stat--wide {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.user-detail-grid .label {
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
display: block;
|
|
}
|
|
|
|
.user-detail-grid .value {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.user-bulk-toolbar {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.user-bulk-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.user-detail-layout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.user-detail-actions .ghost-button {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
.label-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.status-banner {
|
|
padding: 12px 16px;
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink);
|
|
font-size: 14px;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.site-banner {
|
|
padding: 12px 16px;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.site-banner--info {
|
|
background: rgba(59, 130, 246, 0.18);
|
|
border-color: rgba(59, 130, 246, 0.4);
|
|
}
|
|
|
|
.site-banner--warning {
|
|
background: rgba(255, 200, 87, 0.22);
|
|
border-color: rgba(255, 200, 87, 0.5);
|
|
}
|
|
|
|
.site-banner--error {
|
|
background: rgba(255, 59, 48, 0.2);
|
|
border-color: rgba(255, 59, 48, 0.4);
|
|
}
|
|
|
|
.site-banner--maintenance {
|
|
background: rgba(255, 107, 43, 0.18);
|
|
border-color: rgba(255, 107, 43, 0.4);
|
|
}
|
|
|
|
.site-version {
|
|
position: fixed;
|
|
left: 16px;
|
|
bottom: 12px;
|
|
font-size: 12px;
|
|
letter-spacing: 0.04em;
|
|
color: var(--ink-muted);
|
|
padding: 6px 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
z-index: 30;
|
|
}
|
|
|
|
.recent-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.recent-filter {
|
|
display: inline-flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.recent-filter select {
|
|
padding: 8px 12px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.admin-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.settings-section-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
align-items: end;
|
|
}
|
|
|
|
.settings-inline-field {
|
|
display: grid;
|
|
gap: 6px;
|
|
min-width: min(100%, 320px);
|
|
flex: 1 1 320px;
|
|
}
|
|
|
|
.settings-inline-field span {
|
|
color: var(--ink-muted);
|
|
font-size: 12px;
|
|
letter-spacing: 0.05em;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.settings-nav {
|
|
display: flex;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
padding: 12px 16px;
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.settings-group {
|
|
display: grid;
|
|
gap: 6px;
|
|
min-width: 180px;
|
|
}
|
|
|
|
.settings-title {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.settings-links {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.settings-links a {
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.log-actions {
|
|
display: inline-flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.log-viewer {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
max-height: 320px;
|
|
overflow: auto;
|
|
font-size: 12px;
|
|
line-height: 1.4;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.cache-table {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.cache-row {
|
|
display: grid;
|
|
grid-template-columns: 90px minmax(0, 1.6fr) 120px 90px 180px;
|
|
gap: 12px;
|
|
padding: 10px 12px;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
font-size: 13px;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.cache-row span {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.cache-head {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 11px;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.maintenance-grid {
|
|
display: grid;
|
|
gap: 12px;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
}
|
|
|
|
.maintenance-layout {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.maintenance-tools-panel {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.maintenance-panel-copy {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.maintenance-action-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.maintenance-action-card {
|
|
display: grid;
|
|
gap: 12px;
|
|
align-content: start;
|
|
padding: 14px;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.035);
|
|
}
|
|
|
|
.maintenance-action-card button {
|
|
justify-self: start;
|
|
}
|
|
|
|
.maintenance-action-copy {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.maintenance-action-copy h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.maintenance-action-copy p {
|
|
color: var(--ink-muted);
|
|
font-size: 14px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.maintenance-action-card-danger {
|
|
border-color: rgba(255, 107, 43, 0.24);
|
|
background: rgba(255, 107, 43, 0.05);
|
|
}
|
|
|
|
.schedule-grid {
|
|
display: grid;
|
|
gap: 12px;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
}
|
|
|
|
.schedule-card {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-radius: 16px;
|
|
padding: 16px;
|
|
border: 1px solid var(--border);
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.schedule-card h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.schedule-card p {
|
|
color: var(--ink-muted);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.danger-button {
|
|
background: linear-gradient(120deg, #ff3b30, #ff8a3d);
|
|
color: #fff;
|
|
}
|
|
|
|
.sync-progress {
|
|
display: grid;
|
|
gap: 8px;
|
|
padding: 12px 16px;
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.sync-meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
font-size: 13px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.progress {
|
|
position: relative;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
overflow: hidden;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.progress-fill {
|
|
height: 100%;
|
|
background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.progress-indeterminate .progress-fill {
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
background: linear-gradient(
|
|
90deg,
|
|
rgba(255, 255, 255, 0),
|
|
var(--accent-2),
|
|
var(--accent-3),
|
|
rgba(255, 255, 255, 0)
|
|
);
|
|
background-size: 200% 100%;
|
|
animation: progress-indeterminate 1.6s ease-in-out infinite;
|
|
}
|
|
|
|
.progress-complete .progress-fill {
|
|
animation: none;
|
|
}
|
|
|
|
.system-status {
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
padding: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.system-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.system-header h2 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.system-pill {
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
letter-spacing: 0.02em;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid var(--border);
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.system-pill-up {
|
|
color: #0b3d2e;
|
|
background: rgba(61, 220, 151, 0.2);
|
|
border-color: rgba(61, 220, 151, 0.4);
|
|
}
|
|
|
|
[data-theme='dark'] .system-pill-up {
|
|
color: #e9fff6;
|
|
background: rgba(61, 220, 151, 0.28);
|
|
border-color: rgba(61, 220, 151, 0.5);
|
|
}
|
|
|
|
.system-pill-down {
|
|
color: #4a0c0c;
|
|
background: rgba(255, 59, 48, 0.2);
|
|
border-color: rgba(255, 59, 48, 0.4);
|
|
}
|
|
|
|
.system-pill-degraded {
|
|
color: #3e2b00;
|
|
background: rgba(255, 200, 87, 0.22);
|
|
border-color: rgba(255, 200, 87, 0.4);
|
|
}
|
|
|
|
.system-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
}
|
|
|
|
.system-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 10px 12px;
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border: 1px solid var(--border);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.system-meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.system-test-message {
|
|
font-size: 11px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.system-actions {
|
|
margin-left: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.system-dot {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: #6b6b6b;
|
|
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.system-up .system-dot {
|
|
background: #3ddc97;
|
|
box-shadow: 0 0 10px rgba(61, 220, 151, 0.6);
|
|
}
|
|
|
|
.system-down .system-dot {
|
|
background: #ff3b30;
|
|
box-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
|
|
}
|
|
|
|
.system-degraded .system-dot,
|
|
.system-not_configured .system-dot {
|
|
background: #ffc857;
|
|
box-shadow: 0 0 10px rgba(255, 200, 87, 0.5);
|
|
}
|
|
|
|
.system-name {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.system-state {
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.system-test {
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: var(--ink-muted);
|
|
font-size: 11px;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.system-test:hover:not(:disabled) {
|
|
background: rgba(255, 255, 255, 0.16);
|
|
}
|
|
|
|
.system-test:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.pipeline-map {
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
padding: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.pipeline-map h2 {
|
|
font-size: 18px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.pipeline-steps {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.pipeline-step {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 12px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.pipeline-dot {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: #6b6b6b;
|
|
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.pipeline-step.is-complete {
|
|
color: var(--ink);
|
|
}
|
|
|
|
.pipeline-step.is-complete .pipeline-dot {
|
|
background: #3ddc97;
|
|
box-shadow: 0 0 10px rgba(61, 220, 151, 0.4);
|
|
}
|
|
|
|
.pipeline-step.is-active {
|
|
color: var(--ink);
|
|
border-color: rgba(61, 220, 151, 0.5);
|
|
background: rgba(61, 220, 151, 0.12);
|
|
}
|
|
|
|
.pipeline-step.is-active .pipeline-dot {
|
|
background: #3ddc97;
|
|
box-shadow: 0 0 14px rgba(61, 220, 151, 0.8);
|
|
}
|
|
|
|
.pipeline-hint {
|
|
margin-top: 10px;
|
|
color: var(--ink-muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.timeline-item.is-active .timeline-marker {
|
|
background: #3ddc97;
|
|
box-shadow: 0 0 12px rgba(61, 220, 151, 0.8);
|
|
}
|
|
|
|
@keyframes progress-indeterminate {
|
|
0% {
|
|
background-position: 200% 0;
|
|
}
|
|
100% {
|
|
background-position: -200% 0;
|
|
}
|
|
}
|
|
|
|
@keyframes rise {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(12px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.page {
|
|
padding: 28px 18px 60px;
|
|
gap: 24px;
|
|
}
|
|
|
|
.header {
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: auto auto auto;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.header-left {
|
|
width: 100%;
|
|
}
|
|
|
|
.brand-link {
|
|
width: 100%;
|
|
gap: 12px;
|
|
}
|
|
|
|
.brand-logo--header {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
|
|
.brand {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.header-right {
|
|
grid-column: 1 / -1;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.header-nav {
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
}
|
|
|
|
.signed-in-menu {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.avatar-button {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.signed-in-dropdown {
|
|
right: 0;
|
|
left: auto;
|
|
width: min(260px, 92vw);
|
|
}
|
|
|
|
.header-actions {
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.header-actions a,
|
|
.header-actions .header-link {
|
|
font-size: 12px;
|
|
padding: 8px 10px;
|
|
}
|
|
|
|
.header-actions .header-cta--left {
|
|
grid-column: 1 / -1;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.summary {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.history-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.layout-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.side-panel {
|
|
position: static;
|
|
}
|
|
|
|
.admin-shell {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-shell-nav {
|
|
position: static;
|
|
}
|
|
|
|
.search {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.card {
|
|
padding: 24px;
|
|
}
|
|
|
|
.cache-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.user-card {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.connection-item {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.header-actions {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Loading spinner */
|
|
.loading-center {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 12px;
|
|
padding: 28px 0;
|
|
}
|
|
|
|
.spinner {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 50%;
|
|
border: 4px solid rgba(255, 255, 255, 0.12);
|
|
border-top-color: var(--accent-2);
|
|
box-shadow: 0 6px 18px rgba(28, 107, 255, 0.12);
|
|
animation: spin 0.9s linear infinite;
|
|
}
|
|
|
|
.button-spinner {
|
|
width: 16px;
|
|
height: 16px;
|
|
border-width: 2px;
|
|
box-shadow: none;
|
|
margin-right: 8px;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
}
|
|
|
|
.loading-text {
|
|
font-size: 16px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/* How it works */
|
|
.how-page {
|
|
display: grid;
|
|
gap: 28px;
|
|
}
|
|
|
|
.how-hero {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.eyebrow {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.18em;
|
|
font-size: 12px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.how-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 18px;
|
|
}
|
|
|
|
.how-card {
|
|
background: var(--paper-strong);
|
|
border: 1px solid var(--border);
|
|
padding: 16px;
|
|
border-radius: 16px;
|
|
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.how-title {
|
|
color: var(--accent-3);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.how-flow {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.how-steps {
|
|
list-style: none;
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 0;
|
|
}
|
|
|
|
.how-steps li {
|
|
padding: 12px 14px;
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.how-step-grid {
|
|
display: grid;
|
|
gap: 16px;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
}
|
|
|
|
.how-step-card {
|
|
border-radius: 18px;
|
|
padding: 18px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
display: grid;
|
|
gap: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.how-step-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
opacity: 0.35;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.step-seerr::before {
|
|
background: linear-gradient(135deg, rgba(255, 187, 92, 0.35), transparent 60%);
|
|
}
|
|
|
|
.step-arr::before {
|
|
background: linear-gradient(135deg, rgba(94, 204, 255, 0.35), transparent 60%);
|
|
}
|
|
|
|
.step-prowlarr::before {
|
|
background: linear-gradient(135deg, rgba(120, 255, 189, 0.35), transparent 60%);
|
|
}
|
|
|
|
.step-qbit::before {
|
|
background: linear-gradient(135deg, rgba(255, 133, 200, 0.35), transparent 60%);
|
|
}
|
|
|
|
.step-jellyfin::before {
|
|
background: linear-gradient(135deg, rgba(170, 140, 255, 0.35), transparent 60%);
|
|
}
|
|
|
|
.step-badge {
|
|
width: 38px;
|
|
height: 38px;
|
|
border-radius: 50%;
|
|
display: grid;
|
|
place-items: center;
|
|
font-weight: 700;
|
|
background: rgba(255, 255, 255, 0.12);
|
|
border: 1px solid var(--border);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.step-note {
|
|
color: var(--ink-muted);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.step-fix-title {
|
|
font-size: 13px;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.step-fix-list {
|
|
list-style: none;
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.step-fix-list li {
|
|
padding: 8px 10px;
|
|
border-radius: 10px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid var(--border);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.how-callout {
|
|
border-left: 4px solid var(--accent);
|
|
padding: 16px 18px;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border-radius: 12px;
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.changelog-card {
|
|
gap: 18px;
|
|
}
|
|
|
|
.changelog-header {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.changelog-list {
|
|
list-style: disc;
|
|
padding-left: 22px;
|
|
display: grid;
|
|
gap: 10px;
|
|
color: var(--ink-muted);
|
|
font-size: 15px;
|
|
}
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* Professional UI Refresh (graphite / silver / black + subtle blue accents) */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
:root {
|
|
--ink: #10151d;
|
|
--ink-muted: #5b6472;
|
|
--paper: #eaedf1;
|
|
--paper-strong: #f8fafc;
|
|
--accent: #3f78d7;
|
|
--accent-2: #5ea0ff;
|
|
--accent-3: #8fa7c8;
|
|
--border: rgba(16, 21, 29, 0.1);
|
|
--shadow: rgba(16, 21, 29, 0.14);
|
|
--glow: 0 0 0 transparent;
|
|
--input-bg: rgba(16, 21, 29, 0.03);
|
|
--error-bg: rgba(185, 28, 28, 0.08);
|
|
--error-ink: #7f1d1d;
|
|
}
|
|
|
|
[data-theme='dark'] {
|
|
--ink: #edf1f7;
|
|
--ink-muted: #98a2b3;
|
|
--paper: #090c10;
|
|
--paper-strong: #11151b;
|
|
--accent: #4b7fdb;
|
|
--accent-2: #66a3ff;
|
|
--accent-3: #93a6c4;
|
|
--border: rgba(255, 255, 255, 0.07);
|
|
--shadow: rgba(0, 0, 0, 0.45);
|
|
--glow: 0 0 0 transparent;
|
|
--input-bg: rgba(255, 255, 255, 0.035);
|
|
--error-bg: rgba(248, 113, 113, 0.12);
|
|
--error-ink: #fecaca;
|
|
}
|
|
|
|
body {
|
|
font-family: "Manrope", "Segoe UI", sans-serif;
|
|
background:
|
|
radial-gradient(800px 380px at 10% -8%, rgba(102, 163, 255, 0.09), transparent 60%),
|
|
radial-gradient(700px 340px at 88% 0%, rgba(149, 176, 214, 0.07), transparent 58%),
|
|
linear-gradient(180deg, #090b0f 0%, #07090d 100%);
|
|
letter-spacing: 0.005em;
|
|
}
|
|
|
|
[data-theme='light'] body {
|
|
background:
|
|
radial-gradient(700px 320px at 10% -10%, rgba(102, 163, 255, 0.12), transparent 60%),
|
|
linear-gradient(180deg, #f2f4f7 0%, #e9edf3 100%);
|
|
}
|
|
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
opacity: 0.08;
|
|
background-image:
|
|
linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
|
|
background-size: 24px 24px;
|
|
z-index: 0;
|
|
}
|
|
|
|
.page {
|
|
position: relative;
|
|
z-index: 1;
|
|
max-width: 1200px;
|
|
gap: 24px;
|
|
}
|
|
|
|
.header {
|
|
padding: 18px 20px;
|
|
border-radius: 18px;
|
|
border: 1px solid var(--border);
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
|
|
rgba(13, 17, 23, 0.7);
|
|
backdrop-filter: blur(14px);
|
|
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
|
|
}
|
|
|
|
[data-theme='light'] .header {
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
|
|
rgba(248, 250, 252, 0.9);
|
|
}
|
|
|
|
.brand {
|
|
font-size: 30px;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 15px;
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 34px;
|
|
font-weight: 800;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 21px;
|
|
font-weight: 700;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 17px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.lede {
|
|
color: var(--ink-muted);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.header-actions a,
|
|
.header-actions .header-link {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 8px 14px;
|
|
box-shadow: none;
|
|
backdrop-filter: none;
|
|
}
|
|
|
|
.header-actions a:hover,
|
|
.header-actions .header-link:hover {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border-color: rgba(102, 163, 255, 0.25);
|
|
}
|
|
|
|
.header-actions .header-cta {
|
|
background: linear-gradient(180deg, rgba(78, 133, 224, 0.95), rgba(61, 112, 196, 0.95));
|
|
color: #f7fbff;
|
|
border: 1px solid rgba(102, 163, 255, 0.45);
|
|
box-shadow: 0 8px 18px rgba(62, 109, 190, 0.22);
|
|
}
|
|
|
|
.avatar-button {
|
|
width: 42px;
|
|
height: 42px;
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(102, 163, 255, 0.22);
|
|
background: linear-gradient(180deg, rgba(78, 133, 224, 0.16), rgba(255, 255, 255, 0.02));
|
|
box-shadow: none;
|
|
}
|
|
|
|
.theme-toggle {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid var(--border);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.theme-toggle:hover,
|
|
.avatar-button:hover {
|
|
border-color: rgba(102, 163, 255, 0.28);
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.signed-in-dropdown {
|
|
border-radius: 14px;
|
|
background: rgba(12, 15, 20, 0.96);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
|
|
}
|
|
|
|
[data-theme='light'] .signed-in-dropdown {
|
|
background: rgba(250, 252, 255, 0.98);
|
|
}
|
|
|
|
.signed-in-actions a,
|
|
.signed-in-signout {
|
|
border-radius: 10px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.signed-in-actions a:hover,
|
|
.signed-in-signout:hover {
|
|
background: rgba(255, 255, 255, 0.07);
|
|
}
|
|
|
|
.card {
|
|
border-radius: 18px;
|
|
border: 1px solid var(--border);
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
|
|
rgba(17, 21, 27, 0.84);
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
|
|
padding: 26px;
|
|
animation: none;
|
|
}
|
|
|
|
[data-theme='light'] .card {
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.78)),
|
|
rgba(248, 250, 252, 0.95);
|
|
box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
input:focus,
|
|
select:focus,
|
|
textarea:focus {
|
|
outline: none;
|
|
border-color: rgba(102, 163, 255, 0.42);
|
|
box-shadow:
|
|
0 0 0 3px rgba(102, 163, 255, 0.12),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
button {
|
|
border-radius: 12px;
|
|
background: linear-gradient(180deg, rgba(74, 123, 210, 0.96), rgba(61, 103, 176, 0.96));
|
|
border: 1px solid rgba(102, 163, 255, 0.35);
|
|
box-shadow: 0 8px 16px rgba(62, 104, 179, 0.2);
|
|
font-weight: 600;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
button:hover:not(:disabled) {
|
|
filter: brightness(1.03);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.65;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ghost-button,
|
|
.details-toggle button,
|
|
.recent-grid button,
|
|
.admin-pagination button,
|
|
.system-test {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid var(--border);
|
|
box-shadow: none;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.ghost-button:hover:not(:disabled),
|
|
.details-toggle button:hover:not(:disabled),
|
|
.recent-grid button:hover:not(:disabled),
|
|
.system-test:hover:not(:disabled) {
|
|
background: rgba(255, 255, 255, 0.055);
|
|
border-color: rgba(102, 163, 255, 0.24);
|
|
}
|
|
|
|
.danger-button {
|
|
background: linear-gradient(180deg, #c93f3f, #9f3030);
|
|
border-color: rgba(255, 143, 143, 0.25);
|
|
box-shadow: 0 8px 16px rgba(156, 46, 46, 0.22);
|
|
}
|
|
|
|
.site-banner,
|
|
.status-banner,
|
|
.state,
|
|
.action-message,
|
|
.sync-progress,
|
|
.system-status,
|
|
.pipeline-map,
|
|
.summary-card,
|
|
.status-box,
|
|
.timeline-card,
|
|
.connection-item,
|
|
.stat-card,
|
|
.how-card,
|
|
.how-step-card,
|
|
.schedule-card,
|
|
.log-viewer,
|
|
.cache-row,
|
|
.filters-compact,
|
|
.settings-nav,
|
|
.user-grid-card,
|
|
.user-detail-card,
|
|
.user-detail-controls,
|
|
.user-bulk-toolbar,
|
|
.system-item {
|
|
background: rgba(255, 255, 255, 0.025);
|
|
border-color: var(--border);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.status-box,
|
|
.summary-card,
|
|
.timeline-card,
|
|
.system-status,
|
|
.pipeline-map {
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.timeline::before {
|
|
background: linear-gradient(180deg, rgba(102, 163, 255, 0.5), rgba(102, 163, 255, 0.08));
|
|
}
|
|
|
|
.timeline-marker,
|
|
.timeline-item.is-active .timeline-marker {
|
|
background: var(--accent-2);
|
|
box-shadow: 0 0 0 4px rgba(102, 163, 255, 0.14);
|
|
}
|
|
|
|
.admin-shell {
|
|
gap: 20px;
|
|
grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
|
|
}
|
|
|
|
.admin-sidebar {
|
|
padding: 14px;
|
|
gap: 14px;
|
|
border-radius: 16px;
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
|
|
rgba(15, 18, 24, 0.85);
|
|
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
|
|
}
|
|
|
|
[data-theme='light'] .admin-sidebar {
|
|
background: rgba(255, 255, 255, 0.78);
|
|
}
|
|
|
|
.admin-sidebar-title,
|
|
.admin-nav-title,
|
|
.settings-title,
|
|
.eyebrow {
|
|
color: #8e98a9;
|
|
letter-spacing: 0.12em;
|
|
}
|
|
|
|
.admin-nav-links a {
|
|
border-radius: 10px;
|
|
padding: 10px 12px;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.admin-nav-links a:hover {
|
|
border-color: rgba(102, 163, 255, 0.18);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.admin-nav-links a.is-active {
|
|
background:
|
|
linear-gradient(180deg, rgba(102, 163, 255, 0.14), rgba(102, 163, 255, 0.08));
|
|
border-color: rgba(102, 163, 255, 0.28);
|
|
box-shadow: inset 0 0 0 1px rgba(102, 163, 255, 0.06);
|
|
}
|
|
|
|
.admin-table-row,
|
|
.cache-row,
|
|
.system-item,
|
|
.pipeline-step,
|
|
.step-fix-list li,
|
|
.how-steps li {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.admin-table-row {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
.admin-table-row:hover {
|
|
transform: none;
|
|
box-shadow: none;
|
|
border: 1px solid rgba(102, 163, 255, 0.15);
|
|
}
|
|
|
|
.pipeline-step.is-active {
|
|
border-color: rgba(102, 163, 255, 0.34);
|
|
background: rgba(102, 163, 255, 0.1);
|
|
}
|
|
|
|
.pipeline-step.is-active .pipeline-dot,
|
|
.pipeline-step.is-complete .pipeline-dot,
|
|
.system-up .system-dot {
|
|
box-shadow: 0 0 0 3px rgba(102, 163, 255, 0.12);
|
|
}
|
|
|
|
.pipeline-dot,
|
|
.system-dot {
|
|
background: #6f7a8a;
|
|
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.system-up .system-dot {
|
|
background: #7fb0ff;
|
|
}
|
|
|
|
.system-down .system-dot {
|
|
background: #f87171;
|
|
box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
|
|
}
|
|
|
|
.system-degraded .system-dot,
|
|
.system-not_configured .system-dot {
|
|
background: #d4b36b;
|
|
box-shadow: 0 0 0 3px rgba(212, 179, 107, 0.12);
|
|
}
|
|
|
|
.system-pill,
|
|
.user-grid-pill,
|
|
.signed-in-build,
|
|
.site-version {
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.user-grid-pill {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.user-grid-pill.is-blocked {
|
|
background: rgba(248, 113, 113, 0.12);
|
|
border-color: rgba(248, 113, 113, 0.25);
|
|
}
|
|
|
|
.user-grid-card,
|
|
.user-detail-card {
|
|
transition: border-color 0.16s ease, background 0.16s ease;
|
|
}
|
|
|
|
.user-grid-card:hover {
|
|
transform: none;
|
|
background: rgba(255, 255, 255, 0.035);
|
|
border-color: rgba(102, 163, 255, 0.2);
|
|
}
|
|
|
|
.user-detail-chip,
|
|
.user-detail-stat {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-color: var(--border);
|
|
}
|
|
|
|
.user-detail-controls {
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.toggle {
|
|
font-size: 13px;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.toggle input[type='checkbox'] {
|
|
accent-color: var(--accent);
|
|
}
|
|
|
|
.search,
|
|
.filters,
|
|
.find-controls,
|
|
.admin-form,
|
|
.profile-grid,
|
|
.profile-section {
|
|
gap: 14px;
|
|
}
|
|
|
|
.recent-poster,
|
|
.request-poster,
|
|
.brand-preview {
|
|
border-radius: 12px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.how-step-card::before {
|
|
opacity: 0.12;
|
|
}
|
|
|
|
.how-title {
|
|
color: #9fb4d4;
|
|
}
|
|
|
|
.step-badge {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.how-callout {
|
|
border-left-color: rgba(102, 163, 255, 0.45);
|
|
background: rgba(255, 255, 255, 0.025);
|
|
}
|
|
|
|
.modal-card {
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
background: rgba(17, 21, 27, 0.96);
|
|
box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
|
|
}
|
|
|
|
[data-theme='light'] .modal-card {
|
|
background: rgba(249, 251, 255, 0.98);
|
|
}
|
|
|
|
.site-banner {
|
|
border-radius: 14px;
|
|
padding: 14px 16px;
|
|
}
|
|
|
|
.site-banner--info {
|
|
background: rgba(102, 163, 255, 0.1);
|
|
border-color: rgba(102, 163, 255, 0.22);
|
|
}
|
|
|
|
.site-banner--warning {
|
|
background: rgba(212, 179, 107, 0.12);
|
|
border-color: rgba(212, 179, 107, 0.22);
|
|
}
|
|
|
|
.site-banner--error {
|
|
background: rgba(248, 113, 113, 0.11);
|
|
border-color: rgba(248, 113, 113, 0.22);
|
|
}
|
|
|
|
.site-banner--maintenance {
|
|
background: rgba(113, 128, 150, 0.12);
|
|
border-color: rgba(143, 160, 185, 0.22);
|
|
}
|
|
|
|
.progress {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.progress-fill {
|
|
background: linear-gradient(90deg, #4c7fdc, #6da8ff);
|
|
}
|
|
|
|
.spinner {
|
|
border: 4px solid rgba(255, 255, 255, 0.08);
|
|
border-top-color: #6da8ff;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.brand-logo--header {
|
|
width: 86px;
|
|
height: 86px;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.header {
|
|
padding: 14px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.card {
|
|
padding: 20px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.header-actions {
|
|
gap: 8px;
|
|
}
|
|
|
|
.header-actions a,
|
|
.header-actions .header-link {
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
|
|
/* Release 1.1 UI Refresh: Professional control-panel theme */
|
|
:root {
|
|
--ink: #111318;
|
|
--ink-muted: #5f6776;
|
|
--paper: #eef1f6;
|
|
--paper-strong: #ffffff;
|
|
--accent: #4e8ef7;
|
|
--accent-2: #77abff;
|
|
--accent-3: #9dbdff;
|
|
--border: rgba(17, 19, 24, 0.1);
|
|
--shadow: rgba(17, 19, 24, 0.16);
|
|
--glow: 0 0 0 1px rgba(78, 142, 247, 0.08), 0 14px 30px rgba(16, 20, 28, 0.08);
|
|
--input-bg: rgba(17, 19, 24, 0.035);
|
|
--input-ink: var(--ink);
|
|
--error-bg: rgba(225, 81, 81, 0.12);
|
|
--error-ink: #6f1f1f;
|
|
}
|
|
|
|
[data-theme='dark'] {
|
|
--ink: #eef1f7;
|
|
--ink-muted: #9aa3b2;
|
|
--paper: #0a0d12;
|
|
--paper-strong: #12161d;
|
|
--accent: #5d9cff;
|
|
--accent-2: #87b5ff;
|
|
--accent-3: #a5c4ff;
|
|
--border: rgba(255, 255, 255, 0.08);
|
|
--shadow: rgba(0, 0, 0, 0.55);
|
|
--glow: 0 0 0 1px rgba(93, 156, 255, 0.12), 0 18px 42px rgba(0, 0, 0, 0.38);
|
|
--input-bg: rgba(255, 255, 255, 0.035);
|
|
--input-ink: var(--ink);
|
|
--error-bg: rgba(248, 113, 113, 0.14);
|
|
--error-ink: #ffd4d4;
|
|
}
|
|
|
|
body {
|
|
font-family: "Manrope", "Segoe UI", sans-serif;
|
|
background:
|
|
radial-gradient(circle at 12% -8%, rgba(93, 156, 255, 0.11), transparent 42%),
|
|
radial-gradient(circle at 88% 0%, rgba(150, 160, 180, 0.08), transparent 35%),
|
|
linear-gradient(180deg, #06080d 0%, #080b10 36%, #06080c 100%);
|
|
color: var(--ink);
|
|
}
|
|
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
background:
|
|
linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
|
|
background-size: 28px 28px;
|
|
opacity: 0.35;
|
|
z-index: -1;
|
|
}
|
|
|
|
[data-theme='light'] body {
|
|
background:
|
|
radial-gradient(circle at 15% -10%, rgba(93, 156, 255, 0.1), transparent 38%),
|
|
radial-gradient(circle at 90% 0%, rgba(70, 80, 95, 0.06), transparent 30%),
|
|
linear-gradient(180deg, #f4f6fb 0%, #eceff5 46%, #e8ecf2 100%);
|
|
}
|
|
|
|
[data-theme='light'] body::before {
|
|
background:
|
|
linear-gradient(rgba(17, 19, 24, 0.028) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(17, 19, 24, 0.02) 1px, transparent 1px);
|
|
opacity: 0.45;
|
|
}
|
|
|
|
.page {
|
|
max-width: 1240px;
|
|
gap: 28px;
|
|
}
|
|
|
|
.brand {
|
|
font-size: 2.15rem;
|
|
letter-spacing: 0.04em;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.tagline {
|
|
color: var(--ink-muted);
|
|
font-size: 0.98rem;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.brand-logo {
|
|
filter: saturate(0.92) contrast(1.02);
|
|
}
|
|
|
|
.brand-logo--header {
|
|
width: 74px;
|
|
height: 74px;
|
|
}
|
|
|
|
.header {
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012));
|
|
border: 1px solid var(--border);
|
|
border-radius: 20px;
|
|
padding: 18px 20px;
|
|
box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
[data-theme='light'] .header {
|
|
background: rgba(255, 255, 255, 0.7);
|
|
box-shadow: 0 14px 30px rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.header-actions {
|
|
gap: 10px;
|
|
}
|
|
|
|
.header-actions a,
|
|
.header-actions .header-link {
|
|
min-height: 36px;
|
|
padding: 8px 14px;
|
|
border-radius: 11px;
|
|
background: rgba(255, 255, 255, 0.025);
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
color: var(--ink);
|
|
font-weight: 600;
|
|
box-shadow: none;
|
|
}
|
|
|
|
[data-theme='light'] .header-actions a,
|
|
[data-theme='light'] .header-actions .header-link {
|
|
background: rgba(255, 255, 255, 0.8);
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.header-actions a:hover,
|
|
.header-actions .header-link:hover {
|
|
border-color: rgba(93, 156, 255, 0.26);
|
|
background: rgba(93, 156, 255, 0.08);
|
|
}
|
|
|
|
.header-actions .header-cta {
|
|
background: linear-gradient(180deg, rgba(93, 156, 255, 0.28), rgba(93, 156, 255, 0.18));
|
|
color: #ecf2ff;
|
|
border: 1px solid rgba(93, 156, 255, 0.34);
|
|
box-shadow: 0 10px 22px rgba(11, 24, 48, 0.22);
|
|
}
|
|
|
|
[data-theme='light'] .header-actions .header-cta {
|
|
color: #102542;
|
|
background: linear-gradient(180deg, rgba(93, 156, 255, 0.16), rgba(93, 156, 255, 0.1));
|
|
box-shadow: 0 8px 18px rgba(93, 156, 255, 0.12);
|
|
}
|
|
|
|
.theme-toggle,
|
|
.avatar-button {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 14px;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
|
|
}
|
|
|
|
[data-theme='light'] .theme-toggle,
|
|
[data-theme='light'] .avatar-button {
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
background: rgba(255, 255, 255, 0.8);
|
|
box-shadow: 0 10px 18px rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.avatar-button {
|
|
border-radius: 50%;
|
|
background:
|
|
radial-gradient(circle at 35% 20%, rgba(93, 156, 255, 0.22), transparent 58%),
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
|
|
font-weight: 700;
|
|
box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
|
|
}
|
|
|
|
.avatar-button:hover,
|
|
.theme-toggle:hover {
|
|
border-color: rgba(93, 156, 255, 0.24);
|
|
box-shadow: 0 0 0 1px rgba(93, 156, 255, 0.12), 0 14px 24px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.signed-in-dropdown {
|
|
border-radius: 14px;
|
|
background: rgba(10, 13, 19, 0.96);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
[data-theme='light'] .signed-in-dropdown {
|
|
background: rgba(255, 255, 255, 0.95);
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
box-shadow: 0 18px 36px rgba(17, 19, 24, 0.11);
|
|
}
|
|
|
|
.signed-in-actions a,
|
|
.signed-in-signout {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border-color: rgba(255, 255, 255, 0.07);
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
[data-theme='light'] .signed-in-actions a,
|
|
[data-theme='light'] .signed-in-signout {
|
|
background: rgba(17, 19, 24, 0.03);
|
|
border-color: rgba(17, 19, 24, 0.07);
|
|
}
|
|
|
|
.signed-in-actions a:hover,
|
|
.signed-in-signout:hover {
|
|
background: rgba(93, 156, 255, 0.08);
|
|
border-color: rgba(93, 156, 255, 0.22);
|
|
}
|
|
|
|
.card,
|
|
.admin-card,
|
|
.status-box,
|
|
.summary-card,
|
|
.user-card,
|
|
.timeline-card,
|
|
.modal-card,
|
|
.auth-card,
|
|
.site-banner,
|
|
.system-status,
|
|
.user-detail-card,
|
|
.user-grid-card,
|
|
.profile-section,
|
|
.schedule-card,
|
|
.cache-row,
|
|
.system-item,
|
|
.maintenance-grid > *,
|
|
.history-grid ul,
|
|
.history-grid li {
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
|
|
border-color: rgba(255, 255, 255, 0.075);
|
|
}
|
|
|
|
[data-theme='light'] .card,
|
|
[data-theme='light'] .admin-card,
|
|
[data-theme='light'] .status-box,
|
|
[data-theme='light'] .summary-card,
|
|
[data-theme='light'] .user-card,
|
|
[data-theme='light'] .timeline-card,
|
|
[data-theme='light'] .modal-card,
|
|
[data-theme='light'] .auth-card,
|
|
[data-theme='light'] .site-banner,
|
|
[data-theme='light'] .system-status,
|
|
[data-theme='light'] .user-detail-card,
|
|
[data-theme='light'] .user-grid-card,
|
|
[data-theme='light'] .profile-section,
|
|
[data-theme='light'] .schedule-card,
|
|
[data-theme='light'] .cache-row,
|
|
[data-theme='light'] .system-item {
|
|
background: rgba(255, 255, 255, 0.8);
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.card,
|
|
.admin-card {
|
|
border-radius: 22px;
|
|
box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
|
|
}
|
|
|
|
[data-theme='light'] .card,
|
|
[data-theme='light'] .admin-card {
|
|
box-shadow: 0 14px 28px rgba(17, 19, 24, 0.07);
|
|
}
|
|
|
|
.lede,
|
|
.section-subtitle,
|
|
.sync-note,
|
|
.user-meta,
|
|
.signed-in-header,
|
|
.admin-nav-title,
|
|
.system-test-message {
|
|
color: var(--ink-muted);
|
|
}
|
|
|
|
.admin-shell {
|
|
gap: 22px;
|
|
}
|
|
|
|
.admin-shell-nav {
|
|
position: sticky;
|
|
top: 20px;
|
|
align-self: start;
|
|
}
|
|
|
|
.admin-sidebar {
|
|
border-radius: 18px;
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
|
|
box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
[data-theme='light'] .admin-sidebar {
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
background: rgba(255, 255, 255, 0.82);
|
|
box-shadow: 0 12px 22px rgba(17, 19, 24, 0.06);
|
|
}
|
|
|
|
.admin-sidebar-title {
|
|
font-weight: 800;
|
|
letter-spacing: 0.12em;
|
|
color: #aeb7c6;
|
|
}
|
|
|
|
[data-theme='light'] .admin-sidebar-title {
|
|
color: #667085;
|
|
}
|
|
|
|
.admin-nav-title {
|
|
letter-spacing: 0.1em;
|
|
font-weight: 700;
|
|
color: #8e97a8;
|
|
}
|
|
|
|
.admin-nav-links a {
|
|
border-radius: 12px;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px solid rgba(255, 255, 255, 0.04);
|
|
font-weight: 600;
|
|
}
|
|
|
|
[data-theme='light'] .admin-nav-links a {
|
|
background: rgba(17, 19, 24, 0.02);
|
|
border-color: rgba(17, 19, 24, 0.05);
|
|
}
|
|
|
|
.admin-nav-links a:hover {
|
|
background: rgba(93, 156, 255, 0.07);
|
|
border-color: rgba(93, 156, 255, 0.22);
|
|
}
|
|
|
|
.admin-nav-links a.is-active {
|
|
color: #eef4ff;
|
|
background: linear-gradient(180deg, rgba(93, 156, 255, 0.2), rgba(93, 156, 255, 0.1));
|
|
border-color: rgba(93, 156, 255, 0.3);
|
|
box-shadow: inset 0 0 0 1px rgba(93, 156, 255, 0.08);
|
|
}
|
|
|
|
[data-theme='light'] .admin-nav-links a.is-active {
|
|
color: #0f2342;
|
|
}
|
|
|
|
.admin-header h1,
|
|
.section-header h2,
|
|
.request-header h1,
|
|
.auth-card h1,
|
|
.profile-section h2,
|
|
.status-box h2 {
|
|
letter-spacing: -0.02em;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.admin-form,
|
|
.admin-section,
|
|
.profile-section,
|
|
.status-box,
|
|
.summary-card,
|
|
.timeline-card,
|
|
.user-detail-card,
|
|
.user-grid-card {
|
|
border-radius: 16px;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: var(--ink);
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
[data-theme='light'] input,
|
|
[data-theme='light'] select,
|
|
[data-theme='light'] textarea {
|
|
border-color: rgba(17, 19, 24, 0.1);
|
|
background: rgba(17, 19, 24, 0.025);
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
input:focus,
|
|
select:focus,
|
|
textarea:focus {
|
|
border-color: rgba(93, 156, 255, 0.34);
|
|
box-shadow: 0 0 0 3px rgba(93, 156, 255, 0.12);
|
|
outline: none;
|
|
}
|
|
|
|
button {
|
|
border-radius: 11px;
|
|
border: 1px solid rgba(93, 156, 255, 0.28);
|
|
background: linear-gradient(180deg, rgba(93, 156, 255, 0.2), rgba(93, 156, 255, 0.12));
|
|
color: #eef4ff;
|
|
box-shadow: 0 8px 18px rgba(10, 20, 38, 0.18);
|
|
font-weight: 700;
|
|
}
|
|
|
|
[data-theme='light'] button {
|
|
color: #11233f;
|
|
box-shadow: 0 6px 14px rgba(93, 156, 255, 0.08);
|
|
}
|
|
|
|
button:hover:not(:disabled) {
|
|
transform: translateY(-1px);
|
|
border-color: rgba(93, 156, 255, 0.42);
|
|
background: linear-gradient(180deg, rgba(93, 156, 255, 0.26), rgba(93, 156, 255, 0.15));
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.6;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ghost-button,
|
|
.details-toggle button,
|
|
.recent-grid button,
|
|
.admin-pagination button,
|
|
.system-test,
|
|
.header-actions a,
|
|
.header-actions .header-link {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ghost-button,
|
|
.details-toggle button,
|
|
.recent-grid button,
|
|
.admin-pagination button,
|
|
.system-test {
|
|
color: var(--ink);
|
|
background: rgba(255, 255, 255, 0.025);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
[data-theme='light'] .ghost-button,
|
|
[data-theme='light'] .details-toggle button,
|
|
[data-theme='light'] .recent-grid button,
|
|
[data-theme='light'] .admin-pagination button,
|
|
[data-theme='light'] .system-test {
|
|
background: rgba(17, 19, 24, 0.025);
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.ghost-button:hover:not(:disabled),
|
|
.details-toggle button:hover:not(:disabled),
|
|
.recent-grid button:hover:not(:disabled),
|
|
.admin-pagination button:hover:not(:disabled),
|
|
.system-test:hover:not(:disabled) {
|
|
background: rgba(93, 156, 255, 0.08);
|
|
border-color: rgba(93, 156, 255, 0.24);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.danger-button {
|
|
border-color: rgba(244, 114, 114, 0.28);
|
|
background: linear-gradient(180deg, rgba(244, 114, 114, 0.2), rgba(244, 114, 114, 0.11));
|
|
color: #ffeaea;
|
|
}
|
|
|
|
[data-theme='light'] .danger-button {
|
|
color: #5c1717;
|
|
}
|
|
|
|
.admin-table {
|
|
border-radius: 16px;
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
overflow: hidden;
|
|
background: rgba(255, 255, 255, 0.015);
|
|
}
|
|
|
|
[data-theme='light'] .admin-table {
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
background: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.admin-table-head {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
[data-theme='light'] .admin-table-head {
|
|
background: rgba(17, 19, 24, 0.02);
|
|
border-bottom-color: rgba(17, 19, 24, 0.06);
|
|
}
|
|
|
|
.admin-table-row {
|
|
border-top-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
[data-theme='light'] .admin-table-row {
|
|
border-top-color: rgba(17, 19, 24, 0.05);
|
|
}
|
|
|
|
.admin-table-row:hover {
|
|
background: rgba(93, 156, 255, 0.04);
|
|
border-color: rgba(93, 156, 255, 0.18);
|
|
}
|
|
|
|
.user-grid-card:hover,
|
|
.recent-card:hover,
|
|
.summary-card:hover,
|
|
.timeline-card:hover {
|
|
border-color: rgba(93, 156, 255, 0.2);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
[data-theme='light'] .user-grid-card:hover,
|
|
[data-theme='light'] .recent-card:hover,
|
|
[data-theme='light'] .summary-card:hover,
|
|
[data-theme='light'] .timeline-card:hover {
|
|
background: rgba(255, 255, 255, 0.92);
|
|
}
|
|
|
|
.recent-card,
|
|
.user-grid-card,
|
|
.summary-card,
|
|
.timeline-card,
|
|
.system-item,
|
|
.cache-row,
|
|
.user-detail-controls,
|
|
.user-detail-stat,
|
|
.user-detail-chip {
|
|
border-radius: 14px;
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
box-shadow: none;
|
|
}
|
|
|
|
[data-theme='light'] .recent-card,
|
|
[data-theme='light'] .user-grid-card,
|
|
[data-theme='light'] .summary-card,
|
|
[data-theme='light'] .timeline-card,
|
|
[data-theme='light'] .system-item,
|
|
[data-theme='light'] .cache-row,
|
|
[data-theme='light'] .user-detail-controls,
|
|
[data-theme='light'] .user-detail-stat,
|
|
[data-theme='light'] .user-detail-chip {
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.recent-title,
|
|
.user-detail-name,
|
|
.user-grid-header strong,
|
|
.timeline-title,
|
|
.system-name {
|
|
font-weight: 700;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.system-pill,
|
|
.user-grid-pill,
|
|
.user-detail-chip,
|
|
.site-version,
|
|
.signed-in-build {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
[data-theme='light'] .system-pill,
|
|
[data-theme='light'] .user-grid-pill,
|
|
[data-theme='light'] .user-detail-chip,
|
|
[data-theme='light'] .site-version,
|
|
[data-theme='light'] .signed-in-build {
|
|
background: rgba(17, 19, 24, 0.02);
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.system-pill-up {
|
|
background: rgba(93, 156, 255, 0.14);
|
|
border-color: rgba(93, 156, 255, 0.24);
|
|
color: #d7e8ff;
|
|
}
|
|
|
|
[data-theme='light'] .system-pill-up {
|
|
color: #163963;
|
|
}
|
|
|
|
.system-pill-down,
|
|
.user-grid-pill.is-blocked {
|
|
background: rgba(244, 114, 114, 0.14);
|
|
border-color: rgba(244, 114, 114, 0.24);
|
|
}
|
|
|
|
.system-pill-degraded,
|
|
.user-grid-pill.is-disabled {
|
|
background: rgba(208, 166, 92, 0.14);
|
|
border-color: rgba(208, 166, 92, 0.22);
|
|
}
|
|
|
|
.system-dot {
|
|
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.system-up .system-dot {
|
|
background: #7fb1ff;
|
|
box-shadow: 0 0 0 3px rgba(93, 156, 255, 0.14);
|
|
}
|
|
|
|
.system-down .system-dot {
|
|
background: #f87171;
|
|
box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.14);
|
|
}
|
|
|
|
.system-degraded .system-dot,
|
|
.system-not_configured .system-dot {
|
|
background: #d7ac61;
|
|
box-shadow: 0 0 0 3px rgba(215, 172, 97, 0.14);
|
|
}
|
|
|
|
.site-banner {
|
|
border-radius: 14px;
|
|
border-width: 1px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.site-banner--info {
|
|
background: rgba(93, 156, 255, 0.08);
|
|
border-color: rgba(93, 156, 255, 0.18);
|
|
}
|
|
|
|
.site-banner--warning {
|
|
background: rgba(208, 166, 92, 0.1);
|
|
border-color: rgba(208, 166, 92, 0.22);
|
|
}
|
|
|
|
.site-banner--error {
|
|
background: rgba(244, 114, 114, 0.1);
|
|
border-color: rgba(244, 114, 114, 0.22);
|
|
}
|
|
|
|
.site-banner--maintenance {
|
|
background: rgba(148, 163, 184, 0.08);
|
|
border-color: rgba(148, 163, 184, 0.18);
|
|
}
|
|
|
|
.request-poster,
|
|
.recent-poster,
|
|
.brand-preview {
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
|
|
}
|
|
|
|
[data-theme='light'] .request-poster,
|
|
[data-theme='light'] .recent-poster,
|
|
[data-theme='light'] .brand-preview {
|
|
border-color: rgba(17, 19, 24, 0.08);
|
|
box-shadow: 0 8px 18px rgba(17, 19, 24, 0.08);
|
|
}
|
|
|
|
.progress {
|
|
background: rgba(255, 255, 255, 0.035);
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
[data-theme='light'] .progress {
|
|
background: rgba(17, 19, 24, 0.03);
|
|
border-color: rgba(17, 19, 24, 0.05);
|
|
}
|
|
|
|
.progress-fill {
|
|
background: linear-gradient(90deg, #5d9cff, #87b5ff);
|
|
}
|
|
|
|
.spinner {
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: #87b5ff;
|
|
}
|
|
|
|
.toggle {
|
|
gap: 8px;
|
|
padding: 6px 8px;
|
|
border-radius: 10px;
|
|
background: rgba(255, 255, 255, 0.018);
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
[data-theme='light'] .toggle {
|
|
background: rgba(17, 19, 24, 0.02);
|
|
border-color: rgba(17, 19, 24, 0.05);
|
|
}
|
|
|
|
.toggle input[type='checkbox'] {
|
|
accent-color: #5d9cff;
|
|
}
|
|
|
|
.user-bulk-toolbar {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
border-radius: 14px;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
[data-theme='light'] .user-bulk-toolbar {
|
|
background: rgba(17, 19, 24, 0.02);
|
|
border-color: rgba(17, 19, 24, 0.06);
|
|
}
|
|
|
|
.user-detail-layout {
|
|
align-items: start;
|
|
gap: 16px;
|
|
}
|
|
|
|
.user-detail-controls {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
}
|
|
|
|
[data-theme='light'] .user-detail-controls {
|
|
background: rgba(17, 19, 24, 0.02);
|
|
border-color: rgba(17, 19, 24, 0.07);
|
|
}
|
|
|
|
.error-banner,
|
|
.status-banner {
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(244, 114, 114, 0.2);
|
|
background: rgba(244, 114, 114, 0.1);
|
|
color: var(--error-ink);
|
|
}
|
|
|
|
[data-theme='dark'] .error-banner,
|
|
[data-theme='dark'] .status-banner {
|
|
color: #ffd9d9;
|
|
}
|
|
|
|
.auth-card {
|
|
max-width: 520px;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.auth-form label,
|
|
.admin-grid label {
|
|
font-weight: 600;
|
|
color: var(--ink);
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.page {
|
|
padding: 28px 18px 64px;
|
|
}
|
|
|
|
.header {
|
|
padding: 14px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.brand-logo--header {
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
}
|
|
|
|
/* Enterprise polish pass */
|
|
[data-theme='dark'] {
|
|
--accent: #6f95c6;
|
|
--accent-2: #8aa9d1;
|
|
--accent-3: #b2c5de;
|
|
}
|
|
|
|
body {
|
|
background:
|
|
radial-gradient(circle at 12% -8%, rgba(111, 149, 198, 0.08), transparent 40%),
|
|
linear-gradient(180deg, #06070a 0%, #07090d 55%, #06080a 100%);
|
|
}
|
|
|
|
body::before {
|
|
opacity: 0.2;
|
|
background-size: 32px 32px;
|
|
}
|
|
|
|
.page {
|
|
max-width: 1280px;
|
|
gap: 24px;
|
|
}
|
|
|
|
.header {
|
|
border-radius: 14px;
|
|
padding: 14px 16px;
|
|
backdrop-filter: blur(8px);
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
|
|
}
|
|
|
|
.brand {
|
|
font-size: 2rem;
|
|
letter-spacing: 0.03em;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.header-actions a,
|
|
.header-actions .header-link {
|
|
border-radius: 8px;
|
|
min-height: 34px;
|
|
padding: 7px 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.header-actions .header-cta {
|
|
background: rgba(111, 149, 198, 0.14);
|
|
border-color: rgba(111, 149, 198, 0.28);
|
|
color: #edf3fb;
|
|
}
|
|
|
|
[data-theme='light'] .header-actions .header-cta {
|
|
color: #19324f;
|
|
}
|
|
|
|
.theme-toggle {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.avatar-button {
|
|
width: 42px;
|
|
height: 42px;
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
|
|
}
|
|
|
|
.signed-in-dropdown {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.signed-in-actions a,
|
|
.signed-in-signout {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.card,
|
|
.admin-card {
|
|
border-radius: 16px;
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
|
|
}
|
|
|
|
.admin-shell {
|
|
gap: 18px;
|
|
}
|
|
|
|
.admin-sidebar {
|
|
border-radius: 14px;
|
|
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
|
|
}
|
|
|
|
.admin-sidebar-title {
|
|
letter-spacing: 0.14em;
|
|
font-size: 0.78rem;
|
|
}
|
|
|
|
.admin-nav-title {
|
|
letter-spacing: 0.12em;
|
|
font-size: 0.72rem;
|
|
}
|
|
|
|
.admin-nav-links a {
|
|
border-radius: 8px;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.admin-nav-links a.is-active {
|
|
background: rgba(111, 149, 198, 0.14);
|
|
color: #edf3fb;
|
|
border-color: rgba(111, 149, 198, 0.26);
|
|
}
|
|
|
|
[data-theme='light'] .admin-nav-links a.is-active {
|
|
color: #183252;
|
|
}
|
|
|
|
.admin-header {
|
|
gap: 14px;
|
|
padding-bottom: 6px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
[data-theme='light'] .admin-header {
|
|
border-bottom-color: rgba(17, 19, 24, 0.06);
|
|
}
|
|
|
|
.admin-header h1,
|
|
.section-header h2,
|
|
.request-header h1 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.admin-form,
|
|
.admin-section,
|
|
.profile-section,
|
|
.status-box,
|
|
.summary-card,
|
|
.timeline-card,
|
|
.user-detail-card,
|
|
.user-grid-card,
|
|
.system-status {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
border-radius: 8px;
|
|
min-height: 40px;
|
|
background: rgba(255, 255, 255, 0.022);
|
|
}
|
|
|
|
textarea {
|
|
min-height: 92px;
|
|
}
|
|
|
|
[data-theme='light'] input,
|
|
[data-theme='light'] select,
|
|
[data-theme='light'] textarea {
|
|
background: rgba(17, 19, 24, 0.02);
|
|
}
|
|
|
|
button {
|
|
border-radius: 8px;
|
|
min-height: 36px;
|
|
padding: 8px 12px;
|
|
background: rgba(111, 149, 198, 0.15);
|
|
border-color: rgba(111, 149, 198, 0.28);
|
|
color: #eef2f7;
|
|
}
|
|
|
|
[data-theme='light'] button {
|
|
color: #16304d;
|
|
}
|
|
|
|
button:hover:not(:disabled) {
|
|
background: rgba(111, 149, 198, 0.22);
|
|
border-color: rgba(111, 149, 198, 0.36);
|
|
transform: none;
|
|
}
|
|
|
|
.ghost-button,
|
|
.details-toggle button,
|
|
.recent-grid button,
|
|
.admin-pagination button,
|
|
.system-test {
|
|
background: rgba(255, 255, 255, 0.018);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
[data-theme='light'] .ghost-button,
|
|
[data-theme='light'] .details-toggle button,
|
|
[data-theme='light'] .recent-grid button,
|
|
[data-theme='light'] .admin-pagination button,
|
|
[data-theme='light'] .system-test {
|
|
background: rgba(17, 19, 24, 0.018);
|
|
}
|
|
|
|
.danger-button {
|
|
background: rgba(214, 93, 93, 0.14);
|
|
border-color: rgba(214, 93, 93, 0.28);
|
|
}
|
|
|
|
.admin-table {
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.admin-table-head {
|
|
font-size: 0.78rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.admin-table-row,
|
|
.cache-row {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.admin-table-row:hover {
|
|
background: rgba(111, 149, 198, 0.05);
|
|
border-color: rgba(111, 149, 198, 0.16);
|
|
}
|
|
|
|
.user-grid {
|
|
gap: 12px;
|
|
}
|
|
|
|
.user-grid-card {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.user-grid-meta,
|
|
.user-meta,
|
|
.user-detail-helper,
|
|
.user-bulk-summary span,
|
|
.system-test-message,
|
|
.timeline-sublist,
|
|
.request-meta,
|
|
.recent-meta {
|
|
color: #98a1af;
|
|
}
|
|
|
|
.user-detail-chip,
|
|
.site-version,
|
|
.signed-in-build,
|
|
.system-pill,
|
|
.user-grid-pill {
|
|
border-radius: 999px;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.user-detail-controls,
|
|
.user-detail-stat,
|
|
.user-detail-chip,
|
|
.system-item,
|
|
.recent-card,
|
|
.timeline-card,
|
|
.summary-card {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.user-detail-grid {
|
|
gap: 10px;
|
|
}
|
|
|
|
.user-detail-stat {
|
|
padding: 12px;
|
|
}
|
|
|
|
.site-banner {
|
|
border-radius: 10px;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.toggle {
|
|
border-radius: 8px;
|
|
padding: 4px 6px;
|
|
}
|
|
|
|
.progress {
|
|
height: 10px;
|
|
}
|
|
|
|
.spinner {
|
|
border-width: 3px;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.header {
|
|
border-radius: 12px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.card,
|
|
.admin-card {
|
|
border-radius: 14px;
|
|
}
|
|
}
|
|
|
|
.admin-inline-actions {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.admin-split-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
|
|
.admin-panel {
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 10px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.admin-panel h2 {
|
|
margin: 0 0 6px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.admin-panel .lede {
|
|
margin: 0 0 12px;
|
|
}
|
|
|
|
.compact-form {
|
|
gap: 12px;
|
|
}
|
|
|
|
.compact-form textarea {
|
|
min-height: 84px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.admin-fields-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.inline-checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.inline-checkbox input[type='checkbox'] {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.admin-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.admin-list-item {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: start;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
border-radius: 10px;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.admin-list-item-main {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.admin-list-item-title-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.admin-list-item-text {
|
|
margin: 0;
|
|
color: #d0d6df;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.admin-list-item-text--muted {
|
|
color: #9ea7b6;
|
|
}
|
|
|
|
.admin-meta-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
color: #9ea7b6;
|
|
font-size: 0.83rem;
|
|
}
|
|
|
|
.small-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(255, 255, 255, 0.09);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
font-size: 0.72rem;
|
|
color: #d0d6df;
|
|
}
|
|
|
|
.small-pill.is-muted {
|
|
color: #9ea7b6;
|
|
border-color: rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
}
|
|
|
|
.invite-code {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
|
|
'Courier New', monospace;
|
|
padding: 3px 8px;
|
|
border-radius: 8px;
|
|
border: 1px solid rgba(111, 149, 198, 0.2);
|
|
background: rgba(111, 149, 198, 0.07);
|
|
color: #c8d7ec;
|
|
}
|
|
|
|
.invite-lookup-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.invite-summary {
|
|
display: grid;
|
|
gap: 8px;
|
|
border: 1px solid rgba(111, 149, 198, 0.18);
|
|
background: rgba(111, 149, 198, 0.06);
|
|
border-radius: 10px;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.invite-summary.is-disabled {
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.invite-summary p {
|
|
margin: 0;
|
|
}
|
|
|
|
.invite-summary-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.user-bulk-toolbar--stacked {
|
|
align-items: stretch;
|
|
}
|
|
|
|
.user-bulk-groups {
|
|
display: grid;
|
|
gap: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.user-bulk-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.user-bulk-group > label {
|
|
display: grid;
|
|
gap: 6px;
|
|
min-width: 220px;
|
|
flex: 1 1 220px;
|
|
}
|
|
|
|
.user-bulk-label {
|
|
font-size: 0.78rem;
|
|
color: #9ea7b6;
|
|
}
|
|
|
|
.user-bulk-group input,
|
|
.user-bulk-group select {
|
|
width: 100%;
|
|
}
|
|
|
|
.user-detail-actions--stacked {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.user-detail-actions--stacked > label {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.admin-split-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-fields-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-list-item {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-lookup-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.user-bulk-group {
|
|
align-items: stretch;
|
|
}
|
|
|
|
.user-bulk-group > label {
|
|
min-width: 100%;
|
|
flex-basis: 100%;
|
|
}
|
|
}
|
|
|
|
/* 1.3 UI layout cleanup: users + invite management */
|
|
.user-directory-control-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.2fr minmax(320px, 0.8fr);
|
|
gap: 12px;
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
align-items: start;
|
|
}
|
|
|
|
.user-directory-search-panel,
|
|
.user-directory-bulk-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.user-directory-panel-header {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.user-directory-panel-header h2 {
|
|
margin: 0;
|
|
font-size: 0.98rem;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.user-directory-panel-header .lede {
|
|
margin: 4px 0 0;
|
|
max-width: 46ch;
|
|
}
|
|
|
|
.user-directory-toolbar {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr);
|
|
gap: 10px;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.user-directory-search {
|
|
width: 100%;
|
|
}
|
|
|
|
.user-directory-search > label {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.user-directory-search input {
|
|
width: 100%;
|
|
}
|
|
|
|
.user-bulk-toolbar {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.user-bulk-summary {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.user-bulk-summary strong {
|
|
font-size: 0.92rem;
|
|
}
|
|
|
|
.user-bulk-summary span {
|
|
color: #9ea7b6;
|
|
font-size: 0.82rem;
|
|
}
|
|
|
|
.user-bulk-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.user-directory-list {
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.user-directory-header {
|
|
display: grid;
|
|
grid-template-columns: 1.3fr 1.35fr 1fr 1.05fr auto;
|
|
gap: 10px;
|
|
padding: 12px 14px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
color: #9ea7b6;
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.user-directory-row {
|
|
display: grid;
|
|
grid-template-columns: 1.3fr 1.35fr 1fr 1.05fr auto;
|
|
gap: 10px;
|
|
align-items: center;
|
|
padding: 13px 14px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.04);
|
|
color: inherit;
|
|
text-decoration: none;
|
|
transition: background-color 120ms ease, border-color 120ms ease;
|
|
}
|
|
|
|
.user-directory-row:first-of-type {
|
|
border-top: 0;
|
|
}
|
|
|
|
.user-directory-row:hover {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.user-directory-cell {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 5px;
|
|
}
|
|
|
|
.user-directory-cell--identity .user-directory-title-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.user-directory-cell--identity strong {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.user-directory-subtext {
|
|
color: #98a1af;
|
|
font-size: 0.78rem;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.user-directory-pill-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.user-directory-stats-inline {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 6px 10px;
|
|
color: #b8c0cc;
|
|
font-size: 0.78rem;
|
|
}
|
|
|
|
.user-directory-stats-inline strong {
|
|
color: #eef2f7;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.user-directory-row-chevron {
|
|
color: #a9b2c2;
|
|
font-size: 0.76rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
border-radius: 999px;
|
|
padding: 4px 10px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.user-detail-page-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
|
|
.user-detail-main-column,
|
|
.user-detail-side-column {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.user-detail-panel {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.user-detail-panel-header {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.user-detail-panel-header h2 {
|
|
margin: 0;
|
|
font-size: 0.98rem;
|
|
}
|
|
|
|
.user-detail-panel-header .lede {
|
|
margin: 0;
|
|
}
|
|
|
|
.user-detail-meta-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.user-detail-meta-item {
|
|
display: grid;
|
|
gap: 4px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
border-radius: 10px;
|
|
padding: 10px 11px;
|
|
}
|
|
|
|
.user-detail-meta-item .label {
|
|
color: #9ea7b6;
|
|
font-size: 0.72rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.user-detail-meta-item strong {
|
|
font-size: 0.9rem;
|
|
color: #e7ebf1;
|
|
line-height: 1.3;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.user-detail-control-stack {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.user-detail-control-stack .toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
width: 100%;
|
|
padding: 8px 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
}
|
|
|
|
.user-detail-control-stack > button {
|
|
justify-self: start;
|
|
}
|
|
|
|
.user-detail-grid {
|
|
gap: 10px;
|
|
}
|
|
|
|
.user-detail-stat {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.invite-admin-summary-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.invite-admin-summary-tile {
|
|
min-height: 96px;
|
|
}
|
|
|
|
.admin-segmented {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
padding: 5px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.admin-segmented button {
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
color: #b6bfcb;
|
|
padding: 8px 12px;
|
|
border-radius: 9px;
|
|
font-size: 0.84rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.admin-segmented button:hover {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: #e3e8ef;
|
|
}
|
|
|
|
.admin-segmented button.is-active {
|
|
background: rgba(96, 132, 179, 0.14);
|
|
border-color: rgba(96, 132, 179, 0.25);
|
|
color: #e7eef9;
|
|
}
|
|
|
|
.invite-admin-bulk-grid {
|
|
grid-template-columns: minmax(360px, 1.2fr) minmax(300px, 0.8fr);
|
|
}
|
|
|
|
.invite-admin-summary-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.invite-admin-summary-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.invite-admin-summary-header h2 {
|
|
margin: 0;
|
|
font-size: 0.98rem;
|
|
}
|
|
|
|
.invite-admin-summary-header .lede {
|
|
margin: 4px 0 0;
|
|
}
|
|
|
|
.invite-admin-summary-list {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.invite-admin-summary-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 8px 10px;
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
}
|
|
|
|
.invite-admin-summary-row .label {
|
|
font-size: 0.78rem;
|
|
color: #9ea7b6;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.invite-admin-summary-row__value {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 8px 12px;
|
|
}
|
|
|
|
.invite-admin-summary-row__value strong {
|
|
color: #eef2f7;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.invite-admin-summary-row__value span {
|
|
color: #b3bcc8;
|
|
font-size: 0.82rem;
|
|
}
|
|
|
|
.invite-admin-tabbar {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 10px 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.invite-admin-tabbar .admin-segmented {
|
|
margin-bottom: 0;
|
|
width: max-content;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.invite-admin-tab-actions {
|
|
width: auto;
|
|
justify-content: flex-end;
|
|
align-self: center;
|
|
}
|
|
|
|
.invite-admin-stack {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.invite-admin-bulk-panel .user-bulk-groups {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.invite-admin-list-panel,
|
|
.invite-admin-form-panel {
|
|
width: 100%;
|
|
}
|
|
|
|
.profile-form-layout .invite-form-row-control > label {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.profile-form-layout .invite-form-row-control > label > span {
|
|
color: #9ea7b6;
|
|
font-size: 0.76rem;
|
|
}
|
|
|
|
.profile-form-layout .admin-inline-actions {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.invite-form-layout {
|
|
gap: 10px;
|
|
}
|
|
|
|
.invite-form-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
|
|
gap: 12px;
|
|
align-items: start;
|
|
padding: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.invite-form-row-label {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.invite-form-row-label > span {
|
|
color: #e6ebf2;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.invite-form-row-label > small {
|
|
color: #9ea7b6;
|
|
font-size: 0.76rem;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.invite-form-row-control {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.invite-form-row-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.invite-form-row-grid > label {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.invite-form-row-grid > label > span {
|
|
color: #9ea7b6;
|
|
font-size: 0.76rem;
|
|
}
|
|
|
|
.invite-form-row-control textarea,
|
|
.invite-form-row-control input,
|
|
.invite-form-row-control select {
|
|
width: 100%;
|
|
}
|
|
|
|
.invite-form-row-control--stacked {
|
|
gap: 10px;
|
|
}
|
|
|
|
.invite-email-template-picker {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.invite-email-template-picker button {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.invite-email-template-picker button.is-active {
|
|
border-color: rgba(135, 182, 255, 0.4);
|
|
background: rgba(86, 132, 220, 0.14);
|
|
color: #eef2f7;
|
|
}
|
|
|
|
.invite-email-template-meta {
|
|
display: grid;
|
|
gap: 4px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.invite-email-template-meta h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.invite-email-placeholder-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.invite-email-placeholder-list code {
|
|
padding: 6px 8px;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 8px;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: #d6dde8;
|
|
font-size: 0.78rem;
|
|
}
|
|
|
|
.admin-panel > h2 + .lede {
|
|
margin-top: -2px;
|
|
}
|
|
|
|
@media (max-width: 1180px) {
|
|
.user-directory-control-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.user-detail-page-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-admin-summary-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.invite-admin-bulk-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-form-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-form-row-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.user-bulk-toolbar {
|
|
grid-template-columns: 1fr;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.user-bulk-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.user-directory-header {
|
|
display: none;
|
|
}
|
|
|
|
.user-directory-row {
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
align-items: start;
|
|
}
|
|
|
|
.user-directory-cell {
|
|
gap: 6px;
|
|
}
|
|
|
|
.user-directory-row-chevron {
|
|
justify-self: start;
|
|
}
|
|
|
|
.user-detail-meta-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-admin-summary-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-admin-summary-row {
|
|
grid-template-columns: 1fr;
|
|
align-items: start;
|
|
}
|
|
|
|
.invite-admin-summary-row__value {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.invite-admin-tabbar {
|
|
grid-template-columns: 1fr;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.invite-admin-tab-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
}
|
|
|
|
/* Enterprise UI tightening pass */
|
|
.admin-panel,
|
|
.user-detail-panel,
|
|
.user-directory-search-panel,
|
|
.user-directory-bulk-panel,
|
|
.user-directory-table,
|
|
.invite-admin-summary-panel,
|
|
.invite-admin-summary-row,
|
|
.invite-form-row,
|
|
.admin-list-item,
|
|
.status-banner,
|
|
.error-banner,
|
|
.admin-segmented {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.admin-segmented button,
|
|
.small-pill,
|
|
.user-bulk-summary span,
|
|
.admin-inline-actions button,
|
|
.ghost-button,
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.signed-in-dropdown,
|
|
.modal-card,
|
|
.card,
|
|
.admin-card,
|
|
.summary-card {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.avatar-button,
|
|
.theme-toggle {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.invite-trace-toolbar {
|
|
display: grid;
|
|
grid-template-columns: minmax(260px, 1fr) auto;
|
|
grid-template-areas:
|
|
'filter controls'
|
|
'summary summary';
|
|
gap: 10px 14px;
|
|
align-items: flex-end;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.invite-trace-filter {
|
|
grid-area: filter;
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.invite-trace-filter > span {
|
|
color: #9ea7b6;
|
|
font-size: 0.76rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.invite-trace-summary {
|
|
grid-area: summary;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
color: #aeb7c4;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.invite-trace-summary span {
|
|
padding: 4px 8px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.invite-trace-controls {
|
|
grid-area: controls;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
align-items: flex-end;
|
|
gap: 10px;
|
|
}
|
|
|
|
.invite-trace-scope {
|
|
display: grid;
|
|
gap: 6px;
|
|
min-width: 190px;
|
|
}
|
|
|
|
.invite-trace-scope > span {
|
|
color: #9ea7b6;
|
|
font-size: 0.76rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.invite-trace-view-toggle {
|
|
display: inline-flex;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.invite-trace-view-toggle button {
|
|
min-width: 90px;
|
|
border: 0;
|
|
border-right: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 0;
|
|
background: transparent;
|
|
color: #aeb7c4;
|
|
padding: 7px 12px;
|
|
}
|
|
|
|
.invite-trace-view-toggle button:last-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
.invite-trace-view-toggle button.is-active {
|
|
background: rgba(111, 148, 224, 0.22);
|
|
color: #eef3fb;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.invite-trace-map {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.invite-trace-graph {
|
|
display: grid;
|
|
grid-auto-flow: column;
|
|
grid-auto-columns: minmax(260px, 1fr);
|
|
align-items: start;
|
|
gap: 10px;
|
|
overflow-x: auto;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.invite-trace-column {
|
|
display: grid;
|
|
gap: 8px;
|
|
align-content: start;
|
|
min-width: 260px;
|
|
}
|
|
|
|
.invite-trace-column-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
border-radius: 5px;
|
|
color: #b5c0d2;
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.invite-trace-column-header strong {
|
|
color: #edf2f8;
|
|
font-size: 0.86rem;
|
|
}
|
|
|
|
.invite-trace-column-body {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.invite-trace-node {
|
|
display: grid;
|
|
gap: 8px;
|
|
padding: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.018);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.invite-trace-node-main {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.invite-trace-node-title {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.invite-trace-node-arrow {
|
|
margin: 0;
|
|
color: #c4cfdd;
|
|
font-size: 0.82rem;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.invite-trace-node-arrow.is-root {
|
|
color: #95a2b5;
|
|
}
|
|
|
|
.invite-trace-node-meta {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 6px;
|
|
}
|
|
|
|
.invite-trace-node-meta-item {
|
|
display: grid;
|
|
gap: 2px;
|
|
align-content: start;
|
|
min-height: 44px;
|
|
padding: 6px 8px;
|
|
border: 1px solid rgba(255, 255, 255, 0.04);
|
|
background: rgba(255, 255, 255, 0.01);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.invite-trace-node-meta-item .label {
|
|
color: #8f9aac;
|
|
font-size: 0.72rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.invite-trace-node-meta-item strong {
|
|
color: #e7edf6;
|
|
font-size: 0.81rem;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.invite-trace-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
|
|
gap: 10px 12px;
|
|
align-items: start;
|
|
padding: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.invite-trace-row-main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-height: 28px;
|
|
}
|
|
|
|
.invite-trace-branch {
|
|
width: 12px;
|
|
height: 1px;
|
|
background: rgba(138, 163, 196, 0.55);
|
|
position: relative;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.invite-trace-branch::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: -8px;
|
|
top: -7px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-left: 1px solid rgba(138, 163, 196, 0.38);
|
|
border-bottom: 1px solid rgba(138, 163, 196, 0.38);
|
|
}
|
|
|
|
.invite-trace-user {
|
|
color: #edf2f8;
|
|
font-weight: 700;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.invite-trace-row-meta {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.invite-trace-meta-item {
|
|
display: grid;
|
|
gap: 3px;
|
|
align-content: start;
|
|
padding: 6px 8px;
|
|
border: 1px solid rgba(255, 255, 255, 0.04);
|
|
background: rgba(255, 255, 255, 0.01);
|
|
border-radius: 5px;
|
|
min-height: 48px;
|
|
}
|
|
|
|
.invite-trace-meta-item .label {
|
|
color: #8f9aac;
|
|
font-size: 0.72rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.invite-trace-meta-item strong {
|
|
color: #e7edf6;
|
|
font-size: 0.82rem;
|
|
word-break: break-word;
|
|
}
|
|
|
|
@media (max-width: 1180px) {
|
|
.invite-trace-toolbar {
|
|
grid-template-columns: 1fr;
|
|
grid-template-areas:
|
|
'filter'
|
|
'controls'
|
|
'summary';
|
|
align-items: stretch;
|
|
}
|
|
|
|
.invite-trace-controls {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.invite-trace-summary {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.invite-trace-graph {
|
|
grid-auto-flow: row;
|
|
grid-auto-columns: 1fr;
|
|
}
|
|
|
|
.invite-trace-column {
|
|
min-width: 0;
|
|
}
|
|
|
|
.invite-trace-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-trace-row-meta {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.invite-trace-node-meta {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.invite-trace-row-meta {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Profile self-service invite management */
|
|
.profile-tabbar {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.profile-tab-panel {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.profile-security-form {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.profile-quick-link-card {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: start;
|
|
gap: 14px;
|
|
padding: 12px;
|
|
margin-bottom: 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.018);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.profile-quick-link-card h2 {
|
|
margin: 0 0 4px;
|
|
}
|
|
|
|
.profile-quick-link-card .lede {
|
|
margin: 0;
|
|
}
|
|
|
|
.profile-invites-section {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.profile-invites-layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
|
|
.profile-invites-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.profile-invite-form-card {
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.018);
|
|
border-radius: 6px;
|
|
padding: 12px;
|
|
display: grid;
|
|
gap: 10px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.profile-invite-form-card h3 {
|
|
font-size: 1rem;
|
|
color: #edf2f8;
|
|
}
|
|
|
|
.profile-invite-form-lede,
|
|
.profile-invite-hint {
|
|
color: #9ea7b6;
|
|
}
|
|
|
|
.profile-invite-hint code {
|
|
color: #d8e2ef;
|
|
}
|
|
|
|
.profile-invite-master-banner code {
|
|
color: #e6eefb;
|
|
}
|
|
|
|
.user-bulk-group-meta {
|
|
display: grid;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.user-bulk-group-meta strong {
|
|
color: #e7edf6;
|
|
}
|
|
|
|
/* Admin system guide */
|
|
.system-guide {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.system-flow-track {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.system-flow-segment {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.system-flow-card {
|
|
display: grid;
|
|
gap: 7px;
|
|
padding: 11px 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.system-flow-card-title {
|
|
color: #edf2f8;
|
|
font-weight: 700;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.system-flow-card-row {
|
|
display: grid;
|
|
grid-template-columns: 86px minmax(0, 1fr);
|
|
gap: 8px;
|
|
align-items: start;
|
|
}
|
|
|
|
.system-flow-card-row span {
|
|
color: #8f9aac;
|
|
font-size: 0.75rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.system-flow-card-row strong {
|
|
color: #dfe8f5;
|
|
font-size: 0.86rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.system-flow-arrow {
|
|
color: #7ea1d8;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
|
|
.system-guide-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.system-guide-card {
|
|
padding: 11px 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 6px;
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.system-guide-card h3 {
|
|
color: #eef3fb;
|
|
font-size: 0.97rem;
|
|
}
|
|
|
|
.system-guide-card p {
|
|
color: #a7b2c2;
|
|
margin: 0;
|
|
}
|
|
|
|
.system-decision-list {
|
|
list-style: none;
|
|
margin: 8px 0 0;
|
|
padding: 0;
|
|
display: grid;
|
|
gap: 7px;
|
|
}
|
|
|
|
.system-decision-list li {
|
|
padding: 9px 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.015);
|
|
border-radius: 6px;
|
|
color: #d3dce9;
|
|
}
|
|
|
|
.system-decision-list li span {
|
|
color: #7ea1d8;
|
|
font-weight: 700;
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.system-decision-list li strong {
|
|
color: #eff5ff;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.profile-quick-link-card {
|
|
display: grid;
|
|
}
|
|
|
|
.profile-invites-layout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.admin-grid label.field-span-full {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
/* Admin shell right rail */
|
|
.admin-shell {
|
|
grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(300px, 380px);
|
|
gap: 22px;
|
|
align-items: start;
|
|
}
|
|
|
|
.admin-shell-nav {
|
|
grid-column: 1;
|
|
}
|
|
|
|
.admin-card {
|
|
grid-column: 2;
|
|
min-width: 0;
|
|
}
|
|
|
|
.admin-shell-rail {
|
|
grid-column: 3;
|
|
position: sticky;
|
|
top: 20px;
|
|
align-self: start;
|
|
display: grid;
|
|
gap: 10px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.admin-rail-stack {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.admin-rail-card {
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.016);
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
display: grid;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.admin-rail-card h2 {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.admin-rail-card p {
|
|
margin: 0;
|
|
color: #9ba5b5;
|
|
}
|
|
|
|
.admin-rail-eyebrow {
|
|
font-size: 0.72rem;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: #9ba5b5;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.admin-shell-rail .invite-admin-summary-row {
|
|
grid-template-columns: 1fr;
|
|
align-items: start;
|
|
}
|
|
|
|
.admin-shell-rail .invite-admin-summary-row__value {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.cache-rail-card {
|
|
gap: 10px;
|
|
}
|
|
|
|
.cache-rail-metrics {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.cache-rail-metric {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.012);
|
|
padding: 8px 10px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.cache-rail-metric span {
|
|
color: #9aa4b4;
|
|
font-size: 0.78rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.cache-rail-metric strong {
|
|
color: #eef3f9;
|
|
font-size: 0.92rem;
|
|
text-align: right;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.cache-rail-limit {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.cache-rail-limit > span {
|
|
color: #9aa4b4;
|
|
font-size: 0.78rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
/* Users page streamline pass */
|
|
.users-page-toolbar {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.users-page-toolbar-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.users-page-toolbar-group {
|
|
display: grid;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
padding: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.016);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.users-page-toolbar-label {
|
|
font-size: 0.72rem;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: #9ba5b5;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.users-page-toolbar-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.users-page-toolbar-actions button {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.users-page-overview-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
|
|
gap: 12px;
|
|
margin: 12px 0;
|
|
align-items: start;
|
|
}
|
|
|
|
.users-summary-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.users-rail-summary .users-summary-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.users-summary-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.users-summary-card {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 4px;
|
|
padding: 10px 12px;
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
background: rgba(255, 255, 255, 0.014);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.users-summary-row {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.users-summary-label {
|
|
color: #a9b3c2;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.users-summary-value {
|
|
color: #edf3fb;
|
|
font-size: 1.12rem;
|
|
line-height: 1;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.users-summary-meta {
|
|
margin: 0;
|
|
color: #98a3b4;
|
|
font-size: 0.78rem;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.user-directory-search-panel {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.user-directory-bulk-panel .user-bulk-toolbar {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
align-items: stretch;
|
|
gap: 10px;
|
|
}
|
|
|
|
.user-directory-bulk-panel .user-bulk-summary {
|
|
display: grid;
|
|
gap: 4px;
|
|
align-content: start;
|
|
min-width: 0;
|
|
}
|
|
|
|
.user-directory-bulk-panel .user-bulk-summary strong {
|
|
line-height: 1.32;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.user-directory-bulk-panel .user-bulk-actions {
|
|
align-self: start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.user-directory-bulk-panel .user-bulk-actions button {
|
|
min-width: 190px;
|
|
}
|
|
|
|
@media (max-width: 1400px) {
|
|
.admin-shell {
|
|
grid-template-columns: minmax(210px, 250px) minmax(0, 1fr) minmax(270px, 320px);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.admin-shell {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-shell-nav,
|
|
.admin-card,
|
|
.admin-shell-rail {
|
|
grid-column: 1;
|
|
}
|
|
|
|
.users-page-toolbar-grid,
|
|
.users-summary-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.users-page-toolbar-actions button {
|
|
flex: 1 1 220px;
|
|
}
|
|
|
|
.user-directory-bulk-panel .user-bulk-actions {
|
|
width: 100%;
|
|
}
|
|
|
|
.user-directory-bulk-panel .user-bulk-actions button {
|
|
width: 100%;
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
/* Final header account menu stacking override (must be last) */
|
|
.page,
|
|
.header,
|
|
.header-left,
|
|
.header-right,
|
|
.header-nav,
|
|
.header-actions,
|
|
.signed-in-menu {
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.header {
|
|
position: relative !important;
|
|
isolation: isolate;
|
|
z-index: 20 !important;
|
|
}
|
|
|
|
.header-nav,
|
|
.header-actions {
|
|
position: relative;
|
|
z-index: 1 !important;
|
|
}
|
|
|
|
.header-actions a,
|
|
.header-actions .header-link {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.header-right {
|
|
position: relative !important;
|
|
z-index: 4000 !important;
|
|
}
|
|
|
|
.signed-in-menu {
|
|
position: relative !important;
|
|
z-index: 4500 !important;
|
|
}
|
|
|
|
.signed-in-dropdown {
|
|
position: absolute !important;
|
|
z-index: 5000 !important;
|
|
}
|
|
|
|
/* Final width scaling */
|
|
.page {
|
|
width: min(1680px, calc(100vw - 32px));
|
|
max-width: 1680px;
|
|
padding-inline: 16px;
|
|
}
|
|
|
|
@media (max-width: 1280px) {
|
|
.page {
|
|
width: min(1480px, calc(100vw - 24px));
|
|
max-width: 1480px;
|
|
padding-inline: 12px;
|
|
}
|
|
|
|
.admin-shell {
|
|
grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
|
|
}
|
|
|
|
.admin-shell-rail {
|
|
grid-column: 2;
|
|
position: static;
|
|
top: auto;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.page {
|
|
width: min(100%, calc(100vw - 12px));
|
|
max-width: none;
|
|
padding-inline: 6px;
|
|
}
|
|
|
|
.admin-shell {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-shell-nav,
|
|
.admin-card,
|
|
.admin-shell-rail {
|
|
grid-column: 1;
|
|
}
|
|
}
|
|
|
|
.diagnostics-page {
|
|
display: grid;
|
|
gap: 1.25rem;
|
|
}
|
|
|
|
.diagnostics-header-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.diagnostics-control-panel {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.diagnostics-control-copy {
|
|
max-width: 52rem;
|
|
}
|
|
|
|
.diagnostics-control-actions {
|
|
display: flex;
|
|
align-items: end;
|
|
gap: 0.75rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.diagnostics-email-recipient {
|
|
display: grid;
|
|
gap: 0.35rem;
|
|
min-width: min(100%, 20rem);
|
|
flex: 1 1 20rem;
|
|
}
|
|
|
|
.diagnostics-email-recipient span {
|
|
color: var(--ink-muted);
|
|
font-size: 0.76rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.diagnostics-inline-summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
|
|
gap: 0.85rem;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.diagnostics-inline-metric {
|
|
display: grid;
|
|
gap: 0.2rem;
|
|
min-width: 0;
|
|
padding: 0.85rem 0.95rem;
|
|
border-radius: 0.85rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.diagnostics-inline-metric span {
|
|
color: var(--ink-muted);
|
|
font-size: 0.76rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.diagnostics-inline-metric strong {
|
|
font-size: 1rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.diagnostics-inline-last-run {
|
|
grid-column: 1 / -1;
|
|
color: var(--ink-muted);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.diagnostics-control-actions .is-active {
|
|
border-color: rgba(92, 141, 255, 0.44);
|
|
background: rgba(92, 141, 255, 0.12);
|
|
}
|
|
|
|
.diagnostics-error {
|
|
color: #ffb4b4;
|
|
border-color: rgba(255, 118, 118, 0.32);
|
|
background: rgba(96, 20, 20, 0.28);
|
|
}
|
|
|
|
.diagnostics-category-panel {
|
|
display: grid;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.diagnostics-category-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.diagnostics-category-header h2 {
|
|
margin: 0 0 0.35rem;
|
|
}
|
|
|
|
.diagnostics-category-header p {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.diagnostics-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.diagnostic-card {
|
|
display: grid;
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
border-radius: 1rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
|
|
rgba(8, 12, 20, 0.82);
|
|
}
|
|
|
|
.diagnostic-card-up {
|
|
border-color: rgba(78, 201, 140, 0.28);
|
|
}
|
|
|
|
.diagnostic-card-down {
|
|
border-color: rgba(255, 116, 116, 0.26);
|
|
}
|
|
|
|
.diagnostic-card-degraded {
|
|
border-color: rgba(255, 194, 99, 0.24);
|
|
}
|
|
|
|
.diagnostic-card-disabled,
|
|
.diagnostic-card-not_configured {
|
|
border-color: rgba(161, 173, 192, 0.2);
|
|
}
|
|
|
|
.diagnostic-card-top {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.diagnostic-card-copy {
|
|
display: grid;
|
|
gap: 0.45rem;
|
|
}
|
|
|
|
.diagnostic-card-title-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.6rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.diagnostic-card-title-row h3 {
|
|
margin: 0;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.diagnostic-card-copy p {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.diagnostic-meta-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.diagnostic-meta-item {
|
|
display: grid;
|
|
gap: 0.2rem;
|
|
min-width: 0;
|
|
padding: 0.75rem;
|
|
border-radius: 0.85rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.diagnostic-meta-item span {
|
|
font-size: 0.78rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.diagnostic-meta-item strong {
|
|
font-size: 0.95rem;
|
|
line-height: 1.35;
|
|
overflow-wrap: anywhere;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.diagnostic-message {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.7rem;
|
|
min-height: 2.8rem;
|
|
padding: 0.8rem 0.95rem;
|
|
border-radius: 0.9rem;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.diagnostic-message-up {
|
|
background: rgba(40, 95, 66, 0.22);
|
|
}
|
|
|
|
.diagnostic-message-down {
|
|
background: rgba(105, 33, 33, 0.24);
|
|
}
|
|
|
|
.diagnostic-message-degraded {
|
|
background: rgba(115, 82, 27, 0.2);
|
|
}
|
|
|
|
.diagnostic-message-disabled,
|
|
.diagnostic-message-not_configured,
|
|
.diagnostic-message-idle {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.diagnostics-rail-metrics {
|
|
display: grid;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.diagnostics-rail-metric {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.diagnostics-rail-metric span {
|
|
color: var(--muted);
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.diagnostics-rail-metric strong {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.diagnostics-rail-status {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.diagnostics-rail-last-run {
|
|
margin: 0.85rem 0 0;
|
|
}
|
|
|
|
.small-pill.is-positive {
|
|
border-color: rgba(78, 201, 140, 0.34);
|
|
color: rgba(206, 255, 227, 0.92);
|
|
background: rgba(31, 92, 62, 0.22);
|
|
}
|
|
|
|
.system-pill-idle,
|
|
.system-pill-not_configured,
|
|
.system-pill-disabled {
|
|
color: rgba(224, 230, 239, 0.84);
|
|
background: rgba(129, 141, 158, 0.18);
|
|
border-color: rgba(129, 141, 158, 0.26);
|
|
}
|
|
|
|
.system-disabled .system-dot {
|
|
background: rgba(151, 164, 184, 0.76);
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.diagnostics-control-panel,
|
|
.diagnostic-card-top,
|
|
.diagnostics-category-header {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.settings-section-actions {
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.settings-section-actions > * {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.diagnostic-meta-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Final responsive admin shell stabilization */
|
|
.admin-shell,
|
|
.admin-shell-nav,
|
|
.admin-card,
|
|
.admin-shell-rail,
|
|
.admin-sidebar,
|
|
.admin-panel {
|
|
min-width: 0;
|
|
}
|
|
|
|
@media (max-width: 1280px) {
|
|
.admin-shell {
|
|
grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
|
|
grid-template-areas:
|
|
"nav main"
|
|
"nav rail";
|
|
align-items: start;
|
|
}
|
|
|
|
.admin-shell-nav {
|
|
grid-area: nav;
|
|
}
|
|
|
|
.admin-card {
|
|
grid-area: main;
|
|
grid-column: auto;
|
|
}
|
|
|
|
.admin-shell-rail {
|
|
grid-area: rail;
|
|
grid-column: auto;
|
|
position: static;
|
|
top: auto;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1080px) {
|
|
.page {
|
|
width: min(100%, calc(100vw - 12px));
|
|
max-width: none;
|
|
padding-inline: 6px;
|
|
}
|
|
|
|
.card,
|
|
.admin-card {
|
|
padding: 20px;
|
|
}
|
|
|
|
.admin-shell {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
grid-template-areas:
|
|
"nav"
|
|
"main"
|
|
"rail";
|
|
gap: 16px;
|
|
}
|
|
|
|
.admin-shell-nav,
|
|
.admin-card,
|
|
.admin-shell-rail {
|
|
grid-column: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.admin-shell-nav {
|
|
position: static;
|
|
top: auto;
|
|
}
|
|
|
|
.admin-sidebar,
|
|
.admin-rail-stack,
|
|
.admin-rail-card,
|
|
.maintenance-layout,
|
|
.maintenance-tools-panel,
|
|
.cache-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.admin-grid,
|
|
.users-page-toolbar-grid,
|
|
.users-summary-grid,
|
|
.users-page-overview-grid,
|
|
.maintenance-action-grid,
|
|
.schedule-grid,
|
|
.diagnostics-inline-summary,
|
|
.diagnostics-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.settings-nav,
|
|
.settings-links {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.settings-group {
|
|
min-width: 0;
|
|
}
|
|
|
|
.settings-links a {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.settings-section-actions,
|
|
.diagnostics-control-panel,
|
|
.diagnostics-control-actions,
|
|
.log-actions {
|
|
display: grid;
|
|
width: 100%;
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.settings-section-actions > *,
|
|
.diagnostics-control-actions > *,
|
|
.log-actions > * {
|
|
width: 100%;
|
|
}
|
|
|
|
.sync-meta,
|
|
.diagnostic-card-top,
|
|
.diagnostics-category-header,
|
|
.users-summary-row {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.cache-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.cache-row span {
|
|
white-space: normal;
|
|
overflow: visible;
|
|
text-overflow: clip;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
}
|