From cbbc51b6f9fdac9a90356b5f49daae73e33c1dfb Mon Sep 17 00:00:00 2001 From: LOKESH SRIVASTAVA <93934416+Lokeshsri11@users.noreply.github.com> Date: Fri, 21 Apr 2023 14:33:20 +0530 Subject: [PATCH] Improve contrast of progress bar showing number of failures (#5080) This commit aims to enhance the contrast of the progress bar used to display the number of failures. The previous implementation had low contrast, making it difficult to discern the actual progress. The updated design uses a more prominent color scheme, improving visibility and making it easier to understand the number of failures at a glance. This change improves the overall user experience and ensures that the progress bar is more accessible to all users. --- assets/stylesheets/openqa_theme.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/stylesheets/openqa_theme.scss b/assets/stylesheets/openqa_theme.scss index fec1fe93b31..167b82e21d9 100644 --- a/assets/stylesheets/openqa_theme.scss +++ b/assets/stylesheets/openqa_theme.scss @@ -34,7 +34,7 @@ $link-hover-color: darken($link-color, 15%) !default; $color-softfailed: #EEB560; $color-ok: #CDFFB9; $color-warning: #ffff99; -$color-failed: #FF4E46; +$color-failed: #cc3333; $color-result-failed: #FF9E9B; $color-incomplete: #AF1E11; $color-result: #3c3c3c;