mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
58bd4240f1
WTD-1172 (cherry picked from commit 219ffb4d59d4cc4a0172ba351af0e2b5d672d4b2) Conflicts: platform/commonUI/general/res/css/theme-espresso.css platform/commonUI/general/res/sass/_fixed-position.scss warp/telemetry/src/autoflow/AutoflowTableLinker.js Manually deleted AutoflowTableLinker.js
24 lines
845 B
HTML
24 lines
845 B
HTML
<h1>Static Markup Sandbox</h1>
|
|
|
|
<h2>Plot limits</h2>
|
|
<div ng-init="limits=[
|
|
{type: 'upr', severity: 'red', top: 0, bottom: 90},
|
|
{type: 'upr', severity: 'yellow', top: 10, bottom: 80},
|
|
{type: 'lwr', severity: 'yellow', top: 70, bottom: 20},
|
|
{type: 'lwr', severity: 'red', top: 80, bottom: 0}
|
|
]"></div>
|
|
<div style="width: 1000px; height: 500px">
|
|
<div class="gl-plot" style="height: 100%;">
|
|
<div class="gl-plot-display-area">
|
|
<div
|
|
ng-repeat="limit in limits"
|
|
ng-show="1"
|
|
class="t-limit l-limit s-limit-{{limit.type}}-{{limit.severity}}"
|
|
style="top: {{limit.top}}%; bottom: {{limit.bottom}}%"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>Animation</h2>
|
|
<div class="pulse" style="background: #cc0000; color: #fff; padding: 10px;">This should pulse</div> |