From 97f08b32deb37ce55794fd1f133132eb6582a0d3 Mon Sep 17 00:00:00 2001 From: Zac Gaetano Date: Sat, 23 May 2026 16:27:13 -0400 Subject: [PATCH] ui(jobs): widen Time + Progress columns, narrow Node + Priority MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Time was clipping the full "done May 22 · 2:23 PM · 6h ago" string on terminal-state rows; Progress's bar felt cramped next to the percent. Node carries only "primary" / "—" so it can shrink, and Priority's "normal" / "high" badge doesn't need 80px either. Net widening absorbed by the flexible Asset column. Co-Authored-By: Claude Opus 4.7 --- services/web-ui/public/styles-rest.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/web-ui/public/styles-rest.css b/services/web-ui/public/styles-rest.css index dbf9e32..55df268 100644 --- a/services/web-ui/public/styles-rest.css +++ b/services/web-ui/public/styles-rest.css @@ -389,7 +389,10 @@ } .job-row { display: grid; - grid-template-columns: 20px 110px 1fr 90px 200px 180px 80px 90px; + /* status · Job · Asset · Node · Progress · Time · Priority · Actions + Time needs room for "done May 22 · 2:23 PM · 6h ago"; Progress hosts + the bar + percent; Node is just "primary" or "—" so it can be tight. */ + grid-template-columns: 20px 110px 1fr 60px 240px 240px 70px 90px; align-items: center; gap: 12px; padding: 10px 16px;