From 298836d2f3aa0a882ed6745acc39cb8f765ad649 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sat, 16 May 2026 23:19:36 -0400 Subject: [PATCH] Keep dashboard status chips on a single line Status chips wrapped to two lines in narrow table columns (e.g. the session State column). Pin .chip to white-space: nowrap so an enumerated state always reads as one token. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/MxGateway.Server/wwwroot/css/dashboard.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/MxGateway.Server/wwwroot/css/dashboard.css b/src/MxGateway.Server/wwwroot/css/dashboard.css index ee57e3a..eab199c 100644 --- a/src/MxGateway.Server/wwwroot/css/dashboard.css +++ b/src/MxGateway.Server/wwwroot/css/dashboard.css @@ -185,6 +185,9 @@ code { color: var(--accent-deep); } +/* Status chips never wrap, even in a narrow table column. */ +.chip { white-space: nowrap; } + /* ── Empty / placeholder state ───────────────────────────────────────────────*/ .empty-state { background: #fbfbf9;