[CSS] Replaced fooobar:not([foo=bar], [foo2=bar2]) rule, as Firefox ESR 78.x doesn't support that specific syntax

This commit is contained in:
Eliseu Amaro 2022-02-04 21:10:21 +00:00
parent 81f6d496c6
commit e0ceddc2e6
Signed by: eliseuamaro
GPG Key ID: 96DA09D4B97BC2D5
1 changed files with 6 additions and 1 deletions

View File

@ -70,10 +70,15 @@ button, select, textarea {
background: var(--gradient) !important;
}
button, input:not([type=checkbox],[type=radio]) {
button, input {
background: var(--gradient) !important;
}
input[type=radio],
input[type=checkbox] {
background: initial;
}
select {
background-repeat: no-repeat;
border-radius: var(--s);