mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
d14c4e08b8
open #95 Shadow and color normalization: fixed-position, tabular; Updated paint bucket and icon-box in symbols font; Custom checkboxes now use inset shdw;
159 lines
3.6 KiB
SCSS
159 lines
3.6 KiB
SCSS
/*****************************************************************************
|
|
* 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.
|
|
*****************************************************************************/
|
|
.t-fixed-position {
|
|
&.l-fixed-position {
|
|
// @include test(red);
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: auto;
|
|
height: auto;
|
|
|
|
.l-grid-holder {
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
.l-grid {
|
|
// @include test(orange);
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.l-fixed-position-item {
|
|
position: absolute;
|
|
border: 1px solid transparent;
|
|
|
|
&.s-selected {
|
|
@include boxShdwLarge();
|
|
border-color: $colorKey;
|
|
cursor: move;
|
|
}
|
|
&.s-not-selected {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.l-fixed-position-box,
|
|
.l-fixed-position-image,
|
|
.l-fixed-position-text {
|
|
@include box-sizing(border-box);
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.l-fixed-position-box {
|
|
}
|
|
|
|
.l-fixed-position-image {
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
.l-fixed-position-text {
|
|
//@include txtShdwSubtle();
|
|
border: 1px solid transparent;
|
|
font-size: 0.8rem;
|
|
$p: 1px; //$interiorMarginSm;
|
|
line-height: 100%;
|
|
&.l-static-text {
|
|
// overflow: auto;
|
|
padding: $p;
|
|
}
|
|
&.l-telemetry {
|
|
.l-elem {
|
|
//@include absPosDefault($p);
|
|
//@include absPosDefault(0);
|
|
@include box-sizing(border-box);
|
|
display: block;
|
|
padding: 2px;
|
|
//width: 50%;
|
|
&.l-title {
|
|
//right: auto;
|
|
//left: $p;
|
|
float: none;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: auto;
|
|
}
|
|
&.l-value {
|
|
// @include test(blue);
|
|
// right: $p;
|
|
// left: auto;
|
|
@include border-radius($smallCr);
|
|
$valPad: 5px;
|
|
float: right;
|
|
margin-left: $interiorMargin;
|
|
padding-left: $valPad;
|
|
padding-right: $valPad;
|
|
text-align: right;
|
|
&.telem-only {
|
|
margin-left: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.l-fixed-position-item-handle {
|
|
$brd: 1px solid $colorKey;
|
|
// @include border-radius($controlCr);
|
|
background: rgba($colorKey, 0.5);
|
|
cursor: crosshair;
|
|
border: $brd;
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
.edit-mode .t-fixed-position {
|
|
&.l-fixed-position {
|
|
.l-grid-holder {
|
|
.l-grid {
|
|
&.l-grid-x {
|
|
@include bgTicks($colorGridLines, 'x');
|
|
}
|
|
|
|
&.l-grid-y {
|
|
@include bgTicks($colorGridLines, 'y');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.l-fixed-position-item {
|
|
&:not(.s-selected) {
|
|
border: 1px dotted rgba($colorKey, 0.75);
|
|
&:hover {
|
|
border: 1px dotted rgba($colorKey, 1.0);
|
|
}
|
|
}
|
|
}
|
|
} |