Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tsay <david.e.tsay@nasa.gov>2022-07-26 01:43:27 +0300
committerDavid Tsay <david.e.tsay@nasa.gov>2022-07-26 01:43:27 +0300
commit4b6f59fdd36d383e9ed4e6c86c28e5335046cb8e (patch)
tree74cc2fab92bf9ec9fe8427933f51ee4c47826e14
parent5bc12d398a933281a183d1a7a75a814882020acd (diff)
cherry-pick snow theme fix (#5557)vista-r4.10.0-rc3
-rw-r--r--src/styles/_controls.scss10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/styles/_controls.scss b/src/styles/_controls.scss
index 3e356036d..c98692578 100644
--- a/src/styles/_controls.scss
+++ b/src/styles/_controls.scss
@@ -25,13 +25,14 @@
/******************************************************** CONTROL-SPECIFIC MIXINS */
@mixin menuOuter() {
border-radius: $basicCr;
- box-shadow: $shdwMenuInner, $shdwMenu;
+ box-shadow: $shdwMenu;
+ @if $shdwMenuInner != none {
+ box-shadow: $shdwMenuInner, $shdwMenu;
+ }
background: $colorMenuBg;
color: $colorMenuFg;
- //filter: $filterMenu; // 2022: causing all kinds of weird visual bugs in Chrome
text-shadow: $shdwMenuText;
padding: $interiorMarginSm;
- //box-shadow: $shdwMenu;
display: flex;
flex-direction: column;
position: absolute;
@@ -60,14 +61,13 @@
cursor: pointer;
display: flex;
padding: nth($menuItemPad, 1) nth($menuItemPad, 2);
- transition: $transIn;
white-space: nowrap;
@include hover {
background: $colorMenuHovBg;
color: $colorMenuHovFg;
&:before {
- color: $colorMenuHovIc;
+ color: $colorMenuHovIc !important;
}
}