From d3fdbbc5ad3bf74c481bb73487b8b5b40f0d4e52 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Thu, 2 Jul 2026 22:52:31 +0200 Subject: [PATCH] hub v0.30.1: status badges no-wrap (PENDING/NO REPORT wrapped in narrow columns) --- hub/CHANGELOG.md | 7 +++++++ hub/internal/web/templates/style.css | 1 + 2 files changed, 8 insertions(+) diff --git a/hub/CHANGELOG.md b/hub/CHANGELOG.md index 97cd9fa..ae0b6c9 100644 --- a/hub/CHANGELOG.md +++ b/hub/CHANGELOG.md @@ -1,5 +1,12 @@ # Felhom Hub — Changelog +## v0.30.1 — status badge no-wrap (2026-07-02) + +Found in the authenticated D4 validation pass: multi-word status tags (PENDING in a narrow +dashboard column, NO REPORT on hosts) wrapped between the CSS dot and the label. One line: +`white-space: nowrap` on `.status-badge`. + + ## v0.30.0 — TASK-D4: design system v2 re-skin (appearance only) (2026-07-02) Last surface of the design sprint (controller D0/D1, website D3). The hub leaves its Tailwind-slate diff --git a/hub/internal/web/templates/style.css b/hub/internal/web/templates/style.css index 638f265..949f3de 100644 --- a/hub/internal/web/templates/style.css +++ b/hub/internal/web/templates/style.css @@ -153,6 +153,7 @@ header h1 { /* Status badges */ .status-badge { display: inline-block; + white-space: nowrap; padding: 0.15rem 0.5rem; border-radius: var(--radius); font-size: 0.75rem;