Compare commits

...

3 Commits

Author SHA1 Message Date
df58f1e87d Add background property to style select options for Windows 2019-03-20 13:04:06 -07:00
87a4a7272d Merge latest TCR, resolve conflicts 2019-03-20 10:55:20 -07:00
4b03efcef4 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.
2019-03-06 16:41:36 -08:00

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