From ef476b8fe3fbe2e3f55575654fdedd11d6037aed Mon Sep 17 00:00:00 2001 From: Matthias M <62722460+kleinerpirat@users.noreply.github.com> Date: Sun, 23 May 2021 15:58:22 +0200 Subject: [PATCH] Exclude dropdown items from night mode style Makes dropdown menu look cleaner. :not() selector did not work because the color selector button would be affected for some reason. --- ts/sass/buttons.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ts/sass/buttons.scss b/ts/sass/buttons.scss index 3e2a66697..05d3b54ba 100644 --- a/ts/sass/buttons.scss +++ b/ts/sass/buttons.scss @@ -53,3 +53,9 @@ padding-right: 15px; color: #e5e5e5; } + +button.dropdown-item { + background: none; + box-shadow: none; + border: none; +}