Fix foreground color of option elements in selects (#2300)

* Fix foreground color of option elements in selects

- Windows users in Snow theme reporting white foreground color on system
 background color (light gray) when interacting with select elements.
 This fix hard-codes the option's `color` attribute to black.

* Add background property to style select options for Windows
This commit is contained in:
Charles Hacskaylo 2019-03-21 12:39:29 -07:00 committed by Andrew Henry
parent 7ff5febae0
commit bcbf244fd2

View File

@ -245,7 +245,13 @@ select {
background-position: right .4em top 80%, 0 0;
border: none;
border-radius: $controlCr;
padding: 4px 20px 4px $interiorMargin;
padding: 1px 20px 1px $interiorMargin;
*,
option {
background: $colorBtnBg;
color: $colorBtnFg;
}
}
// CHECKBOX LISTS