mirror of
https://github.com/nasa/openmct.git
synced 2025-06-10 19:31:42 +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;
|
background-position: right .4em top 80%, 0 0;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: $controlCr;
|
border-radius: $controlCr;
|
||||||
padding: 4px 20px 4px $interiorMargin;
|
padding: 1px 20px 1px $interiorMargin;
|
||||||
|
|
||||||
|
*,
|
||||||
|
option {
|
||||||
|
background: $colorBtnBg;
|
||||||
|
color: $colorBtnFg;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// CHECKBOX LISTS
|
// CHECKBOX LISTS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user