34f3c2888f
Nine screens against orchestra-ui-spec.md and the accepted mockups, on the ethos design system: signal violet #8F7AE5, the routing fork motif, the 64px rail and 56px top bar, mono for every machine value and sans for every human one. Each screen was built by its own agent against a fixed foundation, so the shell, tokens and primitives have one author and the screens cannot drift into nine dialects. Real data only. Where no endpoint exists the screen says which one it needs instead of inventing a value. That is most of what was learned here: Steer / Correct is disabled because nothing records a human decision from the web, take-control is disabled because nothing forwards keystrokes to a pane, context occupancy is missing from three screens, and projects can show no repo, remote, quality gate or verification policy because those live only in config.jsonc. Three bugs the render caught that no computed value would have: The previous stylesheet fought every shared class name and leaked properties the new rules never mention, which is how position:fixed survived on .topbar. It is now scoped under .legacy and applies only to the login route, which also stops its green accent and its backdrop-filter from reaching the console. Go marshals a zero time.Time as "0001-01-01T00:00:00Z" and omitempty does not omit a struct, so absent timestamps arrived populated-looking and rendered as "739855d ago". Stripped once at the API boundary every screen reads through, with a test. Long machine ids overflowed their cards and painted under the next one. Verified by rendering: chromium screenshots of the dashboard, tasks, task detail, terminal, workers and review at 1440px, and the dashboard at 390px. Geist is still not on disk, so both stacks fall back to the system faces. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CVbaKucEYBjMqVeUgJUsc1
127 lines
1.9 KiB
CSS
127 lines
1.9 KiB
CSS
/* Dashboard-only geometry. Everything structural (panel, row, table, stat,
|
|
chip, meter) comes from orchestra.css and is not restated here. */
|
|
|
|
.head-stamp {
|
|
margin-left: auto;
|
|
font-size: 12px;
|
|
color: var(--text-lo);
|
|
}
|
|
|
|
.stamp-fault {
|
|
color: #e06c60;
|
|
}
|
|
|
|
/* The attention mark is a square of the row's own tone — a signal, never a
|
|
wash across the row. */
|
|
.att-mark {
|
|
display: grid;
|
|
place-items: center;
|
|
width: 34px;
|
|
height: 34px;
|
|
flex: none;
|
|
border-radius: var(--r-sm);
|
|
border: 1px solid var(--line);
|
|
background: var(--bg-2);
|
|
color: var(--text-mid);
|
|
}
|
|
|
|
.att-mark[data-kind='fault'] {
|
|
border-color: rgba(216, 166, 87, 0.3);
|
|
background: rgba(216, 166, 87, 0.1);
|
|
color: #d8a657;
|
|
}
|
|
|
|
.att-mark[data-kind='review'] {
|
|
border-color: var(--accent-line);
|
|
background: var(--accent-dim);
|
|
color: var(--accent-hi);
|
|
}
|
|
|
|
.att-task {
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.att-when {
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.row-main,
|
|
.att-task,
|
|
.cell-link {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.row-title,
|
|
.row-sub {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.cell-link {
|
|
color: inherit;
|
|
}
|
|
|
|
.phase-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.table td .mono[data-expired] {
|
|
color: #e06c60;
|
|
}
|
|
|
|
.worker-lines {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 14px;
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--r-sm);
|
|
}
|
|
|
|
.worker-line {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 9px 12px;
|
|
border-bottom: 1px solid var(--line);
|
|
font-size: 12px;
|
|
transition: background var(--fast) var(--ease);
|
|
}
|
|
|
|
.worker-line:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.worker-line:hover {
|
|
background: var(--bg-2);
|
|
}
|
|
|
|
.worker-seen {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.worker-errors {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.worker-errors p {
|
|
margin: 0 0 4px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.att-task,
|
|
.att-when {
|
|
display: none;
|
|
}
|
|
|
|
.worker-line {
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|