729 行
14 KiB
CSS
729 行
14 KiB
CSS
|
|
:root {
|
|
--bg: #07111f;
|
|
--panel: rgba(9, 18, 32, 0.86);
|
|
--panel-2: rgba(10, 24, 44, 0.92);
|
|
--panel-soft: rgba(18, 32, 56, 0.74);
|
|
--border: rgba(137, 171, 214, 0.22);
|
|
--text: #f7fafc;
|
|
--muted: #9fb3ca;
|
|
--accent: #5eead4;
|
|
--accent-2: #ffb86b;
|
|
--accent-3: #90cdf4;
|
|
--danger: #ff7b7b;
|
|
--warning: #ffd166;
|
|
--success: #6ee7a5;
|
|
--shadow: 0 24px 80px rgba(1, 7, 20, 0.45);
|
|
--radius: 20px;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
html, body { margin: 0; min-height: 100%; }
|
|
body {
|
|
font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
|
|
background:
|
|
radial-gradient(circle at top left, rgba(94, 234, 212, 0.15), transparent 28%),
|
|
radial-gradient(circle at top right, rgba(255, 184, 107, 0.18), transparent 22%),
|
|
linear-gradient(145deg, #050c16 0%, #08111f 44%, #0d1c31 100%);
|
|
color: var(--text);
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
background-image:
|
|
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
|
|
background-size: 32px 32px;
|
|
mask-image: radial-gradient(circle at center, black 36%, transparent 78%);
|
|
opacity: 0.28;
|
|
}
|
|
|
|
a { color: var(--accent); text-decoration: none; }
|
|
a:hover { text-decoration: underline; }
|
|
button, input, select {
|
|
font: inherit;
|
|
}
|
|
|
|
.dashboard-shell {
|
|
position: relative;
|
|
max-width: 1640px;
|
|
margin: 0 auto;
|
|
padding: 32px 24px 40px;
|
|
}
|
|
|
|
.hero {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 20;
|
|
backdrop-filter: blur(18px);
|
|
background: linear-gradient(180deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.75));
|
|
border: 1px solid var(--border);
|
|
border-radius: 28px;
|
|
padding: 24px 24px 20px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.hero-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.6fr 1fr;
|
|
gap: 20px;
|
|
align-items: start;
|
|
}
|
|
|
|
.eyebrow {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--muted);
|
|
font-size: 0.88rem;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.eyebrow::before {
|
|
content: "";
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: radial-gradient(circle, var(--accent), rgba(94, 234, 212, 0.15));
|
|
box-shadow: 0 0 24px rgba(94, 234, 212, 0.8);
|
|
animation: pulse 2.8s ease-in-out infinite;
|
|
}
|
|
|
|
.hero h1 {
|
|
margin: 12px 0 10px;
|
|
font-family: "IBM Plex Serif", "Iowan Old Style", Georgia, serif;
|
|
font-size: clamp(2rem, 4vw, 3.5rem);
|
|
line-height: 1.02;
|
|
}
|
|
|
|
.hero p {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
max-width: 74ch;
|
|
}
|
|
|
|
.hero-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.chip, .ghost-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--border);
|
|
padding: 10px 14px;
|
|
background: rgba(255,255,255,0.06);
|
|
color: var(--text);
|
|
}
|
|
|
|
.ghost-chip {
|
|
background: rgba(255,255,255,0.04);
|
|
}
|
|
|
|
.hero-meta {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14px;
|
|
}
|
|
|
|
.meta-card, .glass-panel {
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.meta-card {
|
|
padding: 18px;
|
|
min-height: 116px;
|
|
}
|
|
|
|
.meta-card strong {
|
|
display: block;
|
|
color: var(--muted);
|
|
font-size: 0.84rem;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.meta-card span {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.workspace {
|
|
display: grid;
|
|
grid-template-columns: 420px minmax(0, 1fr);
|
|
gap: 20px;
|
|
margin-top: 22px;
|
|
}
|
|
|
|
.sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 18px;
|
|
}
|
|
|
|
.panel-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.panel-header h2, .panel-header h3 {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.glass-panel {
|
|
padding: 18px;
|
|
background:
|
|
linear-gradient(180deg, rgba(255,255,255,0.04), transparent 35%),
|
|
var(--panel);
|
|
}
|
|
|
|
.filters {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.filters label {
|
|
display: grid;
|
|
gap: 6px;
|
|
color: var(--muted);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.filters input, .filters select {
|
|
width: 100%;
|
|
background: rgba(255,255,255,0.05);
|
|
color: var(--text);
|
|
border: 1px solid rgba(159, 179, 202, 0.18);
|
|
border-radius: 14px;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.run-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
max-height: calc(100vh - 460px);
|
|
overflow: auto;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.run-card {
|
|
width: 100%;
|
|
text-align: left;
|
|
padding: 16px;
|
|
border-radius: 18px;
|
|
border: 1px solid rgba(159, 179, 202, 0.14);
|
|
background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
|
|
}
|
|
|
|
.run-card:hover, .run-card.is-active {
|
|
transform: translateY(-1px);
|
|
border-color: rgba(94, 234, 212, 0.42);
|
|
background: linear-gradient(180deg, rgba(94, 234, 212, 0.14), rgba(255,255,255,0.05));
|
|
}
|
|
|
|
.run-card-top, .flex-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.run-card h4 {
|
|
margin: 10px 0 8px;
|
|
font-size: 1rem;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.mini-muted {
|
|
color: var(--muted);
|
|
font-size: 0.86rem;
|
|
}
|
|
|
|
.status-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
border-radius: 999px;
|
|
padding: 6px 10px;
|
|
font-size: 0.82rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.status-pill::before {
|
|
content: "";
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 999px;
|
|
background: currentColor;
|
|
box-shadow: 0 0 16px currentColor;
|
|
}
|
|
|
|
.status-blocked-artifact, .status-blocked-destructive {
|
|
color: var(--danger);
|
|
background: rgba(255, 123, 123, 0.14);
|
|
border-color: rgba(255, 123, 123, 0.24);
|
|
}
|
|
|
|
.status-triage-manual, .status-suspected {
|
|
color: var(--warning);
|
|
background: rgba(255, 209, 102, 0.14);
|
|
border-color: rgba(255, 209, 102, 0.24);
|
|
}
|
|
|
|
.status-verified-real {
|
|
color: var(--success);
|
|
background: rgba(110, 231, 165, 0.14);
|
|
border-color: rgba(110, 231, 165, 0.24);
|
|
}
|
|
|
|
.status-verified-synthetic {
|
|
color: var(--accent-3);
|
|
background: rgba(144, 205, 244, 0.14);
|
|
border-color: rgba(144, 205, 244, 0.24);
|
|
}
|
|
|
|
.status-default {
|
|
color: var(--accent);
|
|
background: rgba(94, 234, 212, 0.14);
|
|
border-color: rgba(94, 234, 212, 0.24);
|
|
}
|
|
|
|
.detail-view {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.detail-hero {
|
|
padding: 22px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.detail-hero::after {
|
|
content: "";
|
|
position: absolute;
|
|
inset: auto -20% -55% 25%;
|
|
height: 220px;
|
|
background: radial-gradient(circle, rgba(94, 234, 212, 0.2), transparent 55%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.detail-headline {
|
|
margin: 8px 0 12px;
|
|
font-family: "IBM Plex Serif", "Iowan Old Style", Georgia, serif;
|
|
font-size: clamp(1.6rem, 3vw, 2.8rem);
|
|
line-height: 1.08;
|
|
}
|
|
|
|
.tag-row, .link-row, .artifact-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 7px 10px;
|
|
border-radius: 999px;
|
|
background: rgba(255,255,255,0.06);
|
|
border: 1px solid rgba(159, 179, 202, 0.18);
|
|
color: var(--text);
|
|
font-size: 0.86rem;
|
|
}
|
|
|
|
.stat-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 12px;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.stat-card {
|
|
padding: 14px;
|
|
border-radius: 16px;
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(159, 179, 202, 0.16);
|
|
}
|
|
|
|
.stat-card strong {
|
|
display: block;
|
|
color: var(--muted);
|
|
font-size: 0.78rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.stat-card span {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-size: 1.15rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.detail-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 360px;
|
|
gap: 18px;
|
|
}
|
|
|
|
.stack {
|
|
display: grid;
|
|
gap: 18px;
|
|
}
|
|
|
|
.progress-strip {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.progress-bar {
|
|
display: flex;
|
|
width: 100%;
|
|
min-height: 12px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background: rgba(255,255,255,0.08);
|
|
border: 1px solid rgba(159, 179, 202, 0.14);
|
|
}
|
|
|
|
.progress-segment {
|
|
min-width: 10px;
|
|
transition: width 180ms ease;
|
|
}
|
|
|
|
.progress-completed { background: linear-gradient(90deg, rgba(110, 231, 165, 0.9), rgba(94, 234, 212, 0.9)); }
|
|
.progress-blocked { background: linear-gradient(90deg, rgba(255, 123, 123, 0.95), rgba(255, 160, 122, 0.9)); }
|
|
.progress-failed { background: linear-gradient(90deg, rgba(255, 123, 123, 0.92), rgba(255, 209, 102, 0.88)); }
|
|
.progress-skipped { background: linear-gradient(90deg, rgba(255,255,255,0.22), rgba(159, 179, 202, 0.3)); }
|
|
.progress-planned { background: linear-gradient(90deg, rgba(144, 205, 244, 0.82), rgba(94, 234, 212, 0.72)); }
|
|
.progress-other { background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.1)); }
|
|
|
|
.progress-legend {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.progress-legend .tag {
|
|
gap: 7px;
|
|
}
|
|
|
|
.progress-legend .swatch {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.stage-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 12px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.stage-card {
|
|
padding: 14px;
|
|
border-radius: 16px;
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(159, 179, 202, 0.16);
|
|
}
|
|
|
|
.stage-card strong {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.accordion {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.accordion > summary {
|
|
list-style: none;
|
|
cursor: pointer;
|
|
padding: 18px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.accordion > summary::-webkit-details-marker { display: none; }
|
|
.accordion > summary span {
|
|
font-size: 1rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.accordion .accordion-content {
|
|
padding: 0 20px 20px;
|
|
border-top: 1px solid rgba(159, 179, 202, 0.12);
|
|
}
|
|
|
|
.timeline-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.timeline-item {
|
|
display: grid;
|
|
grid-template-columns: 120px 180px minmax(0, 1fr);
|
|
gap: 12px;
|
|
padding: 12px 0;
|
|
border-bottom: 1px solid rgba(159, 179, 202, 0.12);
|
|
}
|
|
|
|
.timeline-item:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.timeline-step {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.artifact-group {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.artifact-group h4 {
|
|
margin: 0 0 10px;
|
|
color: var(--muted);
|
|
font-size: 0.88rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.artifact-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin: 0 10px 10px 0;
|
|
padding: 10px 12px;
|
|
border-radius: 14px;
|
|
border: 1px solid rgba(159, 179, 202, 0.16);
|
|
background: rgba(255,255,255,0.05);
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.artifact-button:hover, .artifact-button.is-active {
|
|
border-color: rgba(94, 234, 212, 0.4);
|
|
background: rgba(94, 234, 212, 0.12);
|
|
}
|
|
|
|
.log-viewer {
|
|
min-height: 420px;
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.viewer-toolbar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.viewer-frame {
|
|
background: rgba(2, 8, 22, 0.88);
|
|
border: 1px solid rgba(159, 179, 202, 0.18);
|
|
border-radius: 16px;
|
|
min-height: 300px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.viewer-frame pre {
|
|
margin: 0;
|
|
padding: 18px;
|
|
max-height: 560px;
|
|
overflow: auto;
|
|
font-family: "IBM Plex Mono", "SFMono-Regular", "Menlo", monospace;
|
|
font-size: 0.88rem;
|
|
line-height: 1.6;
|
|
color: #d6e5f5;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.viewer-frame img {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.gallery {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 14px;
|
|
}
|
|
|
|
.gallery button {
|
|
all: unset;
|
|
cursor: pointer;
|
|
border-radius: 18px;
|
|
overflow: hidden;
|
|
border: 1px solid rgba(159, 179, 202, 0.18);
|
|
background: rgba(255,255,255,0.04);
|
|
}
|
|
|
|
.gallery img {
|
|
display: block;
|
|
width: 100%;
|
|
aspect-ratio: 4 / 3;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.gallery figcaption {
|
|
padding: 10px 12px 14px;
|
|
color: var(--muted);
|
|
font-size: 0.84rem;
|
|
}
|
|
|
|
.failure-callout {
|
|
padding: 16px 18px;
|
|
border-radius: 18px;
|
|
border: 1px solid rgba(255, 123, 123, 0.2);
|
|
background: rgba(255, 123, 123, 0.09);
|
|
}
|
|
|
|
.json-block {
|
|
background: rgba(2, 8, 22, 0.72);
|
|
border-radius: 16px;
|
|
border: 1px solid rgba(159, 179, 202, 0.14);
|
|
padding: 16px;
|
|
overflow: auto;
|
|
font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
|
|
font-size: 0.84rem;
|
|
line-height: 1.55;
|
|
color: #c9d8e8;
|
|
}
|
|
|
|
.empty-state {
|
|
padding: 40px 24px;
|
|
text-align: center;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.failure-feed {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.failure-item {
|
|
padding: 12px 14px;
|
|
border-radius: 16px;
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(159, 179, 202, 0.16);
|
|
}
|
|
|
|
.system-grid {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.system-card {
|
|
padding: 14px 16px;
|
|
border-radius: 16px;
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(159, 179, 202, 0.14);
|
|
}
|
|
|
|
.meter {
|
|
position: relative;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: rgba(255,255,255,0.08);
|
|
overflow: hidden;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.meter > span {
|
|
position: absolute;
|
|
inset: 0 auto 0 0;
|
|
width: var(--fill, 0%);
|
|
background: linear-gradient(90deg, var(--accent), var(--accent-2));
|
|
border-radius: inherit;
|
|
}
|
|
|
|
.sync-indicator {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.sync-indicator strong {
|
|
color: var(--text);
|
|
}
|
|
|
|
.dot {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: var(--accent);
|
|
box-shadow: 0 0 18px rgba(94, 234, 212, 0.8);
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); opacity: 0.88; }
|
|
50% { transform: scale(1.35); opacity: 1; }
|
|
}
|
|
|
|
@media (max-width: 1280px) {
|
|
.workspace, .detail-grid, .hero-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.stat-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.dashboard-shell {
|
|
padding: 18px 14px 32px;
|
|
}
|
|
|
|
.hero {
|
|
position: static;
|
|
}
|
|
|
|
.stat-grid, .hero-meta {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.timeline-item {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|