mirror of
https://github.com/nasa/openmct.git
synced 2025-01-09 06:22:37 +00:00
2d13745823
WTD-1172 Added stale CSS in _data-status.scss; Added pulse animation in _effects.scss, not used; Removed temp-limits directory and files; Sanding and refining of limits styles and in .tabular;
33 lines
686 B
SCSS
33 lines
686 B
SCSS
@mixin limit($c, $glyph) {
|
|
background: $c;
|
|
&:before {
|
|
//@include pulse(500ms);
|
|
color: lighten($c, 30%);
|
|
content: $glyph;
|
|
}
|
|
}
|
|
|
|
.s-limit-upr,
|
|
.s-limit-lwr {
|
|
$a: 0.5;
|
|
$l: 30%;
|
|
white-space: nowrap;
|
|
&:before {
|
|
display: inline-block;
|
|
font-family: symbolsfont;
|
|
font-size: 0.85em;
|
|
font-style: normal !important;
|
|
margin-right: $interiorMarginSm;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
.s-limit-upr {
|
|
&.s-limit-yellow { @include limit($colorLimitYellow, "\0000ed"); }
|
|
&.s-limit-red { @include limit($colorLimitRed, "\0000eb"); }
|
|
}
|
|
|
|
.s-limit-lwr {
|
|
&.s-limit-yellow { @include limit($colorLimitYellow, "\0000ec"); }
|
|
&.s-limit-red { @include limit($colorLimitRed, "\0000ee"); }
|
|
} |