mirror of
https://github.com/nasa/openmct.git
synced 2025-02-21 09:52:04 +00:00
Fix Safari display issues #3192
- Tweak to Status area indicator hover bubbles;
This commit is contained in:
parent
73b81e38e7
commit
baa7c0bc58
@ -78,21 +78,21 @@
|
||||
.c-indicator:not(.no-minify) {
|
||||
border: 1px solid transparent; // Hack to make minified sizing work in Safari. Have no idea why this works.
|
||||
overflow: visible;
|
||||
transition: all;
|
||||
transition: transform;
|
||||
|
||||
@include hover() {
|
||||
background: $colorIndicatorBgHov;
|
||||
transition: all 250ms ease-in 200ms;
|
||||
transition: transform 250ms ease-in 200ms; // Go-away transition
|
||||
|
||||
.c-indicator__label {
|
||||
box-shadow: $colorIndicatorMenuBgShdw;
|
||||
transform: scale(1.0);
|
||||
overflow: visible;
|
||||
//transition: all 100ms ease-out 100ms;
|
||||
transition: transform 100ms ease-out 100ms; // Appear transition
|
||||
}
|
||||
}
|
||||
.c-indicator__label {
|
||||
transition: all 250ms ease-in 200ms;
|
||||
transition: transform 250ms ease-in 200ms; // Go-away transition
|
||||
background: $colorIndicatorMenuBg;
|
||||
color: $colorIndicatorMenuFg;
|
||||
border-radius: $controlCr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user