Remove or shorten comment blocks that: - explain where code used to live (impl history) - duplicate rationale already in docs/web-ui.md - contain speculative/future-work notes Changes: - tabs.js: drop "SYST3M tab used to render this" history; keep badge purpose - schedules.js: drop "used to be a card layout" history + speculative nit note - stream-worker.js: replace 10-line problem-statement with docs pointer (rationale already in docs/web-ui.md SSE multiplexing section); trim future-work parenthetical from subscription-tracking comment - system-sections.css: drop extraction-history prose; keep what it does - core.css: drop move-history prose; keep what it imports and why Part of issue cleanup per operator feedback.
23 lines
709 B
CSS
23 lines
709 B
CSS
/* ─── /core.html — C0R3 page ───────────────────────────────────────
|
|
Kept state (tombstones) and container load. Section rules imported
|
|
from system-sections.css (shared with dashboard.css + builds.css). */
|
|
@import "./system-sections.css";
|
|
|
|
body.core-shell {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Fill the header row next to the ← home back-link, same as the logs
|
|
sub-tab strip. */
|
|
.core-tabbar {
|
|
flex: 1;
|
|
}
|
|
|
|
.core-main {
|
|
padding: 1.2em 1.5em 2em;
|
|
}
|
|
|
|
/* createTabStrip toggles the native `hidden` attribute on inactive
|
|
panes; ensure it wins over any inherited display. */
|
|
.core-pane[hidden] { display: none; }
|