Skip to content

Commit 5e25b25

Browse files
committed
fix(webui): add .pipeline-card { display: flex } CSS rule
Pipeline cards were rendering as display:inline — children stacked vertically instead of horizontally. Adding explicit .pipeline-card flex rule fixes the layout. Confirmed via Playwright: card display changes from inline to flex, children get correct widths (4px accent, flex content, action buttons).
1 parent abf8a82 commit 5e25b25

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

internal/webui/static/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3255,6 +3255,9 @@ body > .main-content > .card:last-of-type:has(h2) { display: none !important; }
32553255
.fp-name { font-size: 0.8rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
32563256
.fp-stat { font-size: 0.68rem; color: var(--color-text-muted); font-variant-numeric: tabular-nums; }
32573257

3258+
/* Pipeline list card */
3259+
.pipeline-card { display: flex; }
3260+
32583261
/* ── Issues page ── */
32593262
.badge-issue-open { font-size: 0.6rem; background: var(--color-completed-bg); color: var(--color-completed); }
32603263
.badge-issue-closed { font-size: 0.6rem; background: rgba(139,92,246,0.12); color: #c4b5fd; }

0 commit comments

Comments
 (0)