mirror of
https://github.com/nasa/openmct.git
synced 2024-12-26 00:01:05 +00:00
c699cb8b4b
# Conflicts: # platform/commonUI/edit/res/templates/create/create-menu.html # platform/commonUI/general/res/fonts/symbols/wtdsymbols.eot # platform/commonUI/general/res/fonts/symbols/wtdsymbols.svg # platform/commonUI/general/res/fonts/symbols/wtdsymbols.ttf # platform/commonUI/general/res/fonts/symbols/wtdsymbols.woff # platform/commonUI/general/res/sass/_archetypes.scss # platform/commonUI/general/res/sass/_constants.scss # platform/commonUI/general/res/sass/_icons.scss # platform/commonUI/general/res/sass/_main.scss # platform/commonUI/general/res/sass/_mixins.scss # platform/commonUI/general/res/sass/controls/_buttons.scss # platform/commonUI/general/res/templates/controls/time-controller.html # platform/commonUI/themes/snow/res/sass/_constants.scss
199 lines
4.3 KiB
SCSS
199 lines
4.3 KiB
SCSS
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2016, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT 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 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.
|
|
*****************************************************************************/
|
|
/************************** FONTS */
|
|
@font-face {
|
|
/*
|
|
* Use https://icomoon.io/app with icomoon-project-openmct-symbols-16px.json
|
|
* to generate font files
|
|
*/
|
|
font-family: 'symbolsfont';
|
|
src: url($dirCommonRes + 'fonts/symbols/openmct-symbols-16px.eot');
|
|
src: url($dirCommonRes + 'fonts/symbols/openmct-symbols-16px.eot?#iefix') format('embedded-opentype'),
|
|
url($dirCommonRes + 'fonts/symbols/openmct-symbols-16px.woff') format('woff'),
|
|
url($dirCommonRes + 'fonts/symbols/openmct-symbols-16px.ttf') format('truetype'),
|
|
url($dirCommonRes + 'fonts/symbols/openmct-symbols-16px.svg') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
/*
|
|
* Use https://icomoon.io/app with icomoon-project-openmct-symbols-12px.json
|
|
* to generate font files
|
|
*/
|
|
font-family: 'symbolsfont 12px';
|
|
src: url($dirCommonRes + 'fonts/symbols/openmct-symbols-12px.eot');
|
|
src: url($dirCommonRes + 'fonts/symbols/openmct-symbols-12px.eot?#iefix') format('embedded-opentype'),
|
|
url($dirCommonRes + 'fonts/symbols/openmct-symbols-12px.woff') format('woff'),
|
|
url($dirCommonRes + 'fonts/symbols/openmct-symbols-12px.ttf') format('truetype'),
|
|
url($dirCommonRes + 'fonts/symbols/openmct-symbols-12px.svg') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
/************************** HTML ENTITIES */
|
|
a {
|
|
color: $colorA;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
&:hover {
|
|
color: $colorAHov;
|
|
}
|
|
}
|
|
|
|
body, html {
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
background-color: $colorBodyBg;
|
|
color: $colorBodyFg;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
font-size: 100%;
|
|
font-weight: 200;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
em {
|
|
font-style: normal;
|
|
}
|
|
|
|
input, textarea {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="search"] {
|
|
vertical-align: baseline;
|
|
padding: $inputTextP;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.7em;
|
|
font-weight: normal !important;
|
|
line-height: 120%;
|
|
margin-bottom: 20px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: $interiorMarginLg;
|
|
}
|
|
|
|
ol, ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding-left: 0;
|
|
}
|
|
|
|
mct-container {
|
|
display: block;
|
|
}
|
|
|
|
.abs {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: auto;
|
|
width: auto;
|
|
}
|
|
|
|
.code {
|
|
font-family: "Lucida Console", monospace;
|
|
font-size: 0.7em;
|
|
line-height: 150%;
|
|
white-space: pre;
|
|
}
|
|
|
|
.codehilite {
|
|
@extend .code;
|
|
background-color: rgba($colorBodyFg, 0.1);
|
|
padding: 1em;
|
|
}
|
|
|
|
.disabled,
|
|
a.disabled {
|
|
opacity: $controlDisabledOpacity;
|
|
pointer-events: none !important;
|
|
cursor: default !important;
|
|
}
|
|
|
|
.align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.centered {
|
|
text-align: center;
|
|
}
|
|
|
|
.ellipsis {
|
|
@include ellipsize();
|
|
}
|
|
|
|
.scrolling,
|
|
.scroll {
|
|
overflow: auto;
|
|
}
|
|
|
|
.vscroll {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.no-margin {
|
|
margin: 0;
|
|
}
|
|
|
|
.ds {
|
|
box-shadow: rgba(#000, 0.7) 0 4px 10px 2px;
|
|
}
|
|
|
|
.hide,
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.off {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
height: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.sep {
|
|
color: rgba(#fff, 0.2);
|
|
}
|
|
|
|
.test-stripes {
|
|
@include bgDiagonalStripes();
|
|
}
|
|
|
|
.test {
|
|
@include test();
|
|
}
|