diff --git a/console/src/render.ts b/console/src/render.ts index a2ff99d..85b07f0 100644 --- a/console/src/render.ts +++ b/console/src/render.ts @@ -238,10 +238,11 @@ export function fleetConfigHtml( : `

No fleets configured — add [fleet.<name>] entries to the config file above. Managing ${escapeHtml(cfg.default_cluster)} via the default credential chain.

`; return `
- fleets +

Fleets

${path}
+

Select a fleet to manage.

${body}
`; } diff --git a/console/src/styles.css b/console/src/styles.css index 8a52a60..2187799 100644 --- a/console/src/styles.css +++ b/console/src/styles.css @@ -480,15 +480,16 @@ button.act:disabled { color: var(--ok); } -/* ---- Fleet config panel (ADR #19: the "declare" side) ---- */ +/* ---- Fleets screen (ADR #19: the "declare" side; ADR #83: promoted from a + sidebar panel to the console's top-level screen — Slice 1) ---- */ .config-wrap { - margin: 0 0 12px; + margin: 0 0 16px; } .config { border: 1px solid var(--border); border-radius: 6px; background: var(--panel); - padding: 10px 12px; + padding: 14px 16px; font-size: 13px; } .cfg-head { @@ -503,6 +504,17 @@ button.act:disabled { font-size: 11px; letter-spacing: 0.04em; } +.cfg-title { + margin: 0; + font-size: 18px; + font-weight: 600; + color: var(--text); +} +.cfg-subtitle { + margin: 0 0 10px; + color: var(--muted); + font-size: 12px; +} .cfg-path { color: var(--muted); font-size: 12px;