mirror of
https://github.com/nasa/openmct.git
synced 2025-02-21 01:42:31 +00:00
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:
parent
7ff5febae0
commit
bcbf244fd2
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user