From 8140b0de541183b8e03fec27b63399953a9779e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matja=C5=BE=20Horvat?= Date: Tue, 24 Oct 2023 00:21:56 +0200 Subject: [PATCH] In Dark theme, add more contrast to the inactive riority stars in heading --- pontoon/base/static/css/dark-theme.css | 1 + pontoon/base/static/css/light-theme.css | 1 + pontoon/base/static/css/style.css | 4 ++++ 3 files changed, 6 insertions(+) diff --git a/pontoon/base/static/css/dark-theme.css b/pontoon/base/static/css/dark-theme.css index 9f8bca2d2a..8408a7937f 100644 --- a/pontoon/base/static/css/dark-theme.css +++ b/pontoon/base/static/css/dark-theme.css @@ -21,6 +21,7 @@ --button-background-2: #3f4752; --button-background-hover-2: #272a2f; --popup-background-2: #272a2f; + --icon-background-2: #4d5967; /* Homepage */ --homepage-background-image: url(../img/background.svg); diff --git a/pontoon/base/static/css/light-theme.css b/pontoon/base/static/css/light-theme.css index 25de6ac844..fb90d5f8ff 100644 --- a/pontoon/base/static/css/light-theme.css +++ b/pontoon/base/static/css/light-theme.css @@ -20,6 +20,7 @@ --button-background-2: #e8e8e8; --button-background-hover-2: #f6f6f6; --popup-background-2: #f6f6f6; + --icon-background-2: #d0d0d0; /* Tooltip */ --tooltip-background: #000000dd; diff --git a/pontoon/base/static/css/style.css b/pontoon/base/static/css/style.css index f7e1157c0c..dcc18314d8 100755 --- a/pontoon/base/static/css/style.css +++ b/pontoon/base/static/css/style.css @@ -1420,6 +1420,10 @@ body > form, float: left; } +.priority .value .fa-star { + color: var(--icon-background-2); +} + .priority .fa-star.active { color: var(--light-green-1); }