ui(jobs): widen Time + Progress columns, narrow Node + Priority
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 <noreply@anthropic.com>
This commit is contained in:
parent
9a6ae3b786
commit
97f08b32de
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue