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 <ads@pgug.de>
This commit is contained in:
Jonathan S. Katz
2022-10-26 12:09:12 +02:00
parent 618df8666a
commit 0ee8ebac20

View File

@ -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 {