agent ui: shared page-header nav on the stats + screen sub-pages
Per mara: the agent sub-pages should use the same back-link nav as the dashboard's standalone pages, while the live terminal page stays as-is (no tabs of each other, not an SPA). Pull the shared `@hive/shared/chrome.css` into the agent bundle (via agent.css's existing @import line; esbuild inlines it into the one dist/static/agent.css all agent pages link), then: - stats.html: replace the ASCII banner + bespoke `.stats-nav` with the shared `page-header` (← live back-link + dashboard link + title). Keeps the #back-link / #dashboard-link / #title ids stats.js drives, and the time-window picker + charts below are unchanged. - screen.html: replace the bespoke `#toolbar` nav with the same `page-header` (← agent back-link + title), keeping the fit / match / debug controls + the status text in the bar. The live terminal (index.html) is untouched. The now-unused `.banner` / `.stats-nav` / `#toolbar` rules in agent.css are left for a follow-up prune to keep this diff focused on the markup. Agent build clean. Closes #1874.
This commit is contained in:
parent
d5202ebf60
commit
98d015edea
3 changed files with 13 additions and 10 deletions
|
|
@ -2,6 +2,10 @@
|
|||
Bundled in front of the agent-only rules below via esbuild. */
|
||||
@import "@hive/shared/base.css";
|
||||
@import "@hive/shared/terminal.css";
|
||||
/* Shared page-header chrome (page-header / page-back / page-title) — gives the
|
||||
agent SUB-pages (stats, screen) the same back-link nav the dashboard's
|
||||
standalone pages use. The live terminal page keeps its own header. */
|
||||
@import "@hive/shared/chrome.css";
|
||||
|
||||
/* ─── full-screen layout overrides ─────────────────────────────────
|
||||
The agent page mounts a full-viewport terminal under a fixed
|
||||
|
|
|
|||
|
|
@ -10,14 +10,14 @@
|
|||
<link rel="stylesheet" href="static/agent.css">
|
||||
</head>
|
||||
<body class="screen-shell">
|
||||
<div id="toolbar">
|
||||
<strong>🖥 screen</strong>
|
||||
<a href="./" title="back to agent page">← agent</a>
|
||||
<header class="page-header">
|
||||
<a class="page-back" href="./" title="back to agent page">← agent</a>
|
||||
<span class="page-title">🖥 screen</span>
|
||||
<button id="fit-toggle" class="tbtn" title="Toggle fit-to-window scaling">⤢ fit</button>
|
||||
<button id="match-toggle" class="tbtn" title="Resize the remote desktop to fit this window" disabled>⤡ match size</button>
|
||||
<button id="debug-toggle" class="tbtn" title="Toggle RFB debug log">debug</button>
|
||||
<span id="status">connecting…</span>
|
||||
</div>
|
||||
</header>
|
||||
<div id="canvas-wrap"><canvas id="c"></canvas></div>
|
||||
<div id="msg"></div>
|
||||
<div id="debug-log"></div>
|
||||
|
|
|
|||
|
|
@ -10,12 +10,11 @@
|
|||
<link rel="stylesheet" href="static/agent.css">
|
||||
</head>
|
||||
<body>
|
||||
<pre class="banner">░▒▓█▓▒░ … ░▒▓█▓▒░ hyperhive ag3nt · stats ░▒▓█▓▒░</pre>
|
||||
<div class="stats-nav">
|
||||
<a id="back-link" href="./">← live</a>
|
||||
<a id="dashboard-link" href="#">dashboard</a>
|
||||
<h2 id="title">◆ … ◆</h2>
|
||||
</div>
|
||||
<header class="page-header">
|
||||
<a class="page-back" id="back-link" href="./">← live</a>
|
||||
<a class="page-back" id="dashboard-link" href="#">dashboard ↗</a>
|
||||
<span class="page-title" id="title">◆ … ◆</span>
|
||||
</header>
|
||||
|
||||
<div class="window-tabs" id="window-tabs" role="tablist">
|
||||
<button type="button" data-tab="1h">last 1h</button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue