From eb5f7c455092f52b30887a4e3a4eeeddafba90df Mon Sep 17 00:00:00 2001 From: Fenil Shah Date: Wed, 15 Jan 2025 17:12:51 +0530 Subject: [PATCH 1/2] Changed severity badges colors --- .../web/src/apps/dashboard/pages/dashboard.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css index 8fa91a8489..0e97594360 100644 --- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css +++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css @@ -199,21 +199,21 @@ } .badge-wrapper-CRITICAL .Polaris-Badge { - background-color: #E45357 !important; - color: white !important; + background-color: #f6c4c8 !important; + color: #560c0c !important; } .badge-wrapper-HIGH .Polaris-Badge { - background-color: #EF864C !important; - color: white !important; + background-color: #f6deeb !important; + color: #570d2d !important; } .badge-wrapper-MEDIUM .Polaris-Badge { - background-color: #F6C564 !important; - color: white !important; + background-color: #f9d8c5 !important; + color: #763211 !important; } .badge-wrapper-LOW .Polaris-Badge { - background-color: #6FD1A6; - color: white !important; + background-color: #fcefd0; + color: #6d4e16 !important; } \ No newline at end of file From a341bde0a2ac0fc71a094f07ef9519c8eae4e4df Mon Sep 17 00:00:00 2001 From: Fenil Shah Date: Wed, 15 Jan 2025 17:16:26 +0530 Subject: [PATCH 2/2] changed the font weight to medium --- .../polaris_web/web/src/apps/dashboard/pages/dashboard.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css index 0e97594360..98ff039c87 100644 --- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css +++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/dashboard.css @@ -201,19 +201,23 @@ .badge-wrapper-CRITICAL .Polaris-Badge { background-color: #f6c4c8 !important; color: #560c0c !important; + font-weight: 500 !important; } .badge-wrapper-HIGH .Polaris-Badge { background-color: #f6deeb !important; color: #570d2d !important; + font-weight: 500 !important; } .badge-wrapper-MEDIUM .Polaris-Badge { background-color: #f9d8c5 !important; color: #763211 !important; + font-weight: 500 !important; } .badge-wrapper-LOW .Polaris-Badge { background-color: #fcefd0; color: #6d4e16 !important; + font-weight: 500 !important; } \ No newline at end of file