mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
5726fe6313
Merge of new plot * Introduces new Plot object and view * Removes Old Plot * Add LAD support and state type to generators * Removes Telemetry Panel Type * Telemetry API Updates * UTCFormat.parse: passthrough numbers * TelemetryAPI: default request arguments * TelemetryAPI: fix enum formatting * Markup and styling to support new plots
42 lines
713 B
SCSS
42 lines
713 B
SCSS
/* Styles for sub-dividing views generically */
|
|
.l-control-bar {
|
|
// Element that can be placed above l-view-section, holds controls, buttons, etc.
|
|
height: $controlBarH;
|
|
}
|
|
|
|
.l-view-section {
|
|
//@include test(orange, 0.1);
|
|
@include absPosDefault(0);
|
|
h2 {
|
|
color: #fff;
|
|
margin-bottom: $interiorMargin;
|
|
}
|
|
&.fixed {
|
|
font-size: 0.8em;
|
|
}
|
|
.controls,
|
|
label,
|
|
.inline-block {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.has-control-bar {
|
|
.l-view-section {
|
|
top: $controlBarH + $interiorMargin;
|
|
}
|
|
}
|
|
|
|
|
|
.child-frame {
|
|
.has-control-bar {
|
|
$btnExportH: $btnFrameH;
|
|
.l-control-bar {
|
|
display: none;
|
|
}
|
|
.l-view-section {
|
|
top: 0;
|
|
}
|
|
}
|
|
}
|