2015-05-13 23:42:35 +00:00
|
|
|
/*****************************************************************************
|
2017-04-05 21:35:12 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2017, United States Government
|
2015-06-25 01:48:23 +00:00
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
2015-06-25 01:48:23 +00:00
|
|
|
* "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.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT includes source code licensed under additional open source
|
2015-06-25 01:48:23 +00:00
|
|
|
* 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.
|
|
|
|
*****************************************************************************/
|
2015-02-25 19:08:52 +00:00
|
|
|
.t-fixed-position {
|
|
|
|
&.l-fixed-position {
|
2017-08-18 23:28:41 +00:00
|
|
|
@extend .abs;
|
2015-02-25 23:53:02 +00:00
|
|
|
}
|
2015-02-25 19:08:52 +00:00
|
|
|
|
2015-02-25 23:53:02 +00:00
|
|
|
.l-fixed-position-item {
|
2017-12-07 21:04:46 +00:00
|
|
|
border-width: 1px;
|
2015-02-25 23:53:02 +00:00
|
|
|
position: absolute;
|
|
|
|
&.s-not-selected {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2015-02-25 19:08:52 +00:00
|
|
|
|
2015-02-26 02:41:00 +00:00
|
|
|
.l-fixed-position-box,
|
|
|
|
.l-fixed-position-image,
|
|
|
|
.l-fixed-position-text {
|
2016-02-23 02:02:16 +00:00
|
|
|
box-sizing: border-box;
|
2015-06-25 01:48:23 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2015-02-26 02:41:00 +00:00
|
|
|
}
|
2015-02-25 19:08:52 +00:00
|
|
|
|
2015-02-26 02:41:00 +00:00
|
|
|
.l-fixed-position-box {
|
2015-02-25 23:53:02 +00:00
|
|
|
}
|
2015-06-25 01:48:23 +00:00
|
|
|
|
2015-02-26 02:41:00 +00:00
|
|
|
.l-fixed-position-image {
|
2015-02-26 19:04:21 +00:00
|
|
|
background-size: cover;
|
2015-02-26 02:41:00 +00:00
|
|
|
background-repeat: no-repeat;
|
2015-03-20 23:48:14 +00:00
|
|
|
background-position: center;
|
2015-02-26 02:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.l-fixed-position-text {
|
2015-06-25 01:48:23 +00:00
|
|
|
border: 1px solid transparent;
|
2015-02-26 02:41:00 +00:00
|
|
|
font-size: 0.8rem;
|
2016-09-01 17:55:07 +00:00
|
|
|
$p: 1px;
|
2015-06-02 23:12:19 +00:00
|
|
|
line-height: 100%;
|
2017-09-13 16:47:18 +00:00
|
|
|
overflow: hidden;
|
2015-02-26 02:41:00 +00:00
|
|
|
&.l-static-text {
|
|
|
|
padding: $p;
|
|
|
|
}
|
|
|
|
&.l-telemetry {
|
|
|
|
.l-elem {
|
2016-02-23 02:02:16 +00:00
|
|
|
box-sizing: border-box;
|
2015-06-25 01:48:23 +00:00
|
|
|
display: block;
|
2015-06-02 23:12:19 +00:00
|
|
|
padding: 2px;
|
2015-02-26 02:41:00 +00:00
|
|
|
&.l-title {
|
2015-06-25 01:48:23 +00:00
|
|
|
float: none;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: auto;
|
2015-02-26 02:41:00 +00:00
|
|
|
}
|
|
|
|
&.l-value {
|
2016-02-23 02:02:16 +00:00
|
|
|
border-radius: $smallCr;
|
2015-06-25 01:48:23 +00:00
|
|
|
$valPad: 5px;
|
|
|
|
float: right;
|
|
|
|
margin-left: $interiorMargin;
|
|
|
|
padding-left: $valPad;
|
|
|
|
padding-right: $valPad;
|
2015-02-26 02:41:00 +00:00
|
|
|
text-align: right;
|
|
|
|
&.telem-only {
|
2015-06-25 01:48:23 +00:00
|
|
|
margin-left: 0;
|
|
|
|
width: 100%;
|
2015-06-02 23:12:19 +00:00
|
|
|
}
|
2015-02-25 23:53:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-02-25 19:08:52 +00:00
|
|
|
|
2017-08-18 23:28:41 +00:00
|
|
|
.s-status-editing {
|
|
|
|
.l-fixed-position-item-handle.edit-corner { display: block; }
|
2017-04-05 21:35:12 +00:00
|
|
|
}
|