mirror of
https://github.com/postgres/pgweb.git
synced 2025-07-25 16:02:27 +00:00
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:
@ -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 {
|
||||
|
Reference in New Issue
Block a user