Add V1 workbench status strip
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-17 00:55:12 +02:00
parent cee1a7f022
commit 8c3813d442
8 changed files with 293 additions and 0 deletions
+83
View File
@@ -134,6 +134,89 @@ ul {
padding: 0.6rem;
}
.workbench-status-strip {
margin: 1rem 0;
}
.status-strip-header {
display: flex;
gap: 1rem;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 0.75rem;
}
.status-strip-header h2 {
margin-bottom: 0;
}
.status-next-action {
max-width: 32rem;
margin: 0;
color: var(--muted);
text-align: right;
}
.status-strip-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 0.65rem;
}
.status-tile {
min-height: 7rem;
border: 1px solid var(--line);
border-left: 4px solid #64748b;
border-radius: 8px;
padding: 0.65rem;
background: #ffffff;
}
.status-tile strong {
display: block;
margin-top: 0.55rem;
font-size: 1.05rem;
}
.status-tile p {
margin: 0.35rem 0 0;
color: var(--muted);
font-size: 0.88rem;
}
.status-tile-ready {
border-left-color: #15803d;
}
.status-tile-warning {
border-left-color: #b45309;
}
.status-tile-waiting {
border-left-color: #64748b;
}
.status-tile-topline {
display: flex;
gap: 0.5rem;
align-items: center;
justify-content: space-between;
color: var(--muted);
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
}
.status-pill {
width: auto;
border: 1px solid var(--line);
border-radius: 999px;
padding: 0.1rem 0.45rem;
background: #f8fafc;
color: #334155;
text-transform: lowercase;
}
.metric {
display: block;
font-size: 1.4rem;