mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-17 11:04:22 +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 {
|
& option {
|
||||||
background-color: $input_color;
|
background-color: $input_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover option {
|
||||||
|
background-color: $input_color_active;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select.input:hover, select.input:focus:hover {
|
select.input:hover, select.input:focus:hover {
|
||||||
|
|
|
@ -106,6 +106,14 @@ select.header__input, select.header__input:focus {
|
||||||
&::-ms-expand {
|
&::-ms-expand {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& option, & optgroup {
|
||||||
|
background-color: $header_field_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover option, &:hover optgroup {
|
||||||
|
background-color: $header_field_hover_color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.header__input--search {
|
.header__input--search {
|
||||||
|
|
Loading…
Reference in a new issue