mirror of
https://github.com/nasa/openmct.git
synced 2025-01-12 07:52:42 +00:00
579c6b6d24
Fixes #933 WIP: Styling for unsynced elements
24 lines
475 B
SCSS
24 lines
475 B
SCSS
.s-unsynced {
|
|
$c: $colorPausedBg;
|
|
border: 1px solid $c;
|
|
@include animTo($animName: pulsePaused, $propName: border-color, $propValStart: rgba($c, 0.8), $propValEnd: rgba($c, 0.5), $dur: $animPausedPulseDur, $dir: alternate, $count: infinite);
|
|
}
|
|
|
|
|
|
.s-stale {
|
|
@include s-stale();
|
|
.td {
|
|
@include s-stale();
|
|
}
|
|
}
|
|
|
|
.s-status-timeconductor-unsynced {
|
|
// Layout frames
|
|
|
|
// Plot areas
|
|
.gl-plot .gl-plot-display-area {
|
|
@extend .s-unsynced;
|
|
}
|
|
}
|
|
|