2026-07-17 04:00:38 +02:00
|
|
|
:root {
|
|
|
|
|
--bg: #050b14;
|
|
|
|
|
--bg-deep: #02060c;
|
|
|
|
|
--panel: rgba(8, 18, 32, 0.92);
|
|
|
|
|
--panel-border: rgba(0, 168, 232, 0.22);
|
|
|
|
|
--dell: #0076ce;
|
|
|
|
|
--dell-bright: #00a8e8;
|
|
|
|
|
--cyan: #3dffe0;
|
|
|
|
|
--amber: #ffb020;
|
|
|
|
|
--red: #ff5c5c;
|
|
|
|
|
--green: #3dffa0;
|
|
|
|
|
--text: #e8f4ff;
|
|
|
|
|
--muted: #7a93a8;
|
|
|
|
|
--mono: "IBM Plex Mono", ui-monospace, monospace;
|
|
|
|
|
--sans: "IBM Plex Sans", system-ui, sans-serif;
|
|
|
|
|
--rail-w: 280px;
|
|
|
|
|
--top-h: auto;
|
|
|
|
|
--tick-h: 36px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
|
html, body { height: 100%; margin: 0; background: var(--bg-deep); color: var(--text); font-family: var(--sans); }
|
|
|
|
|
button, input { font: inherit; color: inherit; }
|
|
|
|
|
button { cursor: pointer; }
|
|
|
|
|
.hidden { display: none !important; }
|
|
|
|
|
|
|
|
|
|
#app {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: var(--rail-w) 1fr var(--rail-w);
|
|
|
|
|
grid-template-rows: auto 1fr auto;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 118, 206, 0.12), transparent 60%),
|
|
|
|
|
var(--bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topbar {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.65rem 1rem;
|
|
|
|
|
padding: 0.55rem 1rem;
|
|
|
|
|
min-height: 64px;
|
|
|
|
|
border-bottom: 1px solid var(--panel-border);
|
|
|
|
|
background: linear-gradient(180deg, rgba(0, 40, 70, 0.55), rgba(5, 11, 20, 0.9));
|
|
|
|
|
z-index: 5;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.brand {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
min-width: 260px;
|
|
|
|
|
}
|
|
|
|
|
.brand:hover .dell-logo { filter: brightness(1.15); }
|
|
|
|
|
.dell-logo {
|
|
|
|
|
display: block;
|
|
|
|
|
height: 44px;
|
|
|
|
|
width: 44px;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
.drawer-brand img {
|
|
|
|
|
height: 28px !important;
|
|
|
|
|
width: 28px !important;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
|
|
|
|
.inspector-empty .ghost-logo {
|
|
|
|
|
width: 64px !important;
|
|
|
|
|
height: 64px !important;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
opacity: 0.35;
|
|
|
|
|
}
|
|
|
|
|
.brand-text h1 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 1.05rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: 0.02em;
|
|
|
|
|
}
|
|
|
|
|
.brand-text h1 span { color: var(--dell-bright); font-weight: 700; }
|
|
|
|
|
.brand-text p {
|
|
|
|
|
margin: 0.1rem 0 0;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.kpi-strip {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
padding: 0.35rem 0;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-content: center;
|
|
|
|
|
}
|
|
|
|
|
.kpi {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background: rgba(0, 118, 206, 0.12);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.28rem 0.55rem;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
flex: 0 1 auto;
|
|
|
|
|
text-align: left;
|
|
|
|
|
transition: border-color 0.15s, background 0.15s, transform 0.15s;
|
|
|
|
|
}
|
|
|
|
|
.kpi:hover { border-color: var(--dell-bright); background: rgba(0, 168, 232, 0.18); transform: translateY(-1px); }
|
|
|
|
|
.kpi.active { border-color: var(--cyan); box-shadow: 0 0 0 1px rgba(61, 255, 224, 0.25); }
|
|
|
|
|
.kpi .v {
|
|
|
|
|
display: block;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.kpi .l {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.58rem;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
margin-top: 0.08rem;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.kpi.warn .v { color: var(--amber); }
|
|
|
|
|
.kpi.danger .v { color: var(--red); }
|
|
|
|
|
.kpi.power .v { color: #7ec8ff; }
|
|
|
|
|
|
|
|
|
|
.top-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
|
|
|
|
|
.btn {
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(8, 22, 40, 0.8);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.45rem 0.8rem;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
.btn:hover { border-color: var(--dell-bright); color: #fff; }
|
|
|
|
|
.btn.primary {
|
|
|
|
|
background: linear-gradient(135deg, var(--dell), #005a9e);
|
|
|
|
|
border-color: #0a8ad8;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.btn.primary:hover { filter: brightness(1.08); }
|
|
|
|
|
.btn.ghost { background: transparent; }
|
|
|
|
|
|
|
|
|
|
.rail {
|
|
|
|
|
background: var(--panel);
|
|
|
|
|
border-right: 1px solid var(--panel-border);
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: rgba(0,168,232,0.35) transparent;
|
|
|
|
|
}
|
|
|
|
|
.rail .list {
|
|
|
|
|
max-height: none;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
.rail.right {
|
|
|
|
|
border-right: none;
|
|
|
|
|
border-left: 1px solid var(--panel-border);
|
|
|
|
|
}
|
|
|
|
|
.rail-block {
|
|
|
|
|
margin-bottom: 0.45rem;
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.12);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: rgba(0, 24, 44, 0.35);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.rail-toggle {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
padding: 0.55rem 0.65rem;
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
letter-spacing: 0.12em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
.rail-toggle:hover { background: rgba(0, 118, 206, 0.12); color: #fff; }
|
|
|
|
|
.rail-toggle .chev {
|
|
|
|
|
width: 0.45rem;
|
|
|
|
|
height: 0.45rem;
|
|
|
|
|
border-right: 2px solid currentColor;
|
|
|
|
|
border-bottom: 2px solid currentColor;
|
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
|
transition: transform 0.18s ease;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
opacity: 0.85;
|
|
|
|
|
}
|
|
|
|
|
.rail-block.open .rail-toggle .chev {
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
.rail-panel {
|
|
|
|
|
display: none;
|
|
|
|
|
padding: 0 0.65rem 0.7rem;
|
|
|
|
|
}
|
|
|
|
|
.rail-block.open .rail-panel { display: block; }
|
|
|
|
|
.rail-block h2 {
|
|
|
|
|
margin: 0 0 0.2rem;
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
letter-spacing: 0.12em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.hint { margin: 0 0 0.55rem; font-size: 0.72rem; color: var(--muted); line-height: 1.35; }
|
|
|
|
|
|
|
|
|
|
.chip-grid { display: flex; flex-wrap: wrap; gap: 0.35rem; }
|
|
|
|
|
.chip {
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0, 40, 70, 0.4);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 0.28rem 0.65rem;
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.chip:hover { color: var(--text); border-color: var(--dell-bright); }
|
|
|
|
|
.chip.active {
|
|
|
|
|
color: #041018;
|
|
|
|
|
background: var(--cyan);
|
|
|
|
|
border-color: var(--cyan);
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list { display: flex; flex-direction: column; gap: 0.35rem; }
|
|
|
|
|
.card {
|
|
|
|
|
appearance: none;
|
|
|
|
|
text-align: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.15);
|
|
|
|
|
background: rgba(0, 30, 55, 0.45);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.55rem 0.65rem;
|
|
|
|
|
transition: border-color 0.15s, background 0.15s;
|
|
|
|
|
}
|
|
|
|
|
.card:hover { border-color: var(--dell-bright); background: rgba(0, 80, 130, 0.25); }
|
|
|
|
|
.card.active {
|
|
|
|
|
border-color: var(--cyan);
|
|
|
|
|
background: rgba(61, 255, 224, 0.08);
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(61, 255, 224, 0.15);
|
|
|
|
|
}
|
|
|
|
|
.card .t { display: block; font-size: 0.84rem; font-weight: 600; }
|
|
|
|
|
.card .s {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 0.15rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filters { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.6rem; }
|
|
|
|
|
.toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.toggle input { accent-color: var(--dell-bright); }
|
|
|
|
|
.range {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
.range input { width: 100%; accent-color: var(--dell-bright); }
|
|
|
|
|
.range em { color: var(--cyan); font-style: normal; font-family: var(--mono); }
|
|
|
|
|
.search {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0, 20, 40, 0.6);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.45rem 0.6rem;
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
.search:focus { border-color: var(--dell-bright); }
|
|
|
|
|
|
|
|
|
|
.stage {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(circle at 50% 48%, rgba(0, 118, 206, 0.08), transparent 45%),
|
|
|
|
|
repeating-radial-gradient(circle at 50% 48%, transparent 0, transparent 38px, rgba(0, 168, 232, 0.04) 39px, transparent 40px);
|
|
|
|
|
}
|
|
|
|
|
#topo {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
cursor: grab;
|
|
|
|
|
}
|
|
|
|
|
#topo:active { cursor: grabbing; }
|
|
|
|
|
|
|
|
|
|
.stage-hud {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0.75rem;
|
|
|
|
|
right: 0.75rem;
|
|
|
|
|
bottom: 0.6rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
.legend {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.65rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
background: rgba(2, 8, 16, 0.65);
|
|
|
|
|
padding: 0.35rem 0.55rem;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.15);
|
|
|
|
|
}
|
|
|
|
|
.legend span::before {
|
|
|
|
|
content: "";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-right: 0.35rem;
|
|
|
|
|
background: var(--c, var(--muted));
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
.hint-bar {
|
|
|
|
|
font-size: 0.65rem;
|
|
|
|
|
color: rgba(122, 147, 168, 0.85);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inspector-empty, .inspector-body { padding: 0.25rem; }
|
|
|
|
|
.inspector-empty {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-top: 2.5rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.inspector-empty .ghost-logo {
|
|
|
|
|
width: 72px;
|
|
|
|
|
opacity: 0.25;
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.inspector-empty h2 {
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
.inspector-empty p { font-size: 0.8rem; line-height: 1.45; }
|
|
|
|
|
|
|
|
|
|
.insp-head { margin-bottom: 0.85rem; }
|
|
|
|
|
.insp-head h2 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
.insp-head .meta {
|
|
|
|
|
margin: 0.25rem 0 0;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.badge-row { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.55rem 0; }
|
|
|
|
|
.badge {
|
|
|
|
|
font-size: 0.65rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
padding: 0.2rem 0.45rem;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.badge.on { color: var(--green); border-color: rgba(61, 255, 160, 0.4); }
|
|
|
|
|
.badge.off { color: var(--red); border-color: rgba(255, 92, 92, 0.4); }
|
|
|
|
|
.badge.power { color: #7ec8ff; border-color: rgba(126, 200, 255, 0.4); }
|
|
|
|
|
|
|
|
|
|
.kv { display: grid; gap: 0.35rem; margin: 0.6rem 0; }
|
|
|
|
|
.kv-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 96px 1fr;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
padding: 0.3rem 0;
|
|
|
|
|
border-bottom: 1px solid rgba(0, 168, 232, 0.08);
|
|
|
|
|
}
|
|
|
|
|
.kv-row .k { color: var(--muted); }
|
|
|
|
|
.kv-row .v { font-family: var(--mono); word-break: break-all; }
|
|
|
|
|
.kv-row a { color: var(--dell-bright); }
|
|
|
|
|
|
|
|
|
|
.action-stack { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.75rem; }
|
|
|
|
|
.action-stack .btn { width: 100%; text-align: center; }
|
|
|
|
|
|
|
|
|
|
.inv-section { margin-top: 0.9rem; }
|
|
|
|
|
.inv-section h3 {
|
|
|
|
|
margin: 0 0 0.35rem;
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
}
|
|
|
|
|
.inv-line {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
padding: 0.2rem 0;
|
|
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ticker {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.35rem 1rem;
|
|
|
|
|
padding: 0.35rem 1rem;
|
|
|
|
|
border-top: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(2, 8, 16, 0.95);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.ticker button {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
padding: 0;
|
|
|
|
|
font: inherit;
|
|
|
|
|
}
|
|
|
|
|
.ticker button:hover { text-decoration: underline; color: #fff; }
|
|
|
|
|
.ticker .sep { opacity: 0.35; }
|
|
|
|
|
|
|
|
|
|
.drawer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: min(520px, 100vw);
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background: #0a121c;
|
|
|
|
|
border-left: 1px solid var(--panel-border);
|
|
|
|
|
z-index: 40;
|
|
|
|
|
transform: translateX(105%);
|
|
|
|
|
transition: transform 0.28s ease;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.drawer.open { transform: translateX(0); }
|
|
|
|
|
.drawer-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0.65rem 0.85rem;
|
|
|
|
|
border-bottom: 1px solid var(--panel-border);
|
|
|
|
|
}
|
|
|
|
|
.drawer-brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; }
|
|
|
|
|
.drawer-brand img { height: 22px; width: auto; }
|
|
|
|
|
#ai-frame { flex: 1; border: 0; width: 100%; background: #111; }
|
|
|
|
|
.scrim {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background: rgba(0, 0, 0, 0.45);
|
|
|
|
|
z-index: 30;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
|
}
|
|
|
|
|
.scrim.open { opacity: 1; pointer-events: auto; }
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1100px) {
|
|
|
|
|
#app {
|
|
|
|
|
grid-template-columns: 240px 1fr;
|
|
|
|
|
grid-template-rows: auto 1fr auto;
|
|
|
|
|
}
|
|
|
|
|
.rail.right {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
grid-row: 3;
|
|
|
|
|
max-height: 220px;
|
|
|
|
|
border-left: none;
|
|
|
|
|
border-top: 1px solid var(--panel-border);
|
|
|
|
|
}
|
|
|
|
|
.ticker { grid-row: 4; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Visualization layout picker */
|
|
|
|
|
.viz-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
}
|
|
|
|
|
.viz-card {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.18);
|
|
|
|
|
background: rgba(0, 30, 55, 0.55);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.5rem 0.45rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
transition: border-color 0.15s, background 0.15s, transform 0.15s;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.08rem;
|
|
|
|
|
min-height: 64px;
|
|
|
|
|
}
|
|
|
|
|
.viz-card:nth-child(5) {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
}
|
|
|
|
|
.viz-card:hover {
|
|
|
|
|
border-color: var(--dell-bright);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
}
|
|
|
|
|
.viz-card.active {
|
|
|
|
|
border-color: var(--cyan);
|
|
|
|
|
background: rgba(61, 255, 224, 0.1);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(61, 255, 224, 0.2);
|
|
|
|
|
}
|
|
|
|
|
.viz-ico {
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
.viz-card.active .viz-ico { color: var(--cyan); }
|
|
|
|
|
.viz-t {
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
.viz-s {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.58rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
letter-spacing: 0.02em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Realtime context */
|
|
|
|
|
.ctx-bar {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0.6rem;
|
|
|
|
|
left: 0.75rem;
|
|
|
|
|
right: 0.75rem;
|
|
|
|
|
z-index: 4;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.45rem 0.85rem;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
}
|
|
|
|
|
.ctx-live, .ctx-focus {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
background: rgba(2, 10, 20, 0.72);
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.22);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.35rem 0.6rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.ctx-live {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.45rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
.pulse-dot {
|
|
|
|
|
width: 7px;
|
|
|
|
|
height: 7px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: var(--cyan);
|
|
|
|
|
box-shadow: 0 0 0 0 rgba(61, 255, 224, 0.55);
|
|
|
|
|
animation: pulse-ring 1.6s ease-out infinite;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
@keyframes pulse-ring {
|
|
|
|
|
0% { box-shadow: 0 0 0 0 rgba(61, 255, 224, 0.45); }
|
|
|
|
|
70% { box-shadow: 0 0 0 8px rgba(61, 255, 224, 0); }
|
|
|
|
|
100% { box-shadow: 0 0 0 0 rgba(61, 255, 224, 0); }
|
|
|
|
|
}
|
|
|
|
|
.ctx-focus { color: var(--dell-bright); }
|
|
|
|
|
|
|
|
|
|
.ctx-feed {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0.75rem;
|
|
|
|
|
bottom: 2.4rem;
|
|
|
|
|
width: min(340px, calc(100% - 1.5rem));
|
|
|
|
|
max-height: 42%;
|
|
|
|
|
z-index: 4;
|
|
|
|
|
background: rgba(2, 10, 20, 0.82);
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.22);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
backdrop-filter: blur(6px);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0.45rem 0.65rem;
|
|
|
|
|
border-bottom: 1px solid rgba(0, 168, 232, 0.15);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed-head span {
|
|
|
|
|
text-transform: none;
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed-body {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
max-height: 220px;
|
|
|
|
|
padding: 0.25rem;
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
}
|
|
|
|
|
.feed-item {
|
|
|
|
|
appearance: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.4rem 0.5rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-left: 2px solid transparent;
|
|
|
|
|
}
|
|
|
|
|
.feed-item:hover { background: rgba(0, 118, 206, 0.15); }
|
|
|
|
|
.feed-item.critical { border-left-color: var(--red); }
|
|
|
|
|
.feed-item.warning { border-left-color: var(--amber); }
|
|
|
|
|
.feed-item.info { border-left-color: var(--cyan); }
|
|
|
|
|
.feed-item .ft {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
.feed-item .fm {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 0.12rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
.feed-item .fs {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 0.1rem;
|
|
|
|
|
font-size: 0.58rem;
|
|
|
|
|
color: rgba(122, 147, 168, 0.9);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ctx-stats {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
margin-bottom: 0.55rem;
|
|
|
|
|
}
|
|
|
|
|
.ctx-stat {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.18);
|
|
|
|
|
background: rgba(0, 30, 55, 0.45);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.4rem 0.45rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
.ctx-stat:hover { border-color: var(--dell-bright); }
|
|
|
|
|
.ctx-stat .v {
|
|
|
|
|
display: block;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
}
|
|
|
|
|
.ctx-stat.warn .v { color: var(--amber); }
|
|
|
|
|
.ctx-stat.danger .v { color: var(--red); }
|
|
|
|
|
.ctx-stat .l {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.58rem;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
margin-top: 0.1rem;
|
|
|
|
|
}
|
|
|
|
|
.alert-card .t { font-size: 0.78rem; }
|
|
|
|
|
.alert-card .s { white-space: normal; line-height: 1.3; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Hover context tip */
|
|
|
|
|
.node-tip {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 50;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
max-width: 280px;
|
|
|
|
|
padding: 0.65rem 0.75rem;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background: rgba(4, 14, 28, 0.94);
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.35);
|
|
|
|
|
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(61, 255, 224, 0.08);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
|
transform: translate(12px, 12px);
|
|
|
|
|
}
|
|
|
|
|
.node-tip .nt-name {
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin: 0 0 0.2rem;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
.node-tip .nt-meta {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
margin: 0;
|
|
|
|
|
line-height: 1.45;
|
|
|
|
|
}
|
|
|
|
|
.node-tip .nt-hint {
|
|
|
|
|
margin: 0.45rem 0 0;
|
|
|
|
|
font-size: 0.6rem;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Connect / context modal */
|
|
|
|
|
.modal {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 60;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
}
|
|
|
|
|
.modal.hidden { display: none !important; }
|
|
|
|
|
.modal-card {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: min(520px, 100%);
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 118, 206, 0.28), transparent 55%),
|
|
|
|
|
rgba(6, 14, 26, 0.97);
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.35);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 1.15rem 1.2rem 1rem;
|
|
|
|
|
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
|
|
|
|
|
animation: modal-in 0.22s ease-out;
|
|
|
|
|
}
|
|
|
|
|
@keyframes modal-in {
|
|
|
|
|
from { opacity: 0; transform: translateY(12px) scale(0.98); }
|
|
|
|
|
to { opacity: 1; transform: none; }
|
|
|
|
|
}
|
|
|
|
|
.modal-close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0.55rem;
|
|
|
|
|
right: 0.65rem;
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-size: 1.4rem;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
padding: 0.2rem 0.45rem;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
.modal-close:hover { color: #fff; background: rgba(255,255,255,0.06); }
|
|
|
|
|
.modal-brand {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
padding-right: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
.modal-brand img {
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
.modal-kicker {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
letter-spacing: 0.14em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
}
|
|
|
|
|
.modal-brand h2 {
|
|
|
|
|
margin: 0.1rem 0 0;
|
|
|
|
|
font-size: 1.05rem;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
.modal-sub {
|
|
|
|
|
margin: 0.15rem 0 0;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.modal-badges {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.modal-context {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
margin-bottom: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
.modal-ctx-item {
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.15);
|
|
|
|
|
background: rgba(0, 30, 55, 0.4);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.45rem 0.55rem;
|
|
|
|
|
}
|
|
|
|
|
.modal-ctx-item .k {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.58rem;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.06em;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.modal-ctx-item .v {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 0.15rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
.connect-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.connect-tile {
|
|
|
|
|
appearance: none;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border: 1px solid rgba(0, 168, 232, 0.22);
|
|
|
|
|
background: rgba(0, 40, 70, 0.45);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 0.75rem 0.8rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
transition: border-color 0.15s, transform 0.15s, background 0.15s;
|
|
|
|
|
min-height: 88px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.2rem;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.connect-tile:hover {
|
|
|
|
|
border-color: var(--cyan);
|
|
|
|
|
background: rgba(0, 118, 206, 0.22);
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
|
|
|
|
.connect-tile.primary {
|
|
|
|
|
border-color: rgba(0, 168, 232, 0.55);
|
|
|
|
|
background: linear-gradient(145deg, rgba(0, 118, 206, 0.45), rgba(0, 40, 70, 0.55));
|
|
|
|
|
}
|
|
|
|
|
.connect-tile .ct-ico {
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
.connect-tile .ct-t {
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.connect-tile .ct-s {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
line-height: 1.35;
|
|
|
|
|
}
|
|
|
|
|
.modal-foot {
|
|
|
|
|
margin: 0.75rem 0 0;
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
.toast {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 3.2rem;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
z-index: 70;
|
|
|
|
|
background: rgba(0, 40, 70, 0.95);
|
|
|
|
|
border: 1px solid var(--cyan);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
padding: 0.55rem 0.9rem;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.2s;
|
|
|
|
|
}
|
|
|
|
|
.toast.show { opacity: 1; }
|
|
|
|
|
|
|
|
|
|
/* SSH / iDRAC action text only — high-visibility orange */
|
|
|
|
|
.conn-link,
|
|
|
|
|
a.conn-link,
|
|
|
|
|
.action-stack a.conn-link {
|
|
|
|
|
color: #ff9a3c !important;
|
|
|
|
|
}
|
|
|
|
|
.conn-link:hover,
|
|
|
|
|
a.conn-link:hover {
|
|
|
|
|
color: #ffc078 !important;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
.connect-tile.conn-link .ct-t,
|
|
|
|
|
.connect-tile.conn-link .ct-s,
|
|
|
|
|
.connect-tile.conn-link .ct-ico {
|
|
|
|
|
color: #ff9a3c;
|
|
|
|
|
}
|
|
|
|
|
.connect-tile.conn-link:hover .ct-t,
|
|
|
|
|
.connect-tile.conn-link:hover .ct-ico {
|
|
|
|
|
color: #ffc078;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Feed dock control */
|
|
|
|
|
.ctx-feed-head {
|
|
|
|
|
cursor: grab;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed-head .feed-dock {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.25);
|
|
|
|
|
background: rgba(0,40,70,0.5);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed-head .feed-dock:hover { border-color: var(--cyan); color: var(--cyan); }
|
|
|
|
|
|
|
|
|
|
/* V100 GPU matrix */
|
|
|
|
|
.gpu-summary {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
margin-bottom: 0.45rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
.gpu-summary strong { color: var(--cyan); }
|
|
|
|
|
.gpu-matrix { display: flex; flex-direction: column; gap: 0.4rem; }
|
|
|
|
|
.gpu-card {
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.18);
|
|
|
|
|
background: rgba(0,30,55,0.45);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.45rem 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.gpu-card.busy {
|
|
|
|
|
border-color: rgba(255,154,60,0.55);
|
|
|
|
|
box-shadow: 0 0 0 1px rgba(255,154,60,0.15);
|
|
|
|
|
}
|
|
|
|
|
.gpu-top {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
.gpu-bar {
|
|
|
|
|
margin-top: 0.3rem;
|
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 99px;
|
|
|
|
|
background: rgba(255,255,255,0.06);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.gpu-bar i {
|
|
|
|
|
display: block;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: linear-gradient(90deg, #00a8e8, #3dffe0 55%, #ff9a3c);
|
|
|
|
|
border-radius: 99px;
|
|
|
|
|
transition: width 0.35s ease;
|
|
|
|
|
}
|
|
|
|
|
.gpu-card.busy .gpu-bar i {
|
|
|
|
|
background: linear-gradient(90deg, #ff9a3c, #ff5c5c);
|
|
|
|
|
}
|
|
|
|
|
.gpu-meta, .gpu-name {
|
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.58rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Chat drawer */
|
|
|
|
|
.chat-body {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 0.85rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.55rem;
|
|
|
|
|
background: rgba(2,8,16,0.85);
|
|
|
|
|
}
|
|
|
|
|
.chat-bubble {
|
|
|
|
|
max-width: 92%;
|
|
|
|
|
padding: 0.55rem 0.7rem;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
}
|
|
|
|
|
.chat-bubble.user {
|
|
|
|
|
align-self: flex-end;
|
|
|
|
|
background: rgba(0,118,206,0.35);
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.35);
|
|
|
|
|
}
|
|
|
|
|
.chat-bubble.assistant {
|
|
|
|
|
align-self: flex-start;
|
|
|
|
|
background: rgba(0,40,70,0.55);
|
|
|
|
|
border: 1px solid rgba(61,255,224,0.2);
|
|
|
|
|
}
|
|
|
|
|
.chat-form {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
padding: 0.65rem;
|
|
|
|
|
border-top: 1px solid var(--panel-border);
|
|
|
|
|
}
|
|
|
|
|
.chat-form input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0,20,40,0.7);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.5rem 0.65rem;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
.chat-form input:focus { border-color: var(--dell-bright); }
|
|
|
|
|
|
|
|
|
|
/* Ops desk */
|
|
|
|
|
.drawer.wide { width: min(780px, 100vw); }
|
|
|
|
|
.ops-layout {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 240px 1fr;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
.ops-side {
|
|
|
|
|
border-right: 1px solid var(--panel-border);
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.55rem;
|
|
|
|
|
}
|
|
|
|
|
.ops-identity {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.ops-identity select {
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0,20,40,0.7);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.4rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
.ops-main {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
.ops-empty h3 { margin: 0 0 0.35rem; color: var(--dell-bright); }
|
|
|
|
|
.ops-ticket-head h3 { margin: 0 0 0.25rem; font-size: 1rem; }
|
|
|
|
|
.ops-actions { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.5rem 0 0.75rem; }
|
|
|
|
|
.ops-msgs { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 0.75rem; }
|
|
|
|
|
.ops-msg {
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.15);
|
|
|
|
|
background: rgba(0,30,55,0.35);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.55rem 0.65rem;
|
|
|
|
|
}
|
|
|
|
|
.ops-msg p { margin: 0.35rem 0 0; font-size: 0.8rem; line-height: 1.4; }
|
|
|
|
|
.ops-time { margin-left: 0.45rem; font-family: var(--mono); font-size: 0.62rem; color: var(--muted); }
|
|
|
|
|
.ops-reply textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0,20,40,0.7);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
resize: vertical;
|
|
|
|
|
margin-bottom: 0.4rem;
|
|
|
|
|
}
|
|
|
|
|
.drawer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feed-docks { margin-left: auto; display: inline-flex; gap: 0.25rem; }
|
|
|
|
|
.ctx-feed-head .feed-dock { margin-left: 0; }
|
|
|
|
|
|
|
|
|
|
/* Collapsible live feed */
|
|
|
|
|
.ctx-feed.collapsed {
|
|
|
|
|
max-height: none;
|
|
|
|
|
height: auto;
|
|
|
|
|
bottom: 0.55rem !important;
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
right: 0.75rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* backdrop-filter ghosts collapsed body text in Chromium */
|
|
|
|
|
backdrop-filter: none;
|
|
|
|
|
-webkit-backdrop-filter: none;
|
|
|
|
|
background: rgba(2, 14, 28, 0.92);
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed.collapsed .ctx-feed-body {
|
|
|
|
|
display: none !important;
|
|
|
|
|
visibility: hidden !important;
|
|
|
|
|
height: 0 !important;
|
|
|
|
|
max-height: 0 !important;
|
|
|
|
|
overflow: hidden !important;
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
opacity: 0 !important;
|
|
|
|
|
pointer-events: none !important;
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
left: -9999px !important;
|
|
|
|
|
width: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed.collapsed .ctx-feed-head {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
padding: 0.4rem 0.55rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed.collapsed .ctx-feed-head strong {
|
|
|
|
|
letter-spacing: 0.06em;
|
|
|
|
|
}
|
|
|
|
|
.ctx-feed.collapsed #ctx-feed-meta {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
.feed-dock.hidden { display: none !important; }
|
|
|
|
|
|
|
|
|
|
/* Keep legend/hint clear of collapsed feed chip */
|
|
|
|
|
.stage.feed-collapsed .stage-hud {
|
|
|
|
|
right: 12rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Alert triage popup */
|
|
|
|
|
.triage-card {
|
|
|
|
|
width: min(920px, 96vw);
|
|
|
|
|
max-height: min(86vh, 820px);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding-bottom: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
.triage-toolbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.45rem;
|
|
|
|
|
margin-bottom: 0.65rem;
|
|
|
|
|
}
|
|
|
|
|
.triage-layout {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1.1fr 1fr;
|
|
|
|
|
gap: 0.65rem;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.triage-list {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
max-height: min(54vh, 480px);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
padding-right: 0.15rem;
|
|
|
|
|
}
|
|
|
|
|
.triage-detail {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
max-height: min(54vh, 480px);
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.2);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background: rgba(0, 24, 44, 0.55);
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.triage-item {
|
|
|
|
|
appearance: none;
|
|
|
|
|
text-align: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.16);
|
|
|
|
|
background: rgba(0,30,55,0.45);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.55rem 0.65rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
border-left: 3px solid transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.triage-item:hover { border-color: var(--dell-bright); }
|
|
|
|
|
.triage-item.active { border-color: var(--cyan); background: rgba(61,255,224,0.08); }
|
|
|
|
|
.triage-item.critical { border-left-color: var(--red); }
|
|
|
|
|
.triage-item.warning { border-left-color: var(--amber); }
|
|
|
|
|
.triage-item.info { border-left-color: var(--cyan); }
|
|
|
|
|
.triage-item .ti-top {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.triage-item .ti-msg {
|
|
|
|
|
margin-top: 0.2rem;
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
line-height: 1.35;
|
|
|
|
|
}
|
|
|
|
|
.triage-item .ti-meta {
|
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.58rem;
|
|
|
|
|
color: rgba(122,147,168,0.95);
|
|
|
|
|
}
|
|
|
|
|
.triage-detail h3 {
|
|
|
|
|
margin: 0 0 0.35rem;
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
.triage-actions {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.triage-actions .btn { width: 100%; text-align: center; font-size: 0.75rem; }
|
|
|
|
|
.triage-group-label {
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
margin: 0.35rem 0 0.2rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
|
.triage-layout { grid-template-columns: 1fr; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Chat context integration */
|
|
|
|
|
.chat-context {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
padding: 0.55rem 0.75rem 0.2rem;
|
|
|
|
|
border-bottom: 1px solid rgba(0,168,232,0.12);
|
|
|
|
|
}
|
|
|
|
|
.chat-ctx-pill {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.28);
|
|
|
|
|
background: rgba(0,40,70,0.45);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 0.2rem 0.55rem;
|
|
|
|
|
}
|
|
|
|
|
.chat-model-wrap {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.chat-model-label {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.06em;
|
|
|
|
|
}
|
|
|
|
|
.chat-model-select {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.35);
|
|
|
|
|
background: rgba(0,40,70,0.65);
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 0.22rem 1.6rem 0.22rem 0.65rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
|
|
|
|
|
linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
|
|
|
|
|
background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
|
|
|
|
|
background-size: 5px 5px, 5px 5px;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
max-width: 220px;
|
|
|
|
|
}
|
|
|
|
|
.chat-model-select:hover,
|
|
|
|
|
.chat-model-select:focus {
|
|
|
|
|
border-color: var(--cyan);
|
|
|
|
|
outline: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.chat-quick {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
padding: 0.45rem 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.chat-quick button {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.22);
|
|
|
|
|
background: rgba(0,30,55,0.5);
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 0.25rem 0.6rem;
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.chat-quick button:hover { color: #fff; border-color: var(--cyan); }
|
|
|
|
|
|
|
|
|
|
/* Ticket create modal */
|
|
|
|
|
.ticket-card { width: min(560px, 96vw); }
|
|
|
|
|
.ticket-form { display: flex; flex-direction: column; gap: 0.7rem; }
|
|
|
|
|
.ticket-form label {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
.ticket-form input,
|
|
|
|
|
.ticket-form select,
|
|
|
|
|
.ticket-form textarea {
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.25);
|
|
|
|
|
background: rgba(0, 18, 36, 0.85);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.55rem 0.65rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font: inherit;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
.ticket-form textarea { resize: vertical; line-height: 1.4; }
|
|
|
|
|
.ticket-form input:focus,
|
|
|
|
|
.ticket-form select:focus,
|
|
|
|
|
.ticket-form textarea:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--cyan);
|
|
|
|
|
box-shadow: 0 0 0 2px rgba(61,255,224,0.12);
|
|
|
|
|
}
|
|
|
|
|
.ticket-form-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 0.55rem;
|
|
|
|
|
}
|
|
|
|
|
.ticket-form-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 0.45rem;
|
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Richer ops desk */
|
|
|
|
|
.ops-filters select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0,20,40,0.7);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.4rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.ops-ticket-head {
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.18);
|
|
|
|
|
background: rgba(0,30,55,0.4);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.ops-meta-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
margin: 0.55rem 0;
|
|
|
|
|
}
|
|
|
|
|
.ops-meta-grid div {
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.12);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.35rem 0.45rem;
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
}
|
|
|
|
|
.ops-meta-grid span { display:block; color: var(--muted); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
|
|
|
.ops-toolbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
margin-top: 0.55rem;
|
|
|
|
|
}
|
|
|
|
|
.ops-toolbar .btn { font-size: 0.72rem; padding: 0.35rem 0.55rem; }
|
|
|
|
|
.ops-toolbar select {
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0,20,40,0.7);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
padding: 0.3rem 0.4rem;
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
}
|
|
|
|
|
.card .s .st-open { color: var(--amber); }
|
|
|
|
|
.card .s .st-accepted, .card .s .st-in_progress { color: var(--cyan); }
|
|
|
|
|
.card .s .st-resolved, .card .s .st-closed { color: var(--muted); }
|
|
|
|
|
.btn.danger {
|
|
|
|
|
border-color: rgba(255,92,92,0.45);
|
|
|
|
|
color: #ff8f8f;
|
|
|
|
|
}
|
|
|
|
|
.btn.danger:hover { background: rgba(255,92,92,0.15); color: #fff; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.filter-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
margin: 0.35rem 0 0.45rem;
|
|
|
|
|
}
|
|
|
|
|
.btn.compact {
|
|
|
|
|
padding: 0.25rem 0.55rem;
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#notify-stack {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 4.6rem;
|
|
|
|
|
right: 1rem;
|
|
|
|
|
z-index: 80;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.45rem;
|
|
|
|
|
width: min(360px, calc(100vw - 2rem));
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
.notify-card {
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
appearance: none;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.35);
|
|
|
|
|
background: rgba(4, 18, 34, 0.94);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 0.65rem 0.75rem;
|
|
|
|
|
box-shadow: 0 10px 28px rgba(0,0,0,0.35);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateX(18px);
|
|
|
|
|
transition: opacity 0.25s ease, transform 0.25s ease;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.notify-card.show {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
.notify-card.critical { border-color: rgba(61,255,224,0.55); }
|
|
|
|
|
.notify-card.warning { border-color: rgba(255,176,32,0.55); }
|
|
|
|
|
.notify-card .nc-kicker {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
margin-bottom: 0.2rem;
|
|
|
|
|
}
|
|
|
|
|
.notify-card .nc-title {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.86rem;
|
|
|
|
|
margin-bottom: 0.2rem;
|
|
|
|
|
}
|
|
|
|
|
.notify-card .nc-text {
|
|
|
|
|
display: block;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
line-height: 1.35;
|
|
|
|
|
}
|
|
|
|
|
.notify-card .nc-meta {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 0.3rem;
|
|
|
|
|
font-size: 0.6rem;
|
|
|
|
|
color: rgba(122,147,168,0.85);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
}
|
|
|
|
|
.toast.toast-alert {
|
|
|
|
|
border-color: rgba(61,255,224,0.55);
|
|
|
|
|
background: rgba(0, 60, 90, 0.95);
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.inv-section h3 {
|
|
|
|
|
color: var(--dell-bright);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.ssh-card {
|
|
|
|
|
width: min(920px, 96vw);
|
|
|
|
|
max-height: min(90vh, 860px);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.ssh-status {
|
|
|
|
|
margin: 0.35rem 0 0.75rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.ssh-status.ok { color: var(--cyan); }
|
|
|
|
|
.ssh-status.error { color: #ff7a7a; }
|
|
|
|
|
.ssh-status.info { color: var(--dell-bright); }
|
|
|
|
|
.ssh-login { margin-bottom: 0.5rem; }
|
|
|
|
|
.ssh-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1.4fr 0.6fr;
|
|
|
|
|
gap: 0.55rem 0.65rem;
|
|
|
|
|
margin-bottom: 0.7rem;
|
|
|
|
|
}
|
|
|
|
|
.ssh-grid label {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.ssh-grid label:nth-child(3),
|
|
|
|
|
.ssh-grid label:nth-child(4) {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
}
|
|
|
|
|
.ssh-grid input {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0, 20, 40, 0.7);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.5rem 0.6rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.84rem;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
}
|
|
|
|
|
.ssh-grid input:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--cyan);
|
|
|
|
|
}
|
|
|
|
|
.ssh-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.45rem;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
.ssh-term-wrap {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 360px;
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.22);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background: #071018;
|
|
|
|
|
}
|
|
|
|
|
.ssh-term {
|
|
|
|
|
height: min(52vh, 520px);
|
|
|
|
|
padding: 0.35rem;
|
|
|
|
|
}
|
|
|
|
|
.ssh-term .xterm { height: 100%; }
|
|
|
|
|
.ssh-term .xterm-viewport { overflow-y: auto !important; }
|
|
|
|
|
@media (max-width: 700px) {
|
|
|
|
|
.ssh-grid { grid-template-columns: 1fr; }
|
|
|
|
|
.ssh-grid label:nth-child(3),
|
|
|
|
|
.ssh-grid label:nth-child(4) { grid-column: auto; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.kpi-card {
|
|
|
|
|
width: min(1100px, 96vw);
|
|
|
|
|
max-height: min(88vh, 860px);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.kpi-summary {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
margin: 0.25rem 0 0.7rem;
|
|
|
|
|
}
|
|
|
|
|
.kpi-summary .pill {
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--cyan);
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.28);
|
|
|
|
|
background: rgba(0,40,70,0.45);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 0.22rem 0.6rem;
|
|
|
|
|
}
|
|
|
|
|
.kpi-toolbar {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr auto auto auto;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
margin-bottom: 0.65rem;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.kpi-toolbar select {
|
|
|
|
|
appearance: none;
|
|
|
|
|
border: 1px solid var(--panel-border);
|
|
|
|
|
background: rgba(0,20,40,0.7);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 0.45rem 0.55rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
}
|
|
|
|
|
.kpi-layout {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1.15fr 1fr;
|
|
|
|
|
gap: 0.65rem;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.kpi-list, .kpi-detail {
|
|
|
|
|
border: 1px solid rgba(0,168,232,0.15);
|
|
|
|
|
background: rgba(0,20,40,0.35);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-height: min(56vh, 520px);
|
|
|
|
|
}
|
|
|
|
|
.kpi-list { padding: 0.35rem; }
|
|
|
|
|
.kpi-detail { padding: 0.75rem; }
|
|
|
|
|
.kpi-item {
|
|
|
|
|
appearance: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: inherit;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 0.5rem 0.55rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
.kpi-item:hover { background: rgba(0,118,206,0.15); }
|
|
|
|
|
.kpi-item.active {
|
|
|
|
|
border-color: rgba(61,255,224,0.35);
|
|
|
|
|
background: rgba(61,255,224,0.08);
|
|
|
|
|
}
|
|
|
|
|
.kpi-item .t {
|
|
|
|
|
display: block;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
}
|
|
|
|
|
.kpi-item .s {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 0.15rem;
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
font-size: 0.66rem;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
.kpi-detail h3 { margin: 0 0 0.35rem; color: var(--dell-bright); font-size: 1rem; }
|
|
|
|
|
.kpi-detail .meta { margin: 0 0 0.65rem; color: var(--muted); font-family: var(--mono); font-size: 0.72rem; }
|
|
|
|
|
.kpi-actions { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.65rem 0; }
|
|
|
|
|
.kpi-kv { display: grid; gap: 0.3rem; margin-top: 0.5rem; }
|
|
|
|
|
.kpi-kv .row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 110px 1fr;
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
}
|
|
|
|
|
.kpi-kv .k { color: var(--muted); }
|
|
|
|
|
.kpi-kv .v { font-family: var(--mono); color: var(--text); word-break: break-all; }
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
.kpi-layout { grid-template-columns: 1fr; }
|
|
|
|
|
.kpi-toolbar { grid-template-columns: 1fr 1fr; }
|
|
|
|
|
}
|
2026-07-17 15:15:57 +02:00
|
|
|
|
|
|
|
|
/* —— Reports drawer —— */
|
|
|
|
|
.reports-drawer { width: min(1120px, 96vw); }
|
|
|
|
|
.reports-tabs { padding: 0.65rem 1rem 0; gap: 0.4rem; }
|
|
|
|
|
.reports-body { padding: 0.75rem 1rem 1.25rem; overflow: auto; height: calc(100% - 96px); }
|
|
|
|
|
.rpt-toolbar {
|
|
|
|
|
display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
|
|
|
|
|
justify-content: space-between; margin-bottom: 0.65rem;
|
|
|
|
|
}
|
|
|
|
|
.rpt-toolbar .search { flex: 1; min-width: 180px; }
|
|
|
|
|
.rpt-exports { display: flex; flex-wrap: wrap; gap: 0.35rem; }
|
|
|
|
|
.rpt-meta { color: var(--muted); font-size: 0.78rem; margin-bottom: 0.55rem; }
|
|
|
|
|
.rpt-check { margin-left: 0.75rem; display: inline-flex; gap: 0.35rem; align-items: center; }
|
|
|
|
|
.rpt-table-wrap { overflow: auto; max-height: calc(100vh - 220px); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; }
|
|
|
|
|
.rpt-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
|
|
|
|
|
.rpt-table th, .rpt-table td { padding: 0.45rem 0.55rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); vertical-align: top; }
|
|
|
|
|
.rpt-table th { position: sticky; top: 0; background: #0e1620; color: var(--dell-bright); font-weight: 600; z-index: 1; }
|
|
|
|
|
.rpt-table tr:hover td { background: rgba(61,255,224,0.04); }
|
|
|
|
|
.rpt-table .sub { color: var(--muted); font-size: 0.7rem; margin-top: 0.15rem; }
|
|
|
|
|
code.st { font-family: var(--mono); color: #7ef0d8; font-weight: 600; letter-spacing: 0.02em; }
|
|
|
|
|
.rpt-badge { display: inline-block; padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; }
|
|
|
|
|
.rpt-badge.ok { background: rgba(61,255,224,0.15); color: #3dffe0; }
|
|
|
|
|
.rpt-badge.bad { background: rgba(255,92,92,0.18); color: #ff8a8a; }
|
|
|
|
|
.rpt-badge.warn { background: rgba(255,184,77,0.18); color: #ffb84d; }
|
|
|
|
|
.rpt-badge.unk { background: rgba(255,255,255,0.08); color: var(--muted); }
|
|
|
|
|
.rpt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 1rem; }
|
|
|
|
|
.rpt-panel { border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 0.75rem; background: rgba(0,0,0,0.18); }
|
|
|
|
|
.rpt-panel h3, .rpt-h { margin: 0 0 0.5rem; font-size: 0.9rem; color: var(--dell-bright); }
|
|
|
|
|
.rpt-list { list-style: none; margin: 0 0 0.85rem; padding: 0; }
|
|
|
|
|
.rpt-list li { padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.78rem; }
|
|
|
|
|
.rpt-list .sub { display: block; color: var(--muted); font-size: 0.7rem; }
|
|
|
|
|
.rpt-results { background: #0a1018; color: #c8d6e5; padding: 0.75rem; border-radius: 8px; max-height: 280px; overflow: auto; font-size: 0.72rem; }
|
|
|
|
|
.st-row .st-value { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
|
|
|
|
|
.wc-mount { margin: 0.65rem 0; }
|
|
|
|
|
.customer-brief { background: #0b121a; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 1.25rem; }
|
|
|
|
|
.brief-head { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1rem; }
|
|
|
|
|
.brief-head h2 { margin: 0.15rem 0; }
|
|
|
|
|
.brief-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.55rem; margin: 0.75rem 0 1rem; }
|
|
|
|
|
.brief-kpis div { background: rgba(61,255,224,0.06); border: 1px solid rgba(61,255,224,0.12); border-radius: 8px; padding: 0.65rem; text-align: center; }
|
|
|
|
|
.brief-kpis em { display: block; font-style: normal; font-size: 1.35rem; font-weight: 700; color: var(--dell-bright); }
|
|
|
|
|
.brief-kpis span { font-size: 0.72rem; color: var(--muted); }
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
.rpt-grid-2, .brief-kpis { grid-template-columns: 1fr 1fr; }
|
|
|
|
|
}
|
|
|
|
|
@media print {
|
|
|
|
|
body * { visibility: hidden !important; }
|
|
|
|
|
#reports-drawer, #reports-drawer * { visibility: visible !important; }
|
|
|
|
|
#reports-drawer {
|
|
|
|
|
position: absolute !important; left: 0; top: 0; width: 100% !important;
|
|
|
|
|
height: auto !important; background: white !important; color: #111 !important;
|
|
|
|
|
box-shadow: none !important; overflow: visible !important;
|
|
|
|
|
}
|
|
|
|
|
.drawer-head, .reports-tabs, .rpt-toolbar, .scrim { display: none !important; }
|
|
|
|
|
.customer-brief, .rpt-table { color: #111 !important; background: white !important; }
|
|
|
|
|
code.st { color: #0a5 !important; }
|
|
|
|
|
}
|