Browse Source

now readable labels and selected dropdowns

master
Marc 3 years ago
parent
commit
cf522842a5
1 changed files with 10 additions and 1 deletions
  1. 11
      .config/firefox/userContent.css

11
.config/firefox/userContent.css

@ -42,11 +42,20 @@ input:focus[type=submit] {
background-color: var(--color-acc1) !important;
}
*/
input[type=text] {
/*select is for selected item in dropdown menus*/
input[type=text], select {
background-color: var(--color-bg) !important;
color: var(--color-fg) !important;
}
/*currently for filter boxes in navidrome,
* maybe conflicts with other pages*/
label {
color: var(--color-fg) !important;
opacity: 0.5;
}
/*not working*/
input[type=button], input[type=submit], input[type=reset] {
color: var(--color-acc2) !important;

Loading…
Cancel
Save