mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 13:47:58 +01:00
Fix select background color in header, re-add hover color (#163)
This commit is contained in:
parent
75464e4088
commit
467bfddcba
2 changed files with 12 additions and 0 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue