798 lines
18 KiB
CSS
798 lines
18 KiB
CSS
:root {
|
|
--bg: #0b0f0d;
|
|
--bg-elev: #111613;
|
|
--bg-hover: #161b18;
|
|
--border: #28302a;
|
|
--border-strong: #3a4540;
|
|
--text: #e8eeea;
|
|
--text-dim: #9aa89d;
|
|
--text-muted: #6e7c70;
|
|
--accent: #d6a24a;
|
|
--accent-2: #5ec4a0;
|
|
--danger: #d9584c;
|
|
--radius: 10px;
|
|
--radius-sm: 6px;
|
|
--font: "Inter", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
|
|
--mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
html, body { margin: 0; min-height: 100%; }
|
|
body {
|
|
font-family: var(--font);
|
|
color: var(--text);
|
|
background: var(--bg);
|
|
font-size: 13px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.page {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 18px 20px 24px;
|
|
}
|
|
|
|
code, pre, .mono { font-family: var(--mono); }
|
|
|
|
/* Header */
|
|
.top {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin-bottom: 14px;
|
|
}
|
|
.brand { display: flex; align-items: center; gap: 10px; }
|
|
.brand-mark {
|
|
width: 10px; height: 32px; border-radius: 999px;
|
|
background: linear-gradient(180deg, var(--accent), var(--accent-2));
|
|
}
|
|
.brand h1 {
|
|
margin: 0;
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
.brand p {
|
|
margin: 1px 0 0;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
}
|
|
.brand code {
|
|
color: var(--accent);
|
|
background: rgba(214, 162, 74, 0.12);
|
|
padding: 1px 5px;
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
}
|
|
.top-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
}
|
|
.nav-tabs {
|
|
display: inline-flex;
|
|
gap: 3px;
|
|
padding: 3px;
|
|
background: var(--bg-elev);
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
}
|
|
.nav-tabs a {
|
|
color: var(--text-dim);
|
|
text-decoration: none;
|
|
padding: 5px 12px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
.nav-tabs a.active,
|
|
.nav-tabs a:hover {
|
|
color: var(--text);
|
|
background: rgba(214, 162, 74, 0.18);
|
|
}
|
|
.health {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
}
|
|
.dot {
|
|
width: 7px; height: 7px; border-radius: 50%;
|
|
background: #555;
|
|
}
|
|
.dot.ok { background: var(--accent-2); box-shadow: 0 0 0 2px rgba(94, 196, 160, 0.25); }
|
|
.dot.bad { background: var(--danger); box-shadow: 0 0 0 2px rgba(217, 88, 76, 0.25); }
|
|
|
|
/* Action bar */
|
|
.action-bar {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 10px;
|
|
background: var(--bg-elev);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
padding: 12px 14px;
|
|
margin-bottom: 14px;
|
|
}
|
|
.action-bar label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
font-size: 11px;
|
|
color: var(--text-dim);
|
|
font-weight: 500;
|
|
}
|
|
.action-bar input {
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text);
|
|
padding: 6px 9px;
|
|
font-size: 13px;
|
|
outline: none;
|
|
min-width: 110px;
|
|
}
|
|
.action-bar input:focus {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 2px rgba(214, 162, 74, 0.15);
|
|
}
|
|
.field-grow { flex: 1 1 0; }
|
|
.action-btns { display: flex; gap: 8px; }
|
|
|
|
.switch-inline {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 7px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
padding-bottom: 6px;
|
|
}
|
|
.switch-inline input { display: none; }
|
|
.switch-slider {
|
|
width: 34px; height: 18px; border-radius: 999px;
|
|
background: var(--border-strong);
|
|
position: relative;
|
|
transition: .15s;
|
|
}
|
|
.switch-slider::after {
|
|
content: "";
|
|
position: absolute; top: 2px; left: 2px;
|
|
width: 14px; height: 14px; border-radius: 50%;
|
|
background: #c5d0c7;
|
|
transition: .15s;
|
|
}
|
|
.switch-inline input:checked + .switch-slider {
|
|
background: rgba(94, 196, 160, 0.35);
|
|
}
|
|
.switch-inline input:checked + .switch-slider::after {
|
|
transform: translateX(16px);
|
|
background: var(--accent-2);
|
|
}
|
|
.switch-label { color: var(--text); font-size: 12px; }
|
|
|
|
/* Layout */
|
|
.layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
.panel {
|
|
background: var(--bg-elev);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
}
|
|
.main-panel { padding: 0; overflow: hidden; }
|
|
.status-panel { padding: 14px; }
|
|
|
|
/* Tabs */
|
|
.tabs {
|
|
display: flex;
|
|
gap: 0;
|
|
border-bottom: 1px solid var(--border);
|
|
background: rgba(0,0,0,0.15);
|
|
}
|
|
.tab {
|
|
border: 0;
|
|
background: transparent;
|
|
color: var(--text-dim);
|
|
padding: 10px 16px;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
border-bottom: 2px solid transparent;
|
|
margin-bottom: -1px;
|
|
}
|
|
.tab.active,
|
|
.tab:hover {
|
|
color: var(--text);
|
|
}
|
|
.tab.active {
|
|
border-bottom-color: var(--accent);
|
|
}
|
|
.tab-pane { display: none; padding: 14px; }
|
|
.tab-pane.active { display: block; }
|
|
|
|
/* Section titles */
|
|
.section-title {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--text-dim);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
margin: 14px 0 8px;
|
|
}
|
|
.section-title:first-child { margin-top: 0; }
|
|
.flex-between { display: flex; justify-content: space-between; align-items: center; }
|
|
.hint { color: var(--text-muted); font-size: 11px; text-transform: none; font-weight: 400; }
|
|
|
|
/* Mode bar */
|
|
.mode-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.mode-label { color: var(--text-dim); font-size: 12px; }
|
|
.mode-toggle {
|
|
display: inline-flex;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
padding: 2px;
|
|
}
|
|
.mode-btn {
|
|
border: 0;
|
|
background: transparent;
|
|
color: var(--text-dim);
|
|
padding: 5px 12px;
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
.mode-btn.active {
|
|
background: rgba(214, 162, 74, 0.18);
|
|
color: var(--text);
|
|
}
|
|
.estimate {
|
|
margin-left: auto;
|
|
color: var(--accent);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Suite grid */
|
|
.suite-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
gap: 8px;
|
|
}
|
|
.suite-card {
|
|
text-align: left;
|
|
border: 1px solid var(--border);
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
border-radius: var(--radius-sm);
|
|
padding: 10px 11px;
|
|
cursor: pointer;
|
|
transition: .12s;
|
|
position: relative;
|
|
}
|
|
.suite-card:hover { border-color: var(--border-strong); background: var(--bg-hover); }
|
|
.suite-card.active {
|
|
border-color: var(--accent);
|
|
background: rgba(214, 162, 74, 0.1);
|
|
}
|
|
.suite-card strong {
|
|
display: block;
|
|
font-size: 13px;
|
|
margin-bottom: 3px;
|
|
}
|
|
.suite-meta {
|
|
display: flex;
|
|
gap: 8px;
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
}
|
|
.suite-card .del {
|
|
position: absolute;
|
|
top: 5px; right: 5px;
|
|
padding: 2px 5px;
|
|
font-size: 11px;
|
|
color: #ffafa3;
|
|
opacity: 0;
|
|
transition: .12s;
|
|
}
|
|
.suite-card:hover .del { opacity: 1; }
|
|
|
|
/* Benchmark picker */
|
|
.bench-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.search {
|
|
flex: 1;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text);
|
|
padding: 6px 10px;
|
|
font-size: 13px;
|
|
outline: none;
|
|
}
|
|
.search:focus { border-color: var(--accent); }
|
|
.counter {
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
margin-left: auto;
|
|
}
|
|
.category-chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.chip {
|
|
border: 1px solid var(--border);
|
|
background: var(--bg);
|
|
color: var(--text-dim);
|
|
padding: 3px 9px;
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
}
|
|
.chip.active {
|
|
border-color: var(--accent);
|
|
color: var(--accent);
|
|
background: rgba(214, 162, 74, 0.1);
|
|
}
|
|
.benchmark-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
|
|
gap: 6px;
|
|
max-height: 360px;
|
|
overflow: auto;
|
|
padding-right: 4px;
|
|
}
|
|
.bench-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
padding: 5px 8px;
|
|
border-radius: var(--radius-sm);
|
|
border: 1px solid var(--border);
|
|
background: var(--bg);
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
color: var(--text);
|
|
user-select: none;
|
|
}
|
|
.bench-item:hover { background: var(--bg-hover); }
|
|
.bench-item input { width: auto; margin: 0; }
|
|
.bench-item .name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.bench-item .tag {
|
|
font-size: 10px;
|
|
padding: 1px 4px;
|
|
border-radius: 4px;
|
|
background: rgba(94, 196, 160, 0.15);
|
|
color: var(--accent-2);
|
|
}
|
|
.bench-item .warn {
|
|
background: rgba(217, 88, 76, 0.15);
|
|
color: #ffafa3;
|
|
}
|
|
.bench-item.hidden-item { display: none; }
|
|
|
|
/* Forms */
|
|
.path-grid,
|
|
.grid-2,
|
|
.grid-4 {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
.path-grid,
|
|
.grid-2 { grid-template-columns: 1fr 1fr; }
|
|
.grid-4 { grid-template-columns: repeat(4, 1fr); }
|
|
.path-grid .full { grid-column: 1 / -1; }
|
|
label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
font-size: 11px;
|
|
color: var(--text-dim);
|
|
font-weight: 500;
|
|
}
|
|
label span small { font-weight: 400; }
|
|
input, select {
|
|
width: 100%;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text);
|
|
padding: 6px 9px;
|
|
font-size: 13px;
|
|
outline: none;
|
|
}
|
|
input:focus, select:focus { border-color: var(--accent); }
|
|
.muted { color: var(--text-muted); }
|
|
|
|
.preset-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 14px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.fold {
|
|
margin-top: 14px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
padding: 10px 12px;
|
|
}
|
|
.fold summary {
|
|
cursor: pointer;
|
|
color: var(--text-dim);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
.fold > .grid-2 { margin-top: 10px; }
|
|
.mt { margin-top: 10px; }
|
|
|
|
.form-msg {
|
|
margin-top: 12px;
|
|
font-size: 12px;
|
|
min-height: 18px;
|
|
}
|
|
.form-msg.error { color: #ffafa3; }
|
|
.form-msg.ok { color: var(--accent-2); }
|
|
|
|
/* Status panel */
|
|
.active-head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
.active-head h2 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
font-weight: 600;
|
|
background: var(--bg);
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border);
|
|
}
|
|
.badge.running { color: var(--accent-2); border-color: rgba(94, 196, 160, 0.4); }
|
|
.badge.completed { color: var(--accent); border-color: rgba(214, 162, 74, 0.4); }
|
|
.badge.failed, .badge.stopped { color: #ffafa3; border-color: rgba(217, 88, 76, 0.4); }
|
|
|
|
.active-card {
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
padding: 10px 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.active-card.running { border-color: rgba(94, 196, 160, 0.45); }
|
|
.active-card.failed, .active-card.stopped { border-color: rgba(217, 88, 76, 0.35); }
|
|
.active-card.completed { border-color: rgba(214, 162, 74, 0.35); }
|
|
.active-id {
|
|
font-size: 12px;
|
|
color: var(--text-dim);
|
|
margin-bottom: 8px;
|
|
}
|
|
.progress-wrap {
|
|
height: 5px;
|
|
background: var(--border);
|
|
border-radius: 999px;
|
|
overflow: hidden;
|
|
}
|
|
.progress-bar {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, var(--accent-2), var(--accent));
|
|
transition: width .3s;
|
|
}
|
|
.progress-text {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.cmd-wrap, .log-wrap, .jobs-wrap { margin-bottom: 12px; }
|
|
.cmd-head, .log-head, .jobs-head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 6px;
|
|
}
|
|
.cmd-head span, .log-head span, .jobs-head h3 {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text-dim);
|
|
}
|
|
.jobs-head h3 { margin: 0; }
|
|
.cmd {
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
font-size: 11px;
|
|
line-height: 1.5;
|
|
color: var(--text-dim);
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
padding: 8px 10px;
|
|
max-height: 90px;
|
|
overflow: auto;
|
|
}
|
|
.log-view {
|
|
height: 280px;
|
|
overflow: auto;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
padding: 10px;
|
|
margin: 0;
|
|
font-size: 11px;
|
|
line-height: 1.5;
|
|
color: #c5d0c7;
|
|
}
|
|
.check-inline {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
}
|
|
.check-inline input { width: auto; }
|
|
|
|
.job-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
max-height: 160px;
|
|
overflow: auto;
|
|
}
|
|
.job-item {
|
|
text-align: left;
|
|
width: 100%;
|
|
border: 1px solid var(--border);
|
|
background: var(--bg);
|
|
border-radius: var(--radius-sm);
|
|
padding: 7px 10px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
.job-item:hover { border-color: var(--border-strong); }
|
|
.job-item.active { border-color: var(--accent); }
|
|
.job-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
.job-row strong {
|
|
color: var(--text);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.job-row small { color: var(--text-muted); }
|
|
|
|
/* Buttons */
|
|
button {
|
|
border-radius: var(--radius-sm);
|
|
border: 1px solid var(--border);
|
|
padding: 6px 12px;
|
|
cursor: pointer;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
transition: .12s;
|
|
}
|
|
button:hover { background: var(--bg-hover); }
|
|
button:disabled { opacity: .45; cursor: not-allowed; }
|
|
button.primary {
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
color: #1a1408;
|
|
}
|
|
button.primary:hover { filter: brightness(1.08); }
|
|
button.danger {
|
|
background: rgba(217, 88, 76, 0.12);
|
|
border-color: rgba(217, 88, 76, 0.4);
|
|
color: #ffafa3;
|
|
}
|
|
button.ghost {
|
|
background: transparent;
|
|
border-color: transparent;
|
|
color: var(--text-dim);
|
|
padding: 5px 8px;
|
|
}
|
|
button.ghost:hover { background: rgba(255,255,255,0.05); color: var(--text); }
|
|
|
|
.hidden { display: none !important; }
|
|
|
|
/* Results page */
|
|
.results-layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
.filters-panel { padding: 14px; }
|
|
.filters-panel .block + .block { margin-top: 14px; }
|
|
.filters-panel h2 {
|
|
margin: 0 0 8px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text-dim);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.charts-panel { padding: 14px; }
|
|
|
|
.pick-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
max-height: 200px;
|
|
overflow: auto;
|
|
}
|
|
.pick-list.bench-pick { max-height: 280px; }
|
|
.pick-item {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 7px 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg);
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
.pick-item input { width: auto; }
|
|
.pick-main { display: flex; flex-direction: column; gap: 1px; flex: 1; }
|
|
.pick-main strong { color: var(--text); font-size: 12px; }
|
|
.pick-main small { color: var(--text-muted); font-size: 11px; }
|
|
.swatch { width: 8px; height: 24px; border-radius: 999px; }
|
|
|
|
.pick-cat {
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
padding: 8px;
|
|
background: var(--bg);
|
|
}
|
|
.pick-cat + .pick-cat { margin-top: 6px; }
|
|
.pick-cat-head {
|
|
display: flex; align-items: center; gap: 6px; margin-bottom: 6px;
|
|
}
|
|
.pick-cat-head strong { color: var(--text); font-size: 11px; }
|
|
.pick-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
|
|
.pick-chip {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 5px;
|
|
padding: 5px 7px;
|
|
border-radius: var(--radius-sm);
|
|
border: 1px solid var(--border);
|
|
background: var(--bg);
|
|
cursor: pointer;
|
|
font-size: 11px;
|
|
color: var(--text);
|
|
}
|
|
.pick-chip input { width: auto; }
|
|
|
|
.chart-block + .chart-block { margin-top: 18px; }
|
|
.chart-head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 6px;
|
|
}
|
|
.chart-head h2 {
|
|
margin: 0;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
}
|
|
.chart-wrap {
|
|
height: 300px;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
padding: 10px;
|
|
position: relative;
|
|
}
|
|
.chart-wrap.radar-wrap { height: 340px; }
|
|
.chart-wrap.empty::after {
|
|
content: attr(data-empty);
|
|
position: absolute; inset: 0;
|
|
display: flex; align-items: center; justify-content: center;
|
|
color: var(--text-muted); font-size: 12px;
|
|
background: rgba(11,15,13,0.85);
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
.table-wrap {
|
|
overflow: auto;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg);
|
|
}
|
|
#scoreTable {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 12px;
|
|
font-family: var(--mono);
|
|
}
|
|
#scoreTable th, #scoreTable td {
|
|
padding: 8px 10px;
|
|
border-bottom: 1px solid var(--border);
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
#scoreTable th:first-child,
|
|
#scoreTable td:first-child,
|
|
#scoreTable .bench-col {
|
|
text-align: left;
|
|
position: sticky; left: 0;
|
|
background: var(--bg);
|
|
}
|
|
#scoreTable th { color: var(--text-dim); font-weight: 500; background: var(--bg-elev); }
|
|
#scoreTable td.best { color: var(--accent); font-weight: 600; }
|
|
#scoreTable td.na { color: var(--text-muted); }
|
|
#scoreTable .best-name { color: var(--accent-2); }
|
|
|
|
.rank-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
gap: 8px;
|
|
}
|
|
.rank-card {
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg);
|
|
padding: 10px;
|
|
}
|
|
.rank-card strong { display: block; margin-bottom: 6px; font-size: 12px; }
|
|
.rank-row {
|
|
display: grid;
|
|
grid-template-columns: 22px minmax(0, 1fr) auto;
|
|
gap: 6px;
|
|
align-items: start;
|
|
font-size: 12px;
|
|
padding: 4px 0;
|
|
color: var(--text-dim);
|
|
}
|
|
.rank-idx { color: var(--accent); font-family: var(--mono); }
|
|
.rank-name { color: var(--text); word-break: break-all; line-height: 1.3; }
|
|
.rank-score { font-family: var(--mono); color: var(--text); white-space: nowrap; }
|
|
|
|
@media (max-width: 1100px) {
|
|
.layout, .results-layout { grid-template-columns: 1fr; }
|
|
.grid-4 { grid-template-columns: repeat(2, 1fr); }
|
|
.action-bar { flex-wrap: wrap; }
|
|
}
|
|
@media (max-width: 720px) {
|
|
.grid-2, .grid-4, .path-grid { grid-template-columns: 1fr; }
|
|
.suite-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.benchmark-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.top { flex-direction: column; align-items: flex-start; }
|
|
}
|