From 0ee8ebac2090682fb9ad568f8e98d1f8120037c6 Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Wed, 26 Oct 2022 12:09:12 +0200 Subject: [PATCH] Fix display issue with form button renderings This was likely introduced with 5389adf8 and dark mode, as the "!important" on all input elements was overriding the desired styles for the submission buttons in light mode. But forcing that style is really not that important, so we can let CSS do it's thing to render the button in its desired state. Reported-by: Andreas 'ads' Scherbaum --- media/css/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media/css/main.css b/media/css/main.css index 9fc1581a..41f722f6 100644 --- a/media/css/main.css +++ b/media/css/main.css @@ -234,9 +234,9 @@ body { } input, select, textarea, .btn-default { - background-color: var(--button-input-bg-color) !important; - border-color: var(--button-input-bdr-color) !important; - color: var(--button-input-fg-color) !important; + background-color: var(--button-input-bg-color); + border-color: var(--button-input-bdr-color); + color: var(--button-input-fg-color); } .table th {