mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
[Frontend] Styling TC unsynced elements
Fixes #933 WIP: Styling for unsynced elements
This commit is contained in:
parent
762f43fa61
commit
579c6b6d24
@ -1,3 +1,10 @@
|
|||||||
|
.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 {
|
.s-stale {
|
||||||
@include s-stale();
|
@include s-stale();
|
||||||
.td {
|
.td {
|
||||||
@ -10,8 +17,7 @@
|
|||||||
|
|
||||||
// Plot areas
|
// Plot areas
|
||||||
.gl-plot .gl-plot-display-area {
|
.gl-plot .gl-plot-display-area {
|
||||||
border: 1px solid $c;
|
@extend .s-unsynced;
|
||||||
@include animTo($animName: pulsePaused, $propName: border-color, $propValStart: rgba($c, 0.8), $propValEnd: rgba($c, 0.5), $dur: $animPausedPulseDur, $dir: alternate, $count: infinite);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,8 +74,7 @@
|
|||||||
.s-image-main {
|
.s-image-main {
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
&.paused {
|
&.paused {
|
||||||
//border-color: $colorPausedBg;
|
@extend .s-unsynced;
|
||||||
@include s-status-for-block-elem($c: $colorPausedBg);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user