Files
openmct/src/plugins/displayLayout/components/telemetry-view.scss
Jesse Mazzella caa7bc6fae chore: add prettier (2/3): apply formatting, re-enable lint ci step (#6682)
* style: apply prettier formatting

* fix: re-enable lint ci check
2023-05-18 21:54:46 +00:00

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;
}
}