mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-17 11:04:22 +01:00
Fix background color being reset on select options (#159)
This commit is contained in:
parent
aa1ca50f0c
commit
1a6eb05cc4
1 changed files with 4 additions and 0 deletions
|
@ -166,6 +166,10 @@ select.input, select.input:focus {
|
||||||
appearance: none;
|
appearance: none;
|
||||||
background: linear-gradient(45deg, transparent 50%, $foreground_color 50%) calc(100% - 15px) 12px/5px 5px no-repeat,linear-gradient(135deg, $foreground_color 50%, transparent 50%) calc(100% - 10px) 12px/5px 5px no-repeat;
|
background: linear-gradient(45deg, transparent 50%, $foreground_color 50%) calc(100% - 15px) 12px/5px 5px no-repeat,linear-gradient(135deg, $foreground_color 50%, transparent 50%) calc(100% - 10px) 12px/5px 5px no-repeat;
|
||||||
padding-right: 25px;
|
padding-right: 25px;
|
||||||
|
|
||||||
|
& option {
|
||||||
|
background-color: $input_color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select.input:hover, select.input:focus:hover {
|
select.input:hover, select.input:focus:hover {
|
||||||
|
|
Loading…
Reference in a new issue