From 56dbdfc527b1517dbafe755d2d0a932868fc04f2 Mon Sep 17 00:00:00 2001 From: mkz212 <82271669+mkz212@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:12:48 +0100 Subject: [PATCH 1/2] Menu background dark in dark themes (#1642) --- ui/src/scss/themes/themes-dark.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ui/src/scss/themes/themes-dark.scss b/ui/src/scss/themes/themes-dark.scss index 5aa7a29d5..8a62e0cbe 100644 --- a/ui/src/scss/themes/themes-dark.scss +++ b/ui/src/scss/themes/themes-dark.scss @@ -19,6 +19,22 @@ border-bottom-width: 1px; } + .dropdown-menu { + background-color: $secondaryBackground; + } + + .dropdown-divider { + border-top: 1px solid #555555; + } + + .navbar .dropdown-menu a:not(.active) { + color: #eeeeee; + } + + .dropdown-item:hover, .dropdown-item:focus { + background-color: #555555; + } + .primary-text { color: $darkModePrimary; } From ed64da4dac904fa9536eaab3c30c38b7b03f28f8 Mon Sep 17 00:00:00 2001 From: Ben <43026681+bwp91@users.noreply.github.com> Date: Tue, 7 Nov 2023 13:44:18 +0000 Subject: [PATCH 2/2] Revert "Menu background dark in dark themes" (#1643) Reverts homebridge/homebridge-config-ui-x#1642 --- ui/src/scss/themes/themes-dark.scss | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/ui/src/scss/themes/themes-dark.scss b/ui/src/scss/themes/themes-dark.scss index 8a62e0cbe..5aa7a29d5 100644 --- a/ui/src/scss/themes/themes-dark.scss +++ b/ui/src/scss/themes/themes-dark.scss @@ -19,22 +19,6 @@ border-bottom-width: 1px; } - .dropdown-menu { - background-color: $secondaryBackground; - } - - .dropdown-divider { - border-top: 1px solid #555555; - } - - .navbar .dropdown-menu a:not(.active) { - color: #eeeeee; - } - - .dropdown-item:hover, .dropdown-item:focus { - background-color: #555555; - } - .primary-text { color: $darkModePrimary; }