133 lines
3.7 KiB
SCSS
133 lines
3.7 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.
|
|
*****************************************************************************/
|
|
.overlay {
|
|
.blocker {
|
|
background: $colorOvrBlocker;
|
|
z-index: 100;
|
|
}
|
|
.clk-icon.close {
|
|
font-size: 0.8rem;
|
|
position: absolute;
|
|
top: $interiorMarginLg;
|
|
right: $interiorMarginLg;
|
|
bottom: auto;
|
|
left: auto;
|
|
z-index: 100;
|
|
}
|
|
> .holder {
|
|
//$i: 15%;
|
|
@include containerSubtle($colorOvrBg, $colorOvrFg);
|
|
@include border-radius($basicCr * 3);
|
|
color: $colorOvrFg;
|
|
top: 50%;
|
|
right: auto;
|
|
bottom: auto;
|
|
left: 50%;
|
|
@include transform(translateX(-50%) translateY(-50%));
|
|
height: 70%;
|
|
width: 50%;
|
|
min-height: 300px;
|
|
max-height: 800px;
|
|
min-width: 600px;
|
|
max-width: 1000px;
|
|
z-index: 101;
|
|
> .contents {
|
|
$m: $overlayMargin;
|
|
top: $m;
|
|
right: $m;
|
|
bottom: $m;
|
|
left: $m;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
@include ellipsize();
|
|
font-size: 1.2em;
|
|
line-height: 120%;
|
|
margin-bottom: $interiorMargin;
|
|
}
|
|
|
|
.hint {
|
|
color: pushBack($colorOvrFg, 20%);
|
|
}
|
|
|
|
.top-bar {
|
|
height: $ovrTopBarH;
|
|
}
|
|
|
|
.editor {
|
|
top: $ovrTopBarH + ($interiorMargin * 2);
|
|
bottom: $ovrFooterH + $interiorMargin * 2;
|
|
left: 0;
|
|
right: 0;
|
|
overflow: auto;
|
|
.field.l-med {
|
|
input[type='text'] {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.l-progress-bar {
|
|
$h: $progressBarHOverlay;
|
|
display: block;
|
|
height: $h;
|
|
line-height: $h;
|
|
margin: .5em 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.bottom-bar {
|
|
top: auto;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: visible;
|
|
//font-size: 1em;
|
|
height: $ovrFooterH;
|
|
text-align: right;
|
|
.s-btn {
|
|
$bg: $colorOvrBtnBg;
|
|
&:not(.major) {
|
|
@include btnSubtle($bg, pullForward($bg, 10%), $colorOvrBtnFg, $colorOvrBtnFg);
|
|
}
|
|
font-size: 95%;
|
|
height: $ovrFooterH;
|
|
line-height: $ovrFooterH;
|
|
margin-left: $interiorMargin;
|
|
padding: 0 $interiorMargin * 3;
|
|
//&.major {
|
|
// @extend .s-btn.major;
|
|
// &:hover {
|
|
// @extend .s-btn.major:hover;
|
|
// }
|
|
//}
|
|
}
|
|
}
|
|
}
|
|
|
|
.t-dialog-sm .overlay > .holder {
|
|
// Used for blocker and in-progress dialogs, modal alerts, etc.
|
|
//@include test(red);
|
|
min-height: 275px;
|
|
height: 275px;
|
|
} |