mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 22:28:13 +00:00
49 lines
714 B
SCSS
49 lines
714 B
SCSS
.c-telemetry-view {
|
|
display: flex;
|
|
align-items: stretch;
|
|
|
|
> * {
|
|
// Label and value holders
|
|
flex: 1 1 50%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
padding: $interiorMargin;
|
|
|
|
> * {
|
|
// Text elements
|
|
@include ellipsize();
|
|
}
|
|
}
|
|
|
|
&__value {
|
|
@include isLimit();
|
|
}
|
|
|
|
&__label {
|
|
margin-right: $interiorMargin;
|
|
}
|
|
|
|
&.is-stale {
|
|
.c-telemetry-view__value {
|
|
@include isStaleElement();
|
|
}
|
|
}
|
|
|
|
.c-frame & {
|
|
@include abs();
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.is-status__indicator {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
&[class*='is-status'] {
|
|
border: $borderMissing;
|
|
}
|
|
}
|