Fix select background color in header, re-add hover color (#163)

This commit is contained in:
Eliot Partridge 2022-03-25 18:53:57 -05:00 committed by GitHub
parent 75464e4088
commit 467bfddcba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -170,6 +170,10 @@ select.input, select.input:focus {
& option {
background-color: $input_color;
}
&:hover option {
background-color: $input_color_active;
}
}
select.input:hover, select.input:focus:hover {

View file

@ -106,6 +106,14 @@ select.header__input, select.header__input:focus {
&::-ms-expand {
display: none;
}
& option, & optgroup {
background-color: $header_field_color;
}
&:hover option, &:hover optgroup {
background-color: $header_field_hover_color;
}
}
.header__input--search {