Fix background color being reset on select options (#159)

This commit is contained in:
Eliot Partridge 2022-03-24 16:27:43 -05:00 committed by GitHub
parent aa1ca50f0c
commit 1a6eb05cc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,6 +166,10 @@ select.input, select.input:focus {
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;
padding-right: 25px;
& option {
background-color: $input_color;
}
}
select.input:hover, select.input:focus:hover {