|
|
|
|
@ -41,12 +41,13 @@ body {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-shell {
|
|
|
|
|
width: min(1320px, 96vw);
|
|
|
|
|
margin: 20px auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 12px 12px 18px;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 300px 1fr;
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
align-items: start;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
@ -72,6 +73,7 @@ body {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(
|
|
|
|
|
120deg,
|
|
|
|
|
@ -84,6 +86,11 @@ body {
|
|
|
|
|
animation: sheen 6.6s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card > * {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
border-color: color-mix(in oklab, var(--accent), #ffffff 76%);
|
|
|
|
|
@ -93,13 +100,25 @@ body {
|
|
|
|
|
.side-nav {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 12px;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
max-height: calc(100dvh - 24px);
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
overscroll-behavior: contain;
|
|
|
|
|
z-index: 5;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
scrollbar-gutter: stable;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.brand-block {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.kicker {
|
|
|
|
|
@ -120,6 +139,8 @@ body {
|
|
|
|
|
.content-area {
|
|
|
|
|
display: grid;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
width: min(1800px, 100%);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
|
@ -131,6 +152,13 @@ body {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
width: min(1500px, 100%);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero {
|
|
|
|
|
text-align: center;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero h2 {
|
|
|
|
|
@ -146,6 +174,10 @@ body {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero-actions {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
background: #fff;
|
|
|
|
|
@ -179,43 +211,73 @@ body {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-wrap {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-toggle {
|
|
|
|
|
width: 100%;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
min-width: 158px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-list {
|
|
|
|
|
display: none;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
width: min(1380px, 100%);
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
position: static;
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.94);
|
|
|
|
|
background: rgba(255, 255, 255, 0.86);
|
|
|
|
|
box-shadow:
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.7),
|
|
|
|
|
0 8px 24px rgba(21, 37, 73, 0.08);
|
|
|
|
|
padding: 6px;
|
|
|
|
|
max-height: min(48dvh, 440px);
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
max-height: 84px;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
overscroll-behavior: contain;
|
|
|
|
|
transform-origin: top center;
|
|
|
|
|
animation: menuIn var(--anim-mid) ease both;
|
|
|
|
|
transition:
|
|
|
|
|
max-height var(--anim-mid) ease,
|
|
|
|
|
opacity var(--anim-fast) ease,
|
|
|
|
|
transform var(--anim-mid) ease,
|
|
|
|
|
padding var(--anim-fast) ease,
|
|
|
|
|
border-color var(--anim-fast) ease;
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-list-open {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 5px;
|
|
|
|
|
.side-nav.menu-collapsed .menu-list {
|
|
|
|
|
max-height: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(-12px);
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-item {
|
|
|
|
|
flex: 1 1 0;
|
|
|
|
|
min-width: 136px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background: #f9fbff;
|
|
|
|
|
background: #fbfcff;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
border-radius: 9px;
|
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
transition:
|
|
|
|
|
@ -225,7 +287,7 @@ body {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-item:hover {
|
|
|
|
|
transform: translateX(4px);
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
border-color: color-mix(in oklab, var(--accent), #ffffff 70%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -235,36 +297,59 @@ body {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.side-meta {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timezone-picker {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 7px;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
color: #3d4f70;
|
|
|
|
|
min-width: 240px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timezone-picker select {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 9px;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
background: rgba(236, 244, 255, 0.72);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 6px 12px 6px 30px;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 12px;
|
|
|
|
|
top: 50%;
|
|
|
|
|
position: static;
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
flex: 0 0 8px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: var(--success);
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
opacity: 0.78;
|
|
|
|
|
animation: badgePulse 1.9s ease-in-out infinite;
|
|
|
|
|
order: -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge-meta {
|
|
|
|
|
@ -277,10 +362,565 @@ body {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.result-box {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
|
|
|
gap: 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: min(960px, 100%);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Overview panel: force vertical flow for key info blocks. */
|
|
|
|
|
#section-overview .result-box {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
width: min(560px, 100%);
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.overview-metrics {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#section-overview .overview-metrics {
|
|
|
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
|
|
|
width: min(1200px, 100%);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.metric-tile {
|
|
|
|
|
border: 1px solid color-mix(in oklab, var(--line), #ffffff 32%);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.84));
|
|
|
|
|
padding: 12px 10px;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.metric-title {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
color: #4a5e81;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.metric-value {
|
|
|
|
|
font-size: 1.08rem;
|
|
|
|
|
color: #1d3258;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
gap: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-block {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.52);
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-card {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 11px;
|
|
|
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.78));
|
|
|
|
|
padding: 10px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
transition:
|
|
|
|
|
transform var(--anim-fast) ease,
|
|
|
|
|
box-shadow var(--anim-fast) ease,
|
|
|
|
|
border-color var(--anim-fast) ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-card:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
border-color: color-mix(in oklab, var(--accent), #ffffff 62%);
|
|
|
|
|
box-shadow: 0 10px 22px rgba(21, 45, 92, 0.12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-card-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-card-head h4 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-meta-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
font-size: 0.86rem;
|
|
|
|
|
color: #2f3f5a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-chip-row {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-chip {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
padding: 4px 9px;
|
|
|
|
|
font-size: 0.77rem;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
background: #f2f6ff;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-chip-neutral,
|
|
|
|
|
.io-status-na {
|
|
|
|
|
background: #f2f6ff;
|
|
|
|
|
color: #345188;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-status-ok {
|
|
|
|
|
background: #e7f8f0;
|
|
|
|
|
color: #12795f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-status-error {
|
|
|
|
|
background: #ffe9e9;
|
|
|
|
|
color: #ae3131;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-status-partial,
|
|
|
|
|
.io-status-skipped {
|
|
|
|
|
background: #fff3dd;
|
|
|
|
|
color: #a36404;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-status-disabled {
|
|
|
|
|
background: #efeff3;
|
|
|
|
|
color: #656976;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-status-warm {
|
|
|
|
|
background: #fff4de;
|
|
|
|
|
color: #9b6611;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-empty {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border: 1px dashed var(--line);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
background: rgba(255, 255, 255, 0.55);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-mini-wrap {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-mini-table th,
|
|
|
|
|
.io-mini-table td {
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
padding: 7px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-history-title {
|
|
|
|
|
margin: 14px 0 10px;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
letter-spacing: 0.02em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-card {
|
|
|
|
|
background: rgba(252, 254, 255, 0.92);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-actions {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-grid-compact {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-panel {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background: linear-gradient(170deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.74));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-panel-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-panel-head h4 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 0.92rem;
|
|
|
|
|
letter-spacing: 0.02em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-card-compact {
|
|
|
|
|
padding: 9px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-top {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-name-wrap {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-name-wrap h4 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-sub {
|
|
|
|
|
font-size: 0.74rem;
|
|
|
|
|
color: #5a6e92;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.06em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-badges {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-error {
|
|
|
|
|
margin-top: 7px;
|
|
|
|
|
border: 1px solid rgba(206, 70, 70, 0.35);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: rgba(255, 238, 238, 0.82);
|
|
|
|
|
color: #9f2c2c;
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
font-size: 0.79rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-compact {
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-dashboard {
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 255, 0.84)),
|
|
|
|
|
radial-gradient(circle at 100% 0%, rgba(36, 107, 255, 0.14), transparent 55%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-kpis {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin: 12px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.kpi-card {
|
|
|
|
|
border: 1px solid color-mix(in oklab, var(--line), #ffffff 35%);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 255, 0.9));
|
|
|
|
|
padding: 10px;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 3px;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
animation: rise 420ms ease both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.kpi-title {
|
|
|
|
|
color: #4b5c7a;
|
|
|
|
|
font-size: 0.76rem;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.kpi-value {
|
|
|
|
|
font-size: 1.06rem;
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
color: #1f3358;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin: 8px 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar label {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
color: #3d4f70;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar select {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 9px;
|
|
|
|
|
padding: 7px 10px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
min-width: 180px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar input[type="datetime-local"] {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 9px;
|
|
|
|
|
padding: 7px 10px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
min-width: 210px;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar-right {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-pager {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#history-page-info {
|
|
|
|
|
min-width: 180px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-insights {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.insight-panel {
|
|
|
|
|
border: 1px solid color-mix(in oklab, var(--line), #ffffff 30%);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.84));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.insight-panel h3 {
|
|
|
|
|
margin: 0 0 8px;
|
|
|
|
|
font-size: 0.94rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-feed {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
max-height: 250px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feed-item {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.85);
|
|
|
|
|
padding: 8px 9px;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feed-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feed-time {
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
color: #4f607c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feed-body {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
color: #233a62;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-monitor {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.monitor-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border-bottom: 1px dashed color-mix(in oklab, var(--line), #ffffff 25%);
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.monitor-row b {
|
|
|
|
|
color: #1a345e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.metric-track {
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 9px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid color-mix(in oklab, var(--line), #ffffff 26%);
|
|
|
|
|
background: rgba(220, 230, 249, 0.72);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.metric-track > span {
|
|
|
|
|
display: block;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-radius: inherit;
|
|
|
|
|
background: linear-gradient(90deg, #31be97, #2476ff);
|
|
|
|
|
transition: width var(--anim-mid) ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-table-wrap {
|
|
|
|
|
max-height: min(52dvh, 560px);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-table-wrap thead th {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
backdrop-filter: blur(3px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-table-wrap tbody tr:nth-child(odd) {
|
|
|
|
|
background: rgba(247, 251, 255, 0.6);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-table-wrap td:nth-child(3),
|
|
|
|
|
.history-table-wrap td:nth-child(4) {
|
|
|
|
|
text-align: left;
|
|
|
|
|
min-width: 290px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-cell-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-cell-line {
|
|
|
|
|
padding: 4px 6px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid color-mix(in oklab, var(--line), #ffffff 24%);
|
|
|
|
|
background: rgba(255, 255, 255, 0.76);
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-table-wrap td:first-child {
|
|
|
|
|
min-width: 160px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-table-wrap tbody tr {
|
|
|
|
|
animation: rowEnter var(--anim-mid) ease both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toast-container {
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 16px;
|
|
|
|
|
bottom: 16px;
|
|
|
|
|
z-index: 50;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
max-width: min(92vw, 360px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toast {
|
|
|
|
|
border: 1px solid var(--line);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.96);
|
|
|
|
|
box-shadow: 0 10px 24px rgba(24, 38, 66, 0.14);
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
color: #203252;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(10px);
|
|
|
|
|
transition: opacity var(--anim-fast) ease, transform var(--anim-fast) ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toast-show {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toast-success {
|
|
|
|
|
border-color: rgba(20, 163, 127, 0.4);
|
|
|
|
|
background: rgba(233, 250, 244, 0.98);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toast-error {
|
|
|
|
|
border-color: rgba(208, 71, 71, 0.4);
|
|
|
|
|
background: rgba(255, 239, 239, 0.98);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel > .card > h2,
|
|
|
|
|
.servers-title,
|
|
|
|
|
.server-grid label,
|
|
|
|
|
.server-actions-row,
|
|
|
|
|
.editor-actions {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.server-actions-row,
|
|
|
|
|
.editor-actions {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.muted {
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
@ -307,7 +947,7 @@ table {
|
|
|
|
|
|
|
|
|
|
th,
|
|
|
|
|
td {
|
|
|
|
|
text-align: left;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 9px 10px;
|
|
|
|
|
border-bottom: 1px solid var(--line);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
@ -372,6 +1012,7 @@ tbody tr:hover {
|
|
|
|
|
|
|
|
|
|
.server-grid label {
|
|
|
|
|
display: grid;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
color: #34425c;
|
|
|
|
|
@ -385,6 +1026,7 @@ tbody tr:hover {
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
transition: border-color var(--anim-fast) ease, box-shadow var(--anim-fast) ease;
|
|
|
|
|
}
|
|
|
|
|
@ -495,28 +1137,61 @@ tbody tr:hover {
|
|
|
|
|
@keyframes badgePulse {
|
|
|
|
|
0%,
|
|
|
|
|
100% {
|
|
|
|
|
transform: translateY(-50%) scale(1);
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
opacity: 0.68;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
transform: translateY(-50%) scale(1.4);
|
|
|
|
|
transform: scale(1.35);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1040px) {
|
|
|
|
|
.app-shell {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1180px) {
|
|
|
|
|
.side-nav {
|
|
|
|
|
position: static;
|
|
|
|
|
max-height: none;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-head {
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-toggle {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.side-meta {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timezone-picker {
|
|
|
|
|
min-width: 220px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-kpis {
|
|
|
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.overview-metrics {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#section-overview .overview-metrics {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-insights {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 760px) {
|
|
|
|
|
.app-shell {
|
|
|
|
|
padding: 8px 8px 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.server-grid {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
@ -524,6 +1199,80 @@ tbody tr:hover {
|
|
|
|
|
.card {
|
|
|
|
|
padding: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-item {
|
|
|
|
|
padding: 7px 10px;
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-grid {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-grid-compact {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-top {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-badges {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.io-control-actions .btn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-kpis {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.overview-metrics {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#section-overview .overview-metrics {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timezone-picker {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar label,
|
|
|
|
|
.history-toolbar select,
|
|
|
|
|
.history-toolbar input[type="datetime-local"],
|
|
|
|
|
.history-toolbar .btn,
|
|
|
|
|
.history-toolbar-right {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-toolbar-right {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
justify-content: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-pager {
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#history-page-info {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-table-wrap td:nth-child(3),
|
|
|
|
|
.history-table-wrap td:nth-child(4) {
|
|
|
|
|
min-width: 240px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
|
|