move filter-selection to manage.css

This commit is contained in:
tophf 2022-02-15 23:50:16 +03:00
parent be50300043
commit d673354edd
2 changed files with 5 additions and 6 deletions

View File

@ -30,12 +30,6 @@
background-color: var(--input-bg);
color: var(--fg);
}
.filter-selection label + div select {
transition: none;
}
.filter-selection select:not(:focus):not(:hover) {
background-color: transparent;
}
input::-webkit-inner-spin-button {
filter: invert(.8);
}

View File

@ -1175,3 +1175,8 @@ a:hover {
}
}
@media screen and (prefers-color-scheme: dark), dark {
.filter-selection select:not(:focus) {
background-color: transparent;
}
}