From 5106ec3f9769e8cb6b6144c2ab1bd065bc9f2ebd Mon Sep 17 00:00:00 2001 From: Felix Edel Date: Tue, 7 Jan 2025 11:22:06 +0100 Subject: [PATCH] UI: Fix border radius for job-progress-bar backdrop This adds a missing CSS rule to align the border radius of the semi-transparent backdrop of a job-progress-bar with the other progress-bar elements. As this is only a tiny detail, I've uploaded a screenshot[1] with a before/after comparison. [1]: https://imgur.com/a/DRY81Yo Change-Id: I5c5961b778910d4789e294f4838208131684627b --- web/src/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/index.css b/web/src/index.css index 918f351149..4cdfc51e7a 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -478,6 +478,7 @@ a.refresh { height: 24px; } +.zuul-progress div.pf-c-progress__bar::before, .zuul-progress-animated div.pf-c-progress__bar::before { border-radius: 3px; }