mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 22:42:24 +00:00
9f90c6b8d8
WTD-884
351 lines
14 KiB
CSS
351 lines
14 KiB
CSS
/*****************************************************************************
|
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
/*****************************************************************************
|
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
/*****************************************************************************
|
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
/*****************************************************************************
|
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
/* line 31, ../sass/plots/_plots-main.scss */
|
|
.gl-plot {
|
|
color: #999;
|
|
font-size: 0.7rem;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
/****************************** Limits and Out-of-Bounds data */ }
|
|
/* line 38, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-axis-area {
|
|
position: absolute; }
|
|
/* line 41, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-axis-area.gl-plot-x {
|
|
top: auto;
|
|
right: 0;
|
|
bottom: 5px;
|
|
left: 60px;
|
|
height: 32px;
|
|
width: auto;
|
|
overflow: hidden; }
|
|
/* line 50, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-axis-area.gl-plot-y {
|
|
top: 29px;
|
|
right: auto;
|
|
bottom: 37px;
|
|
left: 0;
|
|
width: 60px; }
|
|
/* line 59, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-coords {
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
border-radius: 3px;
|
|
background: black;
|
|
color: #e6e6e6;
|
|
padding: 2px 5px;
|
|
position: absolute;
|
|
top: 39px;
|
|
right: auto;
|
|
bottom: auto;
|
|
left: 70px;
|
|
z-index: 10; }
|
|
/* line 71, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-coords:empty {
|
|
display: none; }
|
|
/* line 76, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-display-area {
|
|
position: absolute;
|
|
top: 29px;
|
|
right: 0;
|
|
bottom: 37px;
|
|
left: 60px;
|
|
cursor: crosshair;
|
|
border: 1px solid #4d4d4d; }
|
|
/* line 86, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-label,
|
|
.gl-plot .l-plot-label {
|
|
color: #cccccc;
|
|
position: absolute;
|
|
text-align: center; }
|
|
/* line 94, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-label.gl-plot-x-label, .gl-plot .gl-plot-label.l-plot-x-label,
|
|
.gl-plot .l-plot-label.gl-plot-x-label,
|
|
.gl-plot .l-plot-label.l-plot-x-label {
|
|
top: auto;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: auto; }
|
|
/* line 103, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-label.gl-plot-y-label, .gl-plot .gl-plot-label.l-plot-y-label,
|
|
.gl-plot .l-plot-label.gl-plot-y-label,
|
|
.gl-plot .l-plot-label.l-plot-y-label {
|
|
-moz-transform-origin: 50% 0;
|
|
-ms-transform-origin: 50% 0;
|
|
-webkit-transform-origin: 50% 0;
|
|
transform-origin: 50% 0;
|
|
-moz-transform: translateX(-50%) rotate(-90deg);
|
|
-ms-transform: translateX(-50%) rotate(-90deg);
|
|
-webkit-transform: translateX(-50%) rotate(-90deg);
|
|
transform: translateX(-50%) rotate(-90deg);
|
|
display: inline-block;
|
|
margin-left: 5px;
|
|
left: 0;
|
|
top: 50%;
|
|
white-space: nowrap; }
|
|
/* line 117, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-y-options {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: auto;
|
|
bottom: auto;
|
|
left: auto5px;
|
|
margin-top: -16px;
|
|
height: auto;
|
|
min-height: 32px;
|
|
width: 32px; }
|
|
/* line 131, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-hash {
|
|
position: absolute;
|
|
border: 0 rgba(255, 255, 255, 0.3) dashed; }
|
|
/* line 134, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-hash.hash-v {
|
|
border-right-width: 1px;
|
|
height: 100%; }
|
|
/* line 138, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-hash.hash-h {
|
|
border-bottom-width: 1px;
|
|
width: 100%; }
|
|
/* line 144, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .gl-plot-legend {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: auto;
|
|
left: 0;
|
|
height: 24px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto; }
|
|
/* line 157, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .l-limit-bar,
|
|
.gl-plot .l-oob-data {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
width: auto; }
|
|
/* line 165, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .l-limit-bar {
|
|
height: auto;
|
|
z-index: 0; }
|
|
/* line 173, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .l-limit-bar.s-limit-yellow {
|
|
background: rgba(157, 117, 0, 0.2); }
|
|
/* line 174, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .l-limit-bar.s-limit-red {
|
|
background: rgba(170, 0, 0, 0.2); }
|
|
/* line 177, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .l-oob-data {
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
width: auto;
|
|
height: auto;
|
|
pointer-events: none;
|
|
height: 10px;
|
|
z-index: 1; }
|
|
/* line 185, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .l-oob-data.l-oob-data-up {
|
|
top: 0;
|
|
bottom: auto;
|
|
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3NDhkNiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3NzQ4ZDYiIHN0b3Atb3BhY2l0eT0iMC41Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
|
|
background-size: 100%;
|
|
background-image: -moz-linear-gradient(90deg, rgba(119, 72, 214, 0), rgba(119, 72, 214, 0.5) 100%);
|
|
background-image: -webkit-linear-gradient(90deg, rgba(119, 72, 214, 0), rgba(119, 72, 214, 0.5) 100%);
|
|
background-image: linear-gradient(0deg, rgba(119, 72, 214, 0), rgba(119, 72, 214, 0.5) 100%); }
|
|
/* line 190, ../sass/plots/_plots-main.scss */
|
|
.gl-plot .l-oob-data.l-oob-data-dwn {
|
|
bottom: 0;
|
|
top: auto;
|
|
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3NDhkNiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3NzQ4ZDYiIHN0b3Atb3BhY2l0eT0iMC41Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
|
|
background-size: 100%;
|
|
background-image: -moz-linear-gradient(270deg, rgba(119, 72, 214, 0), rgba(119, 72, 214, 0.5) 100%);
|
|
background-image: -webkit-linear-gradient(270deg, rgba(119, 72, 214, 0), rgba(119, 72, 214, 0.5) 100%);
|
|
background-image: linear-gradient(180deg, rgba(119, 72, 214, 0), rgba(119, 72, 214, 0.5) 100%); }
|
|
|
|
/* line 200, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-legend .plot-legend-item,
|
|
.gl-plot-legend .legend-item,
|
|
.legend .plot-legend-item,
|
|
.legend .legend-item {
|
|
display: inline-block;
|
|
margin-right: 10px; }
|
|
/* line 204, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-legend .plot-legend-item span,
|
|
.gl-plot-legend .legend-item span,
|
|
.legend .plot-legend-item span,
|
|
.legend .legend-item span {
|
|
vertical-align: middle; }
|
|
/* line 207, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-legend .plot-legend-item .plot-color-swatch,
|
|
.gl-plot-legend .plot-legend-item .color-swatch,
|
|
.gl-plot-legend .legend-item .plot-color-swatch,
|
|
.gl-plot-legend .legend-item .color-swatch,
|
|
.legend .plot-legend-item .plot-color-swatch,
|
|
.legend .plot-legend-item .color-swatch,
|
|
.legend .legend-item .plot-color-swatch,
|
|
.legend .legend-item .color-swatch {
|
|
-moz-border-radius: 2px;
|
|
-webkit-border-radius: 2px;
|
|
border-radius: 2px;
|
|
display: inline-block;
|
|
height: 8px;
|
|
width: 8px; }
|
|
|
|
/* line 220, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-legend .plot-legend-item {
|
|
-moz-border-radius: 2px;
|
|
-webkit-border-radius: 2px;
|
|
border-radius: 2px;
|
|
color: #fff;
|
|
line-height: 1.5em;
|
|
padding: 0px 5px; }
|
|
/* line 226, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-legend .plot-legend-item .plot-color-swatch {
|
|
border: 1px solid #333;
|
|
height: 9px;
|
|
width: 9px; }
|
|
|
|
/* line 234, ../sass/plots/_plots-main.scss */
|
|
.tick {
|
|
position: absolute;
|
|
border: 0 rgba(255, 255, 255, 0.3) solid; }
|
|
/* line 237, ../sass/plots/_plots-main.scss */
|
|
.tick.tick-x {
|
|
border-right-width: 1px;
|
|
height: 100%; }
|
|
|
|
/* line 243, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-tick,
|
|
.tick-label {
|
|
font-size: 0.7rem;
|
|
position: absolute;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis; }
|
|
/* line 251, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-tick.gl-plot-x-tick-label, .gl-plot-tick.tick-label-x,
|
|
.tick-label.gl-plot-x-tick-label,
|
|
.tick-label.tick-label-x {
|
|
right: auto;
|
|
bottom: auto;
|
|
left: auto;
|
|
height: auto;
|
|
width: 20%;
|
|
margin-left: -10%;
|
|
text-align: center; }
|
|
/* line 261, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-tick.gl-plot-y-tick-label, .gl-plot-tick.tick-label-y,
|
|
.tick-label.gl-plot-y-tick-label,
|
|
.tick-label.tick-label-y {
|
|
top: auto;
|
|
height: 1em;
|
|
width: auto;
|
|
margin-bottom: -0.5em;
|
|
text-align: right; }
|
|
|
|
/* line 273, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-tick.gl-plot-x-tick-label {
|
|
top: 5px; }
|
|
/* line 276, ../sass/plots/_plots-main.scss */
|
|
.gl-plot-tick.gl-plot-y-tick-label {
|
|
right: 5px;
|
|
left: 5px; }
|
|
|
|
/* line 283, ../sass/plots/_plots-main.scss */
|
|
.tick-label.tick-label-x {
|
|
top: 0; }
|
|
/* line 286, ../sass/plots/_plots-main.scss */
|
|
.tick-label.tick-label-y {
|
|
right: 0;
|
|
left: 0; }
|