diff --git a/platform/commonUI/browse/res/templates/browse.html b/platform/commonUI/browse/res/templates/browse.html
index 0ea964780c..79644b5bb5 100644
--- a/platform/commonUI/browse/res/templates/browse.html
+++ b/platform/commonUI/browse/res/templates/browse.html
@@ -73,8 +73,7 @@
+ ng-model="treeModel">
diff --git a/platform/commonUI/general/res/sass/_constants.scss b/platform/commonUI/general/res/sass/_constants.scss
index 6365119894..4f196b8f74 100644
--- a/platform/commonUI/general/res/sass/_constants.scss
+++ b/platform/commonUI/general/res/sass/_constants.scss
@@ -43,7 +43,7 @@ $ueColMargin: 1.5%;
$ueAppLogoW: 105px;
$ueEditToolBarH: 25px;
$ueBrowseLeftPaneTreeW: 25%;
-$ueBrowseRightPaneInspectW: 10%;
+$ueBrowseRightPaneInspectW: 20%;
$ueEditLeftPaneW: 75%;
$treeSearchInputBarH: 25px;
$ueTimeControlH: (33px, 20px, 20px);
diff --git a/platform/commonUI/general/res/sass/_inspector.scss b/platform/commonUI/general/res/sass/_inspector.scss
index 69e00dbab6..fcb8ebc959 100644
--- a/platform/commonUI/general/res/sass/_inspector.scss
+++ b/platform/commonUI/general/res/sass/_inspector.scss
@@ -23,12 +23,18 @@
//.pane.right.t-inspect { @include test(green, 0.3); } // TEMP!
-.t-inspector,
-.t-inspector table tr td {
+.l-inspect,
+.l-inspect table tr td {
font-size: 0.7rem;
}
-.t-inspector {
+.l-inspect {
+ color: $colorInspectorFg;
+ .pane-header {
+ color: pushBack($colorInspectorFg, 20%);
+ font-size: 0.8rem;
+ }
+
ul li,
em {
display: block;
@@ -36,7 +42,6 @@
}
ul li {
- line-height: 130%;
margin-bottom: $interiorMarginLg * 2;
}
@@ -61,7 +66,6 @@
white-space: nowrap;
}
&.value {
- //word-wrap: break-word; // Doesn't work in ?
word-break: break-all;
}
}
@@ -70,4 +74,29 @@
border-top: none !important;
}
}
+
+ .inspector-location {
+ line-height: 180%;
+ .location-item {
+ cursor: pointer;
+ display: inline;
+ position: relative;
+ padding: 2px 4px;
+ &:hover {
+ background: $colorItemTreeHoverBg;
+ color: $colorItemTreeHoverFg;
+ .icon {
+ color: $colorItemTreeIconHover;
+ }
+ }
+ }
+ &:not(.first):before {
+ color: pushBack($colorInspectorFg, 15%);
+ content: '\3e';
+ display: inline-block;
+ font-family: symbolsfont;
+ font-size:7px;
+ width: 4px;
+ }
+ }
}
\ No newline at end of file
diff --git a/platform/commonUI/general/res/sass/controls/_controls.scss b/platform/commonUI/general/res/sass/controls/_controls.scss
index bc61fbc35e..429dc361fe 100644
--- a/platform/commonUI/general/res/sass/controls/_controls.scss
+++ b/platform/commonUI/general/res/sass/controls/_controls.scss
@@ -249,7 +249,7 @@ label.checkbox.custom {
.l-elem-wrapper {
//@include test(#66f, 0.2);
- @include webkitProp(justify-content, flex-start);
+ @include justify-content(flex-start);
mct-representation {
// Holds the context-available item
// Must have min-width to make flex work properly
diff --git a/platform/commonUI/general/res/sass/tree/_tree.scss b/platform/commonUI/general/res/sass/tree/_tree.scss
index d64f456b2e..b4ec062bbe 100644
--- a/platform/commonUI/general/res/sass/tree/_tree.scss
+++ b/platform/commonUI/general/res/sass/tree/_tree.scss
@@ -125,8 +125,8 @@ ul.tree {
// NOTE: [Mobile] Removed Hover on Mobile
@include desktop {
&:hover {
- background: rgba($colorBodyFg, 0.1); //lighten($colorBodyBg, 5%);
- color: pullForward($colorBodyFg, 20%);
+ background: $colorItemTreeHoverBg;
+ color: $colorItemTreeHoverFg;
.icon {
color: $colorItemTreeIconHover;
}
diff --git a/platform/commonUI/general/res/sass/user-environ/_layout.scss b/platform/commonUI/general/res/sass/user-environ/_layout.scss
index 49944adc44..6a3d9ac2f5 100644
--- a/platform/commonUI/general/res/sass/user-environ/_layout.scss
+++ b/platform/commonUI/general/res/sass/user-environ/_layout.scss
@@ -212,7 +212,7 @@
width: $ueBrowseLeftPaneTreeW;
}
&.t-inspect.right {
- min-width: 150px;
+ min-width: 100px;
max-width: 800px;
width: $ueBrowseRightPaneInspectW;
}
@@ -234,6 +234,14 @@
.pane {
position: absolute;
+
+ .pane-header {
+ text-transform: uppercase;
+ height: $ueTopBarH;
+ line-height: $ueTopBarH;
+ margin-bottom: $interiorMargin;
+ }
+
&.treeview.left {
.create-btn-holder {
bottom: auto;
@@ -381,7 +389,6 @@
}
}
-// MOVED from mobile/_layout.scss
// When the tree is hidden, these are the
// classes used for the left menu and the
// right representation.
diff --git a/platform/commonUI/general/res/templates/label.html b/platform/commonUI/general/res/templates/label.html
index 7ca73bb026..235678ad2d 100644
--- a/platform/commonUI/general/res/templates/label.html
+++ b/platform/commonUI/general/res/templates/label.html
@@ -20,15 +20,15 @@
at runtime from the About dialog for additional information.
-->
-
- {{type.getGlyph()}}
-
-
-
-
- {{model.name}}
-
+
+{{type.getGlyph()}}
+
+
+
+
+{{model.name}}
+
diff --git a/platform/commonUI/general/res/templates/object-inspector.html b/platform/commonUI/general/res/templates/object-inspector.html
index f5f8e6921b..b635b4ccca 100644
--- a/platform/commonUI/general/res/templates/object-inspector.html
+++ b/platform/commonUI/general/res/templates/object-inspector.html
@@ -19,7 +19,8 @@
this source code distribution or the Licensing information page available
at runtime from the About dialog for additional information.
-->
-
+
+
-
Properties
@@ -33,22 +34,26 @@
-
Location
+ ng-repeat="parent in contextutalParents"
+ ng-class="{ first:$index === 0 }">
+ ng-click="ngModel.selectedObject = parent"
+ class="location-item">
-
Original Location
+ ng-repeat="parent in primaryParents"
+ ng-class="{ first:$index === 0 }">
+ ng-click="ngModel.selectedObject = parent"
+ class="location-item">
diff --git a/platform/commonUI/themes/espresso/res/css/theme-espresso.css b/platform/commonUI/themes/espresso/res/css/theme-espresso.css
index 3c1622bda3..08c6beb3d7 100644
--- a/platform/commonUI/themes/espresso/res/css/theme-espresso.css
+++ b/platform/commonUI/themes/espresso/res/css/theme-espresso.css
@@ -1259,46 +1259,76 @@ mct-container {
*****************************************************************************/
/* Styles for the Inspector pane */
/* line 26, ../../../../general/res/sass/_inspector.scss */
-.t-inspector,
-.t-inspector table tr td {
+.l-inspect,
+.l-inspect table tr td {
font-size: 0.7rem; }
-/* line 32, ../../../../general/res/sass/_inspector.scss */
-.t-inspector ul li,
-.t-inspector em {
- display: block;
- position: relative; }
-/* line 38, ../../../../general/res/sass/_inspector.scss */
-.t-inspector ul li {
- line-height: 130%;
- margin-bottom: 20px; }
-/* line 43, ../../../../general/res/sass/_inspector.scss */
-.t-inspector em {
- -moz-border-radius: 2px;
- -webkit-border-radius: 2px;
- border-radius: 2px;
- background-color: #404040;
- color: #999999;
- margin-bottom: 5px;
- padding: 5px 5px;
- text-transform: uppercase; }
-/* line 53, ../../../../general/res/sass/_inspector.scss */
-.t-inspector table tr td {
- border: none;
- border-top: 1px solid rgba(153, 153, 153, 0.1) !important;
- padding: 2px 0;
- vertical-align: top; }
+/* line 31, ../../../../general/res/sass/_inspector.scss */
+.l-inspect {
+ color: #999; }
+ /* line 33, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .pane-header {
+ color: #666666;
+ font-size: 0.8rem; }
+ /* line 38, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect ul li,
+ .l-inspect em {
+ display: block;
+ position: relative; }
+ /* line 44, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect ul li {
+ margin-bottom: 20px; }
+ /* line 48, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect em {
+ -moz-border-radius: 2px;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ background-color: #404040;
+ color: #999999;
+ margin-bottom: 5px;
+ padding: 5px 5px;
+ text-transform: uppercase; }
/* line 58, ../../../../general/res/sass/_inspector.scss */
- .t-inspector table tr td.label {
- color: #666666 !important;
- padding-right: 5px !important;
- white-space: nowrap; }
- /* line 63, ../../../../general/res/sass/_inspector.scss */
- .t-inspector table tr td.value {
- word-break: break-all; }
-/* line 69, ../../../../general/res/sass/_inspector.scss */
-.t-inspector table tr:first-child td {
- border-top: none !important; }
+ .l-inspect table tr td {
+ border: none;
+ border-top: 1px solid rgba(153, 153, 153, 0.1) !important;
+ padding: 2px 0;
+ vertical-align: top; }
+ /* line 63, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect table tr td.label {
+ color: #666666 !important;
+ padding-right: 5px !important;
+ white-space: nowrap; }
+ /* line 68, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect table tr td.value {
+ word-break: break-all; }
+ /* line 73, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect table tr:first-child td {
+ border-top: none !important; }
+ /* line 78, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location {
+ line-height: 180%; }
+ /* line 80, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location .location-item {
+ cursor: pointer;
+ display: inline;
+ position: relative;
+ padding: 2px 4px; }
+ /* line 85, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location .location-item:hover {
+ background: rgba(153, 153, 153, 0.1);
+ color: #cccccc; }
+ /* line 88, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location .location-item:hover .icon {
+ color: #33ccff; }
+ /* line 93, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location:not(.first):before {
+ color: #737373;
+ content: '\3e';
+ display: inline-block;
+ font-family: symbolsfont;
+ font-size: 7px;
+ width: 4px; }
/********************************* CONTROLS */
/* line 1, ../../../../general/res/sass/controls/_breadcrumb.scss */
@@ -2016,8 +2046,8 @@ label.checkbox.custom {
margin-right: 5px; }
/* line 250, ../../../../general/res/sass/controls/_controls.scss */
.object-header .l-elem-wrapper {
- justify-content: flex-start;
- -webkit-justify-content: flex-start; }
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start; }
/* line 253, ../../../../general/res/sass/controls/_controls.scss */
.object-header .l-elem-wrapper mct-representation {
min-width: 0.7em; }
@@ -3689,9 +3719,9 @@ span.req {
width: 25%; }
/* line 214, ../../../../general/res/sass/user-environ/_layout.scss */
.browse-mode .split-layout .split-pane-component.pane.t-inspect.right {
- min-width: 150px;
+ min-width: 100px;
max-width: 800px;
- width: 10%; }
+ width: 20%; }
/* line 225, ../../../../general/res/sass/user-environ/_layout.scss */
.edit-mode .split-layout .split-pane-component.pane.right {
@@ -3705,47 +3735,53 @@ span.req {
.pane {
position: absolute; }
/* line 238, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .pane-header {
+ text-transform: uppercase;
+ height: 24px;
+ line-height: 24px;
+ margin-bottom: 5px; }
+ /* line 246, ../../../../general/res/sass/user-environ/_layout.scss */
.pane.treeview.left .create-btn-holder {
bottom: auto;
top: 0;
height: 24px; }
- /* line 242, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 250, ../../../../general/res/sass/user-environ/_layout.scss */
.pane.treeview.left .create-btn-holder .wrapper.menu-element {
position: absolute;
bottom: 5px; }
- /* line 247, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 255, ../../../../general/res/sass/user-environ/_layout.scss */
.pane.treeview.left .search-holder {
top: 34px; }
- /* line 250, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 258, ../../../../general/res/sass/user-environ/_layout.scss */
.pane.treeview.left .tree-holder {
overflow: auto;
top: 64px; }
- /* line 256, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 264, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane {
z-index: 2; }
@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
- /* line 256, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 264, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane {
top: 5px; }
- /* line 262, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 270, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane.toggle-tree.anchor-left {
left: -30px; }
- /* line 265, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 273, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane.toggle-tree.anchor-left:after {
content: 'F'; }
- /* line 268, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 276, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane.toggle-tree.anchor-left.collapsed {
left: -25px; }
- /* line 272, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 280, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane.toggle-inspect.anchor-right {
right: -25px; }
- /* line 275, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 283, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane.toggle-inspect.anchor-right:after {
content: '\e608'; }
- /* line 278, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 286, ../../../../general/res/sass/user-environ/_layout.scss */
.pane .mini-tab.toggle-pane.toggle-inspect.anchor-right.collapsed {
right: -20px; } }
- /* line 287, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 295, ../../../../general/res/sass/user-environ/_layout.scss */
.pane.items .object-browse-bar .left.abs, .pane.items .object-browse-bar .l-datetime-picker .l-month-year-pager .left.pager, .l-datetime-picker .l-month-year-pager .pane.items .object-browse-bar .left.pager,
.pane.items .object-browse-bar .l-datetime-picker .l-month-year-pager .left.val,
.l-datetime-picker .l-month-year-pager .pane.items .object-browse-bar .left.val, .pane.items .object-browse-bar .s-menu-btn span.left.l-click-area, .s-menu-btn .pane.items .object-browse-bar span.left.l-click-area,
@@ -3758,31 +3794,31 @@ span.req {
.s-menu-btn .pane.items .object-browse-bar span.right.l-click-area {
top: auto; }
-/* line 298, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 306, ../../../../general/res/sass/user-environ/_layout.scss */
.split-layout.horizontal > .pane {
margin-top: 5px; }
- /* line 301, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 309, ../../../../general/res/sass/user-environ/_layout.scss */
.split-layout.horizontal > .pane:first-child {
margin-top: 0; }
-/* line 308, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 316, ../../../../general/res/sass/user-environ/_layout.scss */
.split-layout.vertical > .pane {
margin-left: 5px; }
- /* line 311, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 319, ../../../../general/res/sass/user-environ/_layout.scss */
.split-layout.vertical > .pane > .holder {
left: 0;
right: 0; }
- /* line 315, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 323, ../../../../general/res/sass/user-environ/_layout.scss */
.split-layout.vertical > .pane:first-child {
margin-left: 0; }
- /* line 317, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 325, ../../../../general/res/sass/user-environ/_layout.scss */
.split-layout.vertical > .pane:first-child .holder {
right: 3px; }
-/* line 325, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 333, ../../../../general/res/sass/user-environ/_layout.scss */
.object-holder {
overflow: hidden;
top: 34px; }
- /* line 328, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 336, ../../../../general/res/sass/user-environ/_layout.scss */
.object-holder > ng-include {
overflow: auto;
position: absolute;
@@ -3792,11 +3828,11 @@ span.req {
left: 0;
width: auto;
height: auto; }
- /* line 332, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 340, ../../../../general/res/sass/user-environ/_layout.scss */
.object-holder.l-controls-visible.l-time-controller-visible {
bottom: 88px; }
-/* line 338, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 346, ../../../../general/res/sass/user-environ/_layout.scss */
.object-browse-bar .s-btn, .object-browse-bar .s-menu-btn,
.top-bar .buttons-main .s-btn,
.top-bar .buttons-main .s-menu-btn,
@@ -3808,12 +3844,12 @@ span.req {
line-height: 25px;
vertical-align: top; }
-/* line 351, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 359, ../../../../general/res/sass/user-environ/_layout.scss */
.object-browse-bar .view-switcher,
.top-bar .view-switcher {
margin-right: 20px; }
-/* line 356, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 364, ../../../../general/res/sass/user-environ/_layout.scss */
.object-browse-bar {
overflow: visible;
position: absolute;
@@ -3829,36 +3865,36 @@ span.req {
height: 24px;
line-height: 24px;
white-space: nowrap; }
- /* line 364, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 372, ../../../../general/res/sass/user-environ/_layout.scss */
.object-browse-bar .left {
padding-right: 20px; }
- /* line 366, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 374, ../../../../general/res/sass/user-environ/_layout.scss */
.object-browse-bar .left .l-back {
display: inline-block;
float: left;
margin-right: 10px; }
-/* line 374, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 382, ../../../../general/res/sass/user-environ/_layout.scss */
.l-flex {
display: flex;
display: -webkit-flex;
flex-flow: row nowrap;
-webkit-flex-flow: row nowrap; }
- /* line 377, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 385, ../../../../general/res/sass/user-environ/_layout.scss */
.l-flex .left {
flex: 1 1 0;
-webkit-flex: 1 1 0;
padding-right: 10px; }
-/* line 390, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 397, ../../../../general/res/sass/user-environ/_layout.scss */
.pane-tree-hidden .pane.left.treeview,
.pane-tree-hidden .splitter-treeview {
opacity: 0; }
-/* line 395, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 402, ../../../../general/res/sass/user-environ/_layout.scss */
.pane-tree-hidden .pane.right.items {
left: 15px !important; }
-/* line 402, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 409, ../../../../general/res/sass/user-environ/_layout.scss */
.pane-tree-showing .pane.left.treeview,
.pane-tree-showing .splitter-treeview {
-moz-transition-property: opacity, background-color, border-color, color;
@@ -3879,7 +3915,7 @@ span.req {
transition-delay: 250ms;
opacity: 1; }
-/* line 411, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 418, ../../../../general/res/sass/user-environ/_layout.scss */
.pane-inspect-showing .l-object-and-inspector .pane.right,
.pane-inspect-showing .l-object-and-inspector .splitter-inspect {
-moz-transition-property: opacity, background-color, border-color, color;
@@ -3900,16 +3936,16 @@ span.req {
transition-delay: 250ms;
opacity: 1; }
-/* line 420, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 427, ../../../../general/res/sass/user-environ/_layout.scss */
.pane-inspect-hidden .l-object-and-inspector .pane.right,
.pane-inspect-hidden .l-object-and-inspector .splitter-inspect {
opacity: 0; }
-/* line 424, ../../../../general/res/sass/user-environ/_layout.scss */
+/* line 431, ../../../../general/res/sass/user-environ/_layout.scss */
.pane-inspect-hidden .l-object-and-inspector .pane.left {
right: 15px !important; }
@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
- /* line 431, ../../../../general/res/sass/user-environ/_layout.scss */
+ /* line 438, ../../../../general/res/sass/user-environ/_layout.scss */
.pane:not(.resizing) {
-moz-transition-property: width, left, right;
-o-transition-property: width, left, right;
diff --git a/platform/commonUI/themes/espresso/res/sass/_constants.scss b/platform/commonUI/themes/espresso/res/sass/_constants.scss
index 8aa2bcbdf0..df85c6ecdb 100644
--- a/platform/commonUI/themes/espresso/res/sass/_constants.scss
+++ b/platform/commonUI/themes/espresso/res/sass/_constants.scss
@@ -73,7 +73,7 @@ $colorInputFg: pullForward($colorBodyFg, 20%);
$colorFormText: rgba(#fff, 0.5);
$colorInputIcon: pushBack($colorBodyFg, 15%);
-// Inspector - TO-DO: Add to snow theme
+// Inspector
$colorInspectorFg: $colorBodyFg;
$colorInspectorPropName: pushBack($colorBodyFg, 20%);
$colorInspectorPropVal: $colorInspectorFg;
@@ -134,6 +134,8 @@ $colorPlotAreaBorder: $colorInteriorBorder;
$colorPlotLabelFg: pushBack($colorPlotFg, 20%);
// Tree
+$colorItemTreeHoverBg: rgba($colorBodyFg, 0.1);
+$colorItemTreeHoverFg: pullForward($colorBodyFg, 20%);
$colorItemTreeIcon: $colorKey;
$colorItemTreeIconHover: lighten($colorItemTreeIcon, 20%);
$colorItemTreeFg: $colorBodyFg;
diff --git a/platform/commonUI/themes/snow/res/css/theme-snow.css b/platform/commonUI/themes/snow/res/css/theme-snow.css
index 869495b986..126ad40fa9 100644
--- a/platform/commonUI/themes/snow/res/css/theme-snow.css
+++ b/platform/commonUI/themes/snow/res/css/theme-snow.css
@@ -1,101 +1,6497 @@
-/*
-Error: Undefined variable: "$colorInspectorSectionHeaderBg".
- on line 45 of /Users/iMac/dev/nasa/wtd-dev/platform/commonUI/general/res/sass/_inspector.scss
- from line 33 of /Users/iMac/dev/nasa/wtd-dev/platform/commonUI/general/res/sass/_main.scss
- from line 36 of /Users/iMac/dev/nasa/wtd-dev/platform/commonUI/themes/snow/res/sass/theme-snow.scss
+@charset "UTF-8";
+/*****************************************************************************
+ * 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 5, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font: inherit;
+ font-size: 100%;
+ vertical-align: baseline; }
-Backtrace:
-/Users/iMac/dev/nasa/wtd-dev/platform/commonUI/general/res/sass/_inspector.scss:45
-/Users/iMac/dev/nasa/wtd-dev/platform/commonUI/general/res/sass/_main.scss:33
-/Users/iMac/dev/nasa/wtd-dev/platform/commonUI/themes/snow/res/sass/theme-snow.scss:36
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/script/tree/variable.rb:49:in `_perform'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/script/tree/node.rb:50:in `perform'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:394:in `visit_prop'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:36:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `block in with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:115:in `with_frame'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:430:in `block (2 levels) in visit_rule'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:430:in `map'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:430:in `block in visit_rule'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:428:in `visit_rule'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:36:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `block in with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:115:in `with_frame'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:430:in `block (2 levels) in visit_rule'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:430:in `map'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:430:in `block in visit_rule'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:428:in `visit_rule'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:36:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `block in with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:115:in `with_frame'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:325:in `block (2 levels) in visit_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:325:in `map'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:325:in `block in visit_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:88:in `block in with_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:115:in `with_frame'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:88:in `with_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:322:in `visit_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:36:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `block in with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:115:in `with_frame'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:325:in `block (2 levels) in visit_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:325:in `map'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:325:in `block in visit_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:88:in `block in with_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:115:in `with_frame'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:88:in `with_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:322:in `visit_import'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:36:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `block in with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:115:in `with_frame'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/stack.rb:79:in `with_base'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:158:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:52:in `map'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:52:in `visit_children'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:166:in `visit_children'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:36:in `block in visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:186:in `visit_root'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/base.rb:36:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:157:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/visitors/perform.rb:8:in `visit'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/root_node.rb:36:in `css_tree'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/tree/root_node.rb:20:in `render'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/engine.rb:268:in `render'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:492:in `update_stylesheet'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:209:in `each'
-/Library/Ruby/Gems/2.0.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:209:in `update_stylesheets'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/lib/compass/sass_compiler.rb:40:in `compile!'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/lib/compass/commands/update_project.rb:49:in `perform'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/lib/compass/commands/base.rb:18:in `execute'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/lib/compass/commands/project_base.rb:19:in `execute'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/lib/compass/exec/sub_command_ui.rb:43:in `perform!'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/lib/compass/exec/sub_command_ui.rb:15:in `run!'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/bin/compass:30:in `block in '
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/bin/compass:44:in `call'
-/Library/Ruby/Gems/2.0.0/gems/compass-1.0.3/bin/compass:44:in `'
-/usr/bin/compass:23:in `load'
-/usr/bin/compass:23:in `'
-*/
-body:before {
- white-space: pre;
- font-family: monospace;
- content: "Error: Undefined variable: \"$colorInspectorSectionHeaderBg\".\A on line 45 of /Users/iMac/dev/nasa/wtd-dev/platform/commonUI/general/res/sass/_inspector.scss\A from line 33 of /Users/iMac/dev/nasa/wtd-dev/platform/commonUI/general/res/sass/_main.scss\A from line 36 of /Users/iMac/dev/nasa/wtd-dev/platform/commonUI/themes/snow/res/sass/theme-snow.scss"; }
+/* line 22, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+html {
+ line-height: 1; }
+
+/* line 24, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+ol, ul {
+ list-style: none; }
+
+/* line 26, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+table {
+ border-collapse: collapse;
+ border-spacing: 0; }
+
+/* line 28, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+caption, th, td {
+ text-align: left;
+ font-weight: normal;
+ vertical-align: middle; }
+
+/* line 30, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+q, blockquote {
+ quotes: none; }
+ /* line 103, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+ q:before, q:after, blockquote:before, blockquote:after {
+ content: "";
+ content: none; }
+
+/* line 32, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+a img {
+ border: none; }
+
+/* line 116, ../../../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
+article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
+ display: block; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/*********************************************** CONTROLS, FORM ELEMENTS */
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/************************** FEATURES */
+/************************** VERY INFLUENTIAL GLOBAL DIMENSIONS */
+/************************** RATIOS */
+/************************** LAYOUT */
+/************************** CONTROLS */
+/************************** PATHS */
+/************************** TIMINGS */
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/************************** MOBILE REPRESENTATION ITEMS DIMENSIONS */
+/************************** MOBILE TREE MENU DIMENSIONS */
+/************************** WINDOW DIMENSIONS FOR RWD */
+/************************** MEDIA QUERIES: WINDOW CHECKS FOR SPECIFIC ORIENTATIONS FOR EACH DEVICE */
+/************************** MEDIA QUERIES: WINDOWS FOR SPECIFIC ORIENTATIONS FOR EACH DEVICE */
+/************************** DEVICE PARAMETERS FOR MENUS/REPRESENTATIONS */
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/_effects.scss */
+.disabled,
+a.disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
+ opacity: 0.3;
+ pointer-events: none !important;
+ cursor: default !important; }
+
+/* line 29, ../../../../general/res/sass/_effects.scss */
+.incised {
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.8) 0 1px 5px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.8) 0 1px 5px;
+ box-shadow: inset rgba(0, 0, 0, 0.8) 0 1px 5px;
+ border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
+
+/* line 34, ../../../../general/res/sass/_effects.scss */
+.outline {
+ border: 1px solid white; }
+
+/* line 38, ../../../../general/res/sass/_effects.scss */
+.test-stripes {
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiNmZmZmMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZmZmMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiNmZmZmMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
+ background-size: 100%;
+ background-image: -moz-linear-gradient(135deg, rgba(255, 255, 0, 0.1) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 0, 0.1) 50%, rgba(255, 255, 0, 0.1) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
+ background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 0, 0.1) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 0, 0.1) 50%, rgba(255, 255, 0, 0.1) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
+ background-image: linear-gradient(-45deg, rgba(255, 255, 0, 0.1) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 0, 0.1) 50%, rgba(255, 255, 0, 0.1) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
+ background-repeat: repeat;
+ background-size: 40px 40px; }
+
+/* line 42, ../../../../general/res/sass/_effects.scss */
+.test {
+ background-color: rgba(255, 204, 0, 0.2) !important; }
+
+@-moz-keyframes pulse {
+ 0% {
+ opacity: 0.5; }
+ 100% {
+ opacity: 1; } }
+@-webkit-keyframes pulse {
+ 0% {
+ opacity: 0.5; }
+ 100% {
+ opacity: 1; } }
+@keyframes pulse {
+ 0% {
+ opacity: 0.5; }
+ 100% {
+ opacity: 1; } }
+/* line 69, ../../../../general/res/sass/_effects.scss */
+.pulse {
+ -moz-animation-name: pulse;
+ -webkit-animation-name: pulse;
+ animation-name: pulse;
+ -moz-animation-duration: 750ms;
+ -webkit-animation-duration: 750ms;
+ animation-duration: 750ms;
+ -moz-animation-direction: alternate;
+ -webkit-animation-direction: alternate;
+ animation-direction: alternate;
+ -moz-animation-iteration-count: infinite;
+ -webkit-animation-iteration-count: infinite;
+ animation-iteration-count: infinite;
+ -moz-animation-timing-function: ease-in-out;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/************************** FONTS */
+@font-face {
+ /*
+ * Use https://icomoon.io/app with /platform/commonUI/general/res/fonts/symbols/icomoon.io-WTD-symbols-project.json
+ */
+ font-family: 'symbolsfont';
+ src: url("../../../../general/res/fonts/symbols/wtdsymbols.eot");
+ src: url("../../../../general/res/fonts/symbols/wtdsymbols.eot?#iefix") format("embedded-opentype"), url("../../../../general/res/fonts/symbols/wtdsymbols.woff") format("woff"), url("../../../../general/res/fonts/symbols/wtdsymbols.ttf") format("truetype"), url("../../../../general/res/fonts/symbols/wtdsymbols.svg#armataregular") format("svg");
+ font-weight: normal;
+ font-style: normal; }
+/************************** HTML ENTITIES */
+/* line 38, ../../../../general/res/sass/_global.scss */
+a {
+ color: #999;
+ cursor: pointer;
+ text-decoration: none; }
+ /* line 42, ../../../../general/res/sass/_global.scss */
+ a:hover {
+ color: #0099cc; }
+
+/* line 47, ../../../../general/res/sass/_global.scss */
+body, html {
+ -webkit-font-smoothing: subpixel-antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ background-color: #fcfcfc;
+ color: #666;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 100%;
+ height: 100%;
+ width: 100%;
+ overflow: hidden; }
+
+/* line 60, ../../../../general/res/sass/_global.scss */
+em {
+ font-style: normal; }
+
+/* line 64, ../../../../general/res/sass/_global.scss */
+input, textarea {
+ font-family: Helvetica, Arial, sans-serif; }
+
+/* line 68, ../../../../general/res/sass/_global.scss */
+input[type="text"] {
+ vertical-align: baseline;
+ padding: 3px 5px !important; }
+
+/* line 73, ../../../../general/res/sass/_global.scss */
+h1, h2, h3 {
+ margin: 0; }
+
+/* line 77, ../../../../general/res/sass/_global.scss */
+h1 {
+ font-size: 1.7em;
+ font-weight: normal !important;
+ line-height: 120%;
+ margin-bottom: 20px;
+ margin-top: 0; }
+
+/* line 85, ../../../../general/res/sass/_global.scss */
+p {
+ margin-bottom: 10px; }
+
+/* line 89, ../../../../general/res/sass/_global.scss */
+mct-container {
+ display: block; }
+
+/* line 93, ../../../../general/res/sass/_global.scss */
+.abs, .l-datetime-picker .l-month-year-pager .pager,
+.l-datetime-picker .l-month-year-pager .val, .s-menu-btn span.l-click-area {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ height: auto;
+ width: auto; }
+
+/* line 103, ../../../../general/res/sass/_global.scss */
+.code, .codehilite {
+ font-family: "Lucida Console", monospace;
+ font-size: 0.7em;
+ line-height: 150%;
+ white-space: pre; }
+
+/* line 110, ../../../../general/res/sass/_global.scss */
+.codehilite {
+ background-color: rgba(102, 102, 102, 0.1);
+ padding: 1em; }
+
+/* line 116, ../../../../general/res/sass/_global.scss */
+.align-right {
+ text-align: right; }
+
+/* line 120, ../../../../general/res/sass/_global.scss */
+.centered {
+ text-align: center; }
+
+/* line 124, ../../../../general/res/sass/_global.scss */
+.scrolling {
+ overflow: auto; }
+
+/* line 128, ../../../../general/res/sass/_global.scss */
+.vscroll {
+ overflow-y: auto; }
+
+/* line 132, ../../../../general/res/sass/_global.scss */
+.no-margin {
+ margin: 0; }
+
+/* line 136, ../../../../general/res/sass/_global.scss */
+.ds {
+ -moz-box-shadow: rgba(0, 0, 0, 0.7) 0 4px 10px 2px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.7) 0 4px 10px 2px;
+ box-shadow: rgba(0, 0, 0, 0.7) 0 4px 10px 2px; }
+
+/* line 140, ../../../../general/res/sass/_global.scss */
+.hide,
+.hidden {
+ display: none !important; }
+
+/* line 145, ../../../../general/res/sass/_global.scss */
+.sep {
+ color: rgba(255, 255, 255, 0.2); }
+
+/*****************************************************************************
+ * 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 26, ../../../../general/res/sass/_about.scss */
+.l-about.abs, .l-datetime-picker .l-month-year-pager .l-about.pager,
+.l-datetime-picker .l-month-year-pager .l-about.val, .s-menu-btn span.l-about.l-click-area {
+ overflow: auto; }
+/* line 31, ../../../../general/res/sass/_about.scss */
+.l-about .l-logo-holder {
+ position: relative;
+ height: 45%; }
+ /* line 34, ../../../../general/res/sass/_about.scss */
+ .l-about .l-logo-holder .l-logo {
+ position: absolute; }
+ /* line 37, ../../../../general/res/sass/_about.scss */
+ .l-about .l-logo-holder .l-logo.l-logo-app {
+ top: 0;
+ right: 15%;
+ bottom: 0;
+ left: 15%; }
+ /* line 41, ../../../../general/res/sass/_about.scss */
+ .l-about .l-logo-holder .l-logo.s-logo-nasa {
+ background-image: url("../../../../general/res/images/logo-nasa.svg");
+ top: 10px;
+ right: auto;
+ bottom: auto;
+ left: 10px;
+ width: 10%;
+ height: auto;
+ padding-bottom: 5%;
+ padding-top: 5%; }
+/* line 50, ../../../../general/res/sass/_about.scss */
+.l-about .l-content {
+ position: relative;
+ margin-top: 10px; }
+
+/* line 57, ../../../../general/res/sass/_about.scss */
+.s-about {
+ line-height: 120%; }
+ /* line 61, ../../../../general/res/sass/_about.scss */
+ .s-about a {
+ color: #84b3ff; }
+ /* line 68, ../../../../general/res/sass/_about.scss */
+ .s-about .s-logo-holder {
+ background: url("../../../../general/res/images/bg-about-openmctweb.jpg") no-repeat center;
+ background-size: cover; }
+ /* line 72, ../../../../general/res/sass/_about.scss */
+ .s-about .s-logo {
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: contain; }
+ /* line 78, ../../../../general/res/sass/_about.scss */
+ .s-about .s-logo-openmctweb {
+ background-image: url("../../../../general/res/images/logo-openmctweb-shdw.svg"); }
+ /* line 81, ../../../../general/res/sass/_about.scss */
+ .s-about .s-btn, .s-about .s-menu-btn {
+ line-height: 2em; }
+ /* line 85, ../../../../general/res/sass/_about.scss */
+ .s-about .l-licenses-software .l-license-software {
+ border-top: 1px solid rgba(102, 102, 102, 0.2);
+ padding: 0.5em 0; }
+ /* line 88, ../../../../general/res/sass/_about.scss */
+ .s-about .l-licenses-software .l-license-software:first-child {
+ border-top: none; }
+ /* line 91, ../../../../general/res/sass/_about.scss */
+ .s-about .l-licenses-software .l-license-software em {
+ color: #999999; }
+ /* line 98, ../../../../general/res/sass/_about.scss */
+ .s-about .l-licenses-software .l-license-software h3 {
+ font-size: 1.25em; }
+ /* line 101, ../../../../general/res/sass/_about.scss */
+ .s-about .l-licenses-software .l-license-software .s-license-text {
+ font-size: 0.9em; }
+
+/*****************************************************************************
+ * 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 24, ../../../../general/res/sass/_text.scss */
+.abs.l-standalone, .l-datetime-picker .l-month-year-pager .l-standalone.pager,
+.l-datetime-picker .l-month-year-pager .l-standalone.val, .s-menu-btn span.l-standalone.l-click-area {
+ padding: 5% 20%; }
+
+/* line 29, ../../../../general/res/sass/_text.scss */
+.s-text {
+ font-size: 0.8em; }
+ /* line 31, ../../../../general/res/sass/_text.scss */
+ .s-text ol, .s-text ul {
+ list-style: square;
+ margin-left: 1.5em; }
+ /* line 39, ../../../../general/res/sass/_text.scss */
+ .s-text h1, .s-text h2, .s-text h3 {
+ color: #333333;
+ font-weight: normal !important;
+ margin-bottom: 1em; }
+ /* line 45, ../../../../general/res/sass/_text.scss */
+ .s-text h2 {
+ border-top: 1px solid rgba(102, 102, 102, 0.2);
+ font-size: 1.5em;
+ margin-top: 2em;
+ padding-top: 1em; }
+ /* line 52, ../../../../general/res/sass/_text.scss */
+ .s-text h3 {
+ margin-top: 2em; }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/_icons.scss */
+.triangle {
+ width: 0;
+ height: 0;
+ border-top: 5px solid transparent;
+ border-left: 5px solid #0099cc;
+ border-bottom: 5px solid transparent; }
+ /* line 26, ../../../../general/res/sass/_icons.scss */
+ .triangle.triangle-down {
+ width: 0;
+ height: 0;
+ border-left: 5px solid transparent;
+ border-top: 5px solid #0099cc;
+ border-right: 5px solid transparent; }
+
+/* line 31, ../../../../general/res/sass/_icons.scss */
+.ui-symbol, .s-icon-btn, .mini-tab, .l-datetime-picker .l-month-year-pager .pager {
+ font-family: 'symbolsfont'; }
+ /* line 33, ../../../../general/res/sass/_icons.scss */
+ .ui-symbol.type-icon, .type-icon.s-icon-btn, .type-icon.mini-tab, .l-datetime-picker .l-month-year-pager .type-icon.pager {
+ color: #b3b3b3; }
+ /* line 36, ../../../../general/res/sass/_icons.scss */
+ .ui-symbol.icon, .icon.s-icon-btn, .icon.mini-tab, .l-datetime-picker .l-month-year-pager .icon.pager {
+ color: #0099cc; }
+ /* line 38, ../../../../general/res/sass/_icons.scss */
+ .ui-symbol.icon.alert, .icon.alert.s-icon-btn, .icon.alert.mini-tab, .l-datetime-picker .l-month-year-pager .icon.alert.pager {
+ color: #ff3c00; }
+ /* line 40, ../../../../general/res/sass/_icons.scss */
+ .ui-symbol.icon.alert:hover, .icon.alert.s-icon-btn:hover, .icon.alert.mini-tab:hover, .l-datetime-picker .l-month-year-pager .icon.alert.pager:hover {
+ color: #ff8a66; }
+ /* line 44, ../../../../general/res/sass/_icons.scss */
+ .ui-symbol.icon.major, .icon.major.s-icon-btn, .icon.major.mini-tab, .l-datetime-picker .l-month-year-pager .icon.major.pager {
+ font-size: 1.65em; }
+ /* line 48, ../../../../general/res/sass/_icons.scss */
+ .ui-symbol.icon-calendar:after, .icon-calendar.s-icon-btn:after, .icon-calendar.mini-tab:after, .l-datetime-picker .l-month-year-pager .icon-calendar.pager:after {
+ content: "\e605"; }
+
+/* line 53, ../../../../general/res/sass/_icons.scss */
+.bar .ui-symbol, .bar .s-icon-btn, .bar .mini-tab, .bar .l-datetime-picker .l-month-year-pager .pager, .l-datetime-picker .l-month-year-pager .bar .pager {
+ display: inline-block; }
+
+/* line 57, ../../../../general/res/sass/_icons.scss */
+.invoke-menu {
+ text-shadow: none;
+ display: inline-block; }
+
+/* line 62, ../../../../general/res/sass/_icons.scss */
+.s-menu-btn .invoke-menu,
+.icon.major .invoke-menu {
+ margin-left: 3px; }
+
+/* line 67, ../../../../general/res/sass/_icons.scss */
+.menu .type-icon,
+.tree-item .type-icon,
+.super-menu.menu .type-icon {
+ position: absolute; }
+
+/* line 77, ../../../../general/res/sass/_icons.scss */
+.l-icon-link:before {
+ content: "\f4"; }
+
+/* line 81, ../../../../general/res/sass/_icons.scss */
+.l-icon-alert {
+ display: none !important; }
+ /* line 83, ../../../../general/res/sass/_icons.scss */
+ .l-icon-alert:before {
+ color: #ff3c00;
+ content: "!"; }
+
+/* line 13, ../../../../general/res/sass/_limits.scss */
+[class*="s-limit"]:before {
+ display: inline-block;
+ font-family: symbolsfont;
+ font-size: 0.75em;
+ font-style: normal !important;
+ margin-right: 3px;
+ vertical-align: middle; }
+
+/* line 23, ../../../../general/res/sass/_limits.scss */
+.s-limit-upr-red {
+ background: rgba(255, 0, 0, 0.3) !important; }
+ /* line 4, ../../../../general/res/sass/_limits.scss */
+ .s-limit-upr-red:before {
+ color: red;
+ content: "ë"; }
+
+/* line 24, ../../../../general/res/sass/_limits.scss */
+.s-limit-upr-yellow {
+ background: rgba(255, 170, 0, 0.3) !important; }
+ /* line 4, ../../../../general/res/sass/_limits.scss */
+ .s-limit-upr-yellow:before {
+ color: #ffaa00;
+ content: "Ã"; }
+
+/* line 25, ../../../../general/res/sass/_limits.scss */
+.s-limit-lwr-yellow {
+ background: rgba(255, 170, 0, 0.3) !important; }
+ /* line 4, ../../../../general/res/sass/_limits.scss */
+ .s-limit-lwr-yellow:before {
+ color: #ffaa00;
+ content: "ì"; }
+
+/* line 26, ../../../../general/res/sass/_limits.scss */
+.s-limit-lwr-red {
+ background: rgba(255, 0, 0, 0.3) !important; }
+ /* line 4, ../../../../general/res/sass/_limits.scss */
+ .s-limit-lwr-red:before {
+ color: red;
+ content: "î"; }
+
+/* line 1, ../../../../general/res/sass/_data-status.scss */
+.s-stale {
+ color: rgba(51, 51, 51, 0.5) !important;
+ font-style: italic; }
+ /* line 3, ../../../../general/res/sass/_data-status.scss */
+ .s-stale .td {
+ color: rgba(51, 51, 51, 0.5) !important;
+ font-style: italic; }
+
+/*****************************************************************************
+ * 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 24, ../../../../general/res/sass/helpers/_bubbles.scss */
+.bubble-container {
+ pointer-events: none; }
+
+/* line 31, ../../../../general/res/sass/helpers/_bubbles.scss */
+.l-infobubble-wrapper {
+ -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 5px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 5px;
+ box-shadow: rgba(0, 0, 0, 0.4) 0 1px 5px;
+ position: relative;
+ z-index: 50; }
+ /* line 36, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble {
+ display: inline-block;
+ min-width: 100px;
+ max-width: 300px;
+ padding: 5px 10px; }
+ /* line 41, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble:before {
+ content: "";
+ position: absolute;
+ width: 0;
+ height: 0; }
+ /* line 47, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble table {
+ width: 100%; }
+ /* line 50, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble table tr td {
+ padding: 2px 0;
+ vertical-align: top; }
+ /* line 53, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble table tr td.label {
+ padding-right: 10px;
+ white-space: nowrap; }
+ /* line 57, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble table tr td.value {
+ word-break: break-all; }
+ /* line 61, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble table tr td.align-wrap {
+ white-space: normal; }
+ /* line 67, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .l-infobubble .title {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ margin-bottom: 5px; }
+ /* line 74, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-left {
+ margin-left: 20px; }
+ /* line 76, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-left .l-infobubble::before {
+ right: 100%; }
+ @media screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 76, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-left .l-infobubble::before {
+ width: 0;
+ height: 0;
+ border-top: 6.66667px solid transparent;
+ border-bottom: 6.66667px solid transparent;
+ border-right: 10px solid white; } }
+ @media screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 88, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-right {
+ margin-right: 20px; } }
+ /* line 95, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-right .l-infobubble::before {
+ left: 100%; }
+ @media screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 95, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-right .l-infobubble::before {
+ width: 0;
+ height: 0;
+ border-top: 6.66667px solid transparent;
+ border-bottom: 6.66667px solid transparent;
+ border-left: 10px solid white; } }
+ /* line 108, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-top .l-infobubble::before {
+ top: 20px; }
+ /* line 114, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-btm .l-infobubble::before {
+ bottom: 20px; }
+ /* line 119, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-down {
+ margin-bottom: 10px; }
+ /* line 121, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-down .l-infobubble::before {
+ left: 50%;
+ top: 100%;
+ margin-left: -5px;
+ border-left: 5px solid transparent;
+ border-right: 5px solid transparent;
+ border-top: 7.5px solid white; }
+ /* line 130, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper .arw {
+ z-index: 2; }
+ /* line 133, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .l-infobubble-wrapper.arw-up .arw.arw-down, .l-infobubble-wrapper.arw-down .arw.arw-up {
+ display: none; }
+
+/* line 142, ../../../../general/res/sass/helpers/_bubbles.scss */
+.l-thumbsbubble-wrapper .arw-up {
+ width: 0;
+ height: 0;
+ border-left: 6.66667px solid transparent;
+ border-right: 6.66667px solid transparent;
+ border-bottom: 10px solid #e3e3e3; }
+/* line 145, ../../../../general/res/sass/helpers/_bubbles.scss */
+.l-thumbsbubble-wrapper .arw-down {
+ width: 0;
+ height: 0;
+ border-left: 6.66667px solid transparent;
+ border-right: 6.66667px solid transparent;
+ border-top: 10px solid #e3e3e3; }
+
+/* line 150, ../../../../general/res/sass/helpers/_bubbles.scss */
+.s-infobubble {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 5px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 5px;
+ box-shadow: rgba(0, 0, 0, 0.4) 0 1px 5px;
+ background: white;
+ color: #666;
+ font-size: 0.8rem; }
+ /* line 157, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .s-infobubble .title {
+ color: #333333;
+ font-weight: bold; }
+ /* line 163, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .s-infobubble table tr td {
+ border: none;
+ border-top: 1px solid #e6e6e6 !important;
+ font-size: 0.9em; }
+ /* line 169, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .s-infobubble table tr:first-child td {
+ border-top: none !important; }
+ /* line 174, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .s-infobubble:first-child td {
+ border-top: none; }
+ /* line 178, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .s-infobubble .label {
+ color: gray; }
+ /* line 182, ../../../../general/res/sass/helpers/_bubbles.scss */
+ .s-infobubble .value {
+ color: #333333; }
+
+/* line 188, ../../../../general/res/sass/helpers/_bubbles.scss */
+.s-thumbsbubble {
+ background: #e3e3e3;
+ color: #4d4d4d; }
+
+/*****************************************************************************
+ * 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 25, ../../../../general/res/sass/helpers/_splitter.scss */
+.split-layout .splitter {
+ background-color: #969696;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ border-radius: 5px;
+ position: absolute;
+ z-index: 1; }
+ /* line 32, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout .splitter:hover {
+ background-color: #0099cc; }
+ /* line 34, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout .splitter:hover:after {
+ border-color: #fcfcfc !important; }
+ /* line 39, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout .splitter:active {
+ background-color: #898989; }
+/* line 43, ../../../../general/res/sass/helpers/_splitter.scss */
+.split-layout.horizontal {
+ overflow: hidden; }
+ /* line 46, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.horizontal .pane {
+ left: 0;
+ right: 0; }
+ /* line 49, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.horizontal .pane.top {
+ bottom: auto; }
+ /* line 52, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.horizontal .pane.bottom {
+ top: auto; }
+ /* line 56, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.horizontal > .splitter {
+ cursor: row-resize;
+ left: 0;
+ right: 0;
+ width: auto;
+ height: 5px; }
+ /* line 57, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.horizontal > .splitter:after {
+ -moz-transition-property: "border-color";
+ -o-transition-property: "border-color";
+ -webkit-transition-property: "border-color";
+ transition-property: "border-color";
+ -moz-transition-duration: 25ms;
+ -o-transition-duration: 25ms;
+ -webkit-transition-duration: 25ms;
+ transition-duration: 25ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ content: '';
+ display: block;
+ pointer-events: none;
+ position: absolute;
+ z-index: 2;
+ border-top: 1px dotted #d6d6d6;
+ top: 2px;
+ left: 5px;
+ right: 5px;
+ height: 1px; }
+/* line 68, ../../../../general/res/sass/helpers/_splitter.scss */
+.split-layout.vertical .pane {
+ top: 0;
+ bottom: 0; }
+ /* line 71, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.vertical .pane.left {
+ right: auto; }
+ /* line 74, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.vertical .pane.right {
+ left: auto; }
+/* line 78, ../../../../general/res/sass/helpers/_splitter.scss */
+.split-layout.vertical > .splitter {
+ bottom: 0;
+ cursor: col-resize;
+ width: 5px; }
+ /* line 82, ../../../../general/res/sass/helpers/_splitter.scss */
+ .split-layout.vertical > .splitter:after {
+ -moz-transition-property: "border-color";
+ -o-transition-property: "border-color";
+ -webkit-transition-property: "border-color";
+ transition-property: "border-color";
+ -moz-transition-duration: 25ms;
+ -o-transition-duration: 25ms;
+ -webkit-transition-duration: 25ms;
+ transition-duration: 25ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ content: '';
+ display: block;
+ pointer-events: none;
+ position: absolute;
+ z-index: 2;
+ border-left: 1px dotted #d6d6d6;
+ left: 2px;
+ bottom: 5px;
+ top: 5px;
+ width: 1px; }
+
+/* line 89, ../../../../general/res/sass/helpers/_splitter.scss */
+.browse-area .splitter {
+ top: 0; }
+
+/* line 93, ../../../../general/res/sass/helpers/_splitter.scss */
+.edit-area .splitter {
+ top: 0; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+@-moz-keyframes rotation {
+ 0% {
+ transform: rotate(0deg); }
+ 100% {
+ transform: rotate(359deg); } }
+@-webkit-keyframes rotation {
+ 0% {
+ transform: rotate(0deg); }
+ 100% {
+ transform: rotate(359deg); } }
+@keyframes rotation {
+ 0% {
+ transform: rotate(0deg); }
+ 100% {
+ transform: rotate(359deg); } }
+/* line 63, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+.t-wait-spinner,
+.wait-spinner {
+ display: block;
+ position: absolute;
+ -webkit-animation: rotation .6s infinite linear;
+ -moz-animation: rotation .6s infinite linear;
+ -o-animation: rotation .6s infinite linear;
+ animation: rotation .6s infinite linear;
+ border-color: rgba(0, 153, 204, 0.25);
+ border-top-color: #0099cc;
+ border-style: solid;
+ border-width: 0.5em;
+ -moz-border-radius: 100%;
+ -webkit-border-radius: 100%;
+ border-radius: 100%;
+ top: 50%;
+ left: 50%;
+ height: auto;
+ width: auto;
+ padding: 5%;
+ pointer-events: none;
+ margin-top: -5%;
+ margin-left: -5%;
+ z-index: 2; }
+ /* line 74, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .t-wait-spinner.inline,
+ .wait-spinner.inline {
+ display: inline-block !important;
+ margin-right: 5px;
+ position: relative !important;
+ vertical-align: middle; }
+
+/* line 82, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+.l-wait-spinner-holder {
+ pointer-events: none;
+ position: absolute; }
+ /* line 86, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .l-wait-spinner-holder.align-left .t-wait-spinner {
+ left: 0;
+ margin-left: 0; }
+ /* line 91, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .l-wait-spinner-holder.full-size {
+ display: inline-block;
+ height: 100%;
+ width: 100%; }
+ /* line 94, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .l-wait-spinner-holder.full-size .t-wait-spinner {
+ top: 0;
+ margin-top: 0;
+ padding: 30%; }
+
+/* line 103, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+.treeview .wait-spinner {
+ display: block;
+ position: absolute;
+ -webkit-animation: rotation .6s infinite linear;
+ -moz-animation: rotation .6s infinite linear;
+ -o-animation: rotation .6s infinite linear;
+ animation: rotation .6s infinite linear;
+ border-color: rgba(0, 153, 204, 0.25);
+ border-top-color: #0099cc;
+ border-style: solid;
+ border-width: 0.25em;
+ -moz-border-radius: 100%;
+ -webkit-border-radius: 100%;
+ border-radius: 100%;
+ height: 10px;
+ width: 10px;
+ margin: 0 !important;
+ padding: 0 !important;
+ top: 2px;
+ left: 0; }
+
+/* line 112, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+.wait-spinner.sm {
+ display: block;
+ position: absolute;
+ -webkit-animation: rotation .6s infinite linear;
+ -moz-animation: rotation .6s infinite linear;
+ -o-animation: rotation .6s infinite linear;
+ animation: rotation .6s infinite linear;
+ border-color: rgba(0, 153, 204, 0.25);
+ border-top-color: #0099cc;
+ border-style: solid;
+ border-width: 0.25em;
+ -moz-border-radius: 100%;
+ -webkit-border-radius: 100%;
+ border-radius: 100%;
+ height: 13px;
+ width: 13px;
+ margin-left: 0 !important;
+ margin-top: 0 !important;
+ padding: 0 !important;
+ top: 0;
+ left: 0; }
+
+/* line 122, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+.loading {
+ pointer-events: none; }
+ /* line 125, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .loading:before, .loading:after {
+ content: ''; }
+ /* line 129, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .loading:before {
+ -moz-animation-name: rotateCentered;
+ -webkit-animation-name: rotateCentered;
+ animation-name: rotateCentered;
+ -moz-animation-duration: 0.5s;
+ -webkit-animation-duration: 0.5s;
+ animation-duration: 0.5s;
+ -moz-animation-iteration-count: infinite;
+ -webkit-animation-iteration-count: infinite;
+ animation-iteration-count: infinite;
+ -moz-animation-timing-function: linear;
+ -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
+ border-color: rgba(119, 107, 162, 0.25);
+ border-top-color: #776ba2;
+ border-style: solid;
+ border-width: 5px;
+ -moz-border-radius: 100%;
+ -webkit-border-radius: 100%;
+ border-radius: 100%;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ display: block;
+ position: absolute;
+ height: 0;
+ width: 0;
+ padding: 7%;
+ left: 50%;
+ top: 50%;
+ z-index: 10; }
+@-moz-keyframes rotateCentered {
+ 0% {
+ transform: translateX(-50%) translateY(-50%) rotate(0deg); }
+ 100% {
+ transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
+@-webkit-keyframes rotateCentered {
+ 0% {
+ transform: translateX(-50%) translateY(-50%) rotate(0deg); }
+ 100% {
+ transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
+@keyframes rotateCentered {
+ 0% {
+ transform: translateX(-50%) translateY(-50%) rotate(0deg); }
+ 100% {
+ transform: translateX(-50%) translateY(-50%) rotate(359deg); } }
+ /* line 133, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .loading:after {
+ overflow: hidden;
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ width: auto;
+ height: auto;
+ background: rgba(119, 107, 162, 0.1);
+ display: block;
+ z-index: 9; }
+ /* line 139, ../../../../general/res/sass/helpers/_wait-spinner.scss */
+ .loading.tree-item:before {
+ padding: 0.375rem;
+ border-width: 2px; }
+
+/* Styles for messages */
+/* line 4, ../../../../general/res/sass/_messages.scss */
+.message.block {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ padding: 10px; }
+/* line 8, ../../../../general/res/sass/_messages.scss */
+.message.error {
+ background-color: rgba(255, 60, 0, 0.3);
+ color: #ff8a66; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/* Styles for the Inspector pane */
+/* line 26, ../../../../general/res/sass/_inspector.scss */
+.l-inspect,
+.l-inspect table tr td {
+ font-size: 0.7rem; }
+
+/* line 31, ../../../../general/res/sass/_inspector.scss */
+.l-inspect {
+ color: #666; }
+ /* line 33, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .pane-header {
+ color: #999999;
+ font-size: 0.8rem; }
+ /* line 38, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect ul li,
+ .l-inspect em {
+ display: block;
+ position: relative; }
+ /* line 44, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect ul li {
+ margin-bottom: 20px; }
+ /* line 48, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect em {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ background-color: #efefef;
+ color: #969696;
+ margin-bottom: 5px;
+ padding: 5px 5px;
+ text-transform: uppercase; }
+ /* line 58, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect table tr td {
+ border: none;
+ border-top: 1px solid rgba(102, 102, 102, 0.2) !important;
+ padding: 2px 0;
+ vertical-align: top; }
+ /* line 63, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect table tr td.label {
+ color: #999999 !important;
+ padding-right: 5px !important;
+ white-space: nowrap; }
+ /* line 68, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect table tr td.value {
+ word-break: break-all; }
+ /* line 73, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect table tr:first-child td {
+ border-top: none !important; }
+ /* line 78, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location {
+ line-height: 180%; }
+ /* line 80, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location .location-item {
+ cursor: pointer;
+ display: inline;
+ position: relative;
+ padding: 2px 4px; }
+ /* line 85, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location .location-item:hover {
+ background: rgba(102, 102, 102, 0.1);
+ color: #333333; }
+ /* line 88, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location .location-item:hover .icon {
+ color: #0099cc; }
+ /* line 93, ../../../../general/res/sass/_inspector.scss */
+ .l-inspect .inspector-location:not(.first):before {
+ color: #8c8c8c;
+ content: '\3e';
+ display: inline-block;
+ font-family: symbolsfont;
+ font-size: 7px;
+ width: 4px; }
+
+/********************************* CONTROLS */
+/* line 1, ../../../../general/res/sass/controls/_breadcrumb.scss */
+.l-breadcrumb {
+ font-size: 0.7rem;
+ line-height: 1em;
+ margin-bottom: 5px;
+ margin-left: -4px; }
+ /* line 10, ../../../../general/res/sass/controls/_breadcrumb.scss */
+ .l-breadcrumb .l-breadcrumb-item a {
+ -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;
+ -moz-transition: background-color 0.25s;
+ -o-transition: background-color 0.25s;
+ -webkit-transition: background-color 0.25s;
+ transition: background-color 0.25s;
+ color: #404040;
+ display: inline-block;
+ padding: 2px 4px; }
+ /* line 18, ../../../../general/res/sass/controls/_breadcrumb.scss */
+ .l-breadcrumb .l-breadcrumb-item a .icon {
+ color: #0099cc;
+ margin-right: 5px; }
+ /* line 22, ../../../../general/res/sass/controls/_breadcrumb.scss */
+ .l-breadcrumb .l-breadcrumb-item a:hover {
+ background: white;
+ color: gray; }
+ /* line 25, ../../../../general/res/sass/controls/_breadcrumb.scss */
+ .l-breadcrumb .l-breadcrumb-item a:hover .icon {
+ color: #0099cc; }
+
+/*****************************************************************************
+ * 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 25, ../../../../general/res/sass/controls/_buttons.scss */
+.s-btn, .s-menu-btn,
+.s-icon-btn {
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ cursor: pointer;
+ text-decoration: none;
+ height: 25px;
+ line-height: 25px; }
+
+/* line 34, ../../../../general/res/sass/controls/_buttons.scss */
+.s-btn, .s-menu-btn {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0 7.5px;
+ font-size: 0.7rem; }
+ /* line 39, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn .icon, .s-menu-btn .icon {
+ font-size: 0.8rem;
+ color: #0099cc; }
+ /* line 44, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn .title-label, .s-menu-btn .title-label {
+ vertical-align: top; }
+ /* line 48, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.lg, .lg.s-menu-btn {
+ font-size: 1rem; }
+ /* line 52, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.sm, .sm.s-menu-btn {
+ padding: 0 5px; }
+ /* line 56, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.vsm, .vsm.s-menu-btn {
+ padding: 0 2.5px; }
+ /* line 60, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.major, .major.s-menu-btn {
+ background-color: #0099cc;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #fff;
+ display: inline-block;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -moz-transition: background, 0.25s;
+ -o-transition: background, 0.25s;
+ -webkit-transition: background, 0.25s;
+ transition: background, 0.25s;
+ text-shadow: none; }
+ /* line 274, ../../../../general/res/sass/_mixins.scss */
+ .s-btn.major .icon, .major.s-menu-btn .icon {
+ color: #fff; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 279, ../../../../general/res/sass/_mixins.scss */
+ .s-btn.major:not(.disabled):hover, .major.s-menu-btn:not(.disabled):hover {
+ background: deepskyblue; }
+ /* line 281, ../../../../general/res/sass/_mixins.scss */
+ .s-btn.major:not(.disabled):hover > .icon, .major.s-menu-btn:not(.disabled):hover > .icon {
+ color: white; } }
+ /* line 66, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn:not(.major), .s-menu-btn:not(.major) {
+ background-color: #969696;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #fff;
+ display: inline-block;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -moz-transition: background, 0.25s;
+ -o-transition: background, 0.25s;
+ -webkit-transition: background, 0.25s;
+ transition: background, 0.25s;
+ text-shadow: none; }
+ /* line 274, ../../../../general/res/sass/_mixins.scss */
+ .s-btn:not(.major) .icon, .s-menu-btn:not(.major) .icon {
+ color: #eee; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 279, ../../../../general/res/sass/_mixins.scss */
+ .s-btn:not(.major):not(.disabled):hover, .s-menu-btn:not(.major):not(.disabled):hover {
+ background: #0099cc; }
+ /* line 281, ../../../../general/res/sass/_mixins.scss */
+ .s-btn:not(.major):not(.disabled):hover > .icon, .s-menu-btn:not(.major):not(.disabled):hover > .icon {
+ color: white; } }
+ /* line 75, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.pause-play .icon:before, .pause-play.s-menu-btn .icon:before {
+ content: "\0000F1"; }
+ /* line 78, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.pause-play.paused, .pause-play.paused.s-menu-btn {
+ background-color: #ff9900;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #fff;
+ display: inline-block;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -moz-transition: background, 0.25s;
+ -o-transition: background, 0.25s;
+ -webkit-transition: background, 0.25s;
+ transition: background, 0.25s;
+ text-shadow: none; }
+ /* line 274, ../../../../general/res/sass/_mixins.scss */
+ .s-btn.pause-play.paused .icon, .pause-play.paused.s-menu-btn .icon {
+ color: #fff; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 279, ../../../../general/res/sass/_mixins.scss */
+ .s-btn.pause-play.paused:not(.disabled):hover, .pause-play.paused.s-menu-btn:not(.disabled):hover {
+ background: #ffad33; }
+ /* line 281, ../../../../general/res/sass/_mixins.scss */
+ .s-btn.pause-play.paused:not(.disabled):hover > .icon, .pause-play.paused.s-menu-btn:not(.disabled):hover > .icon {
+ color: white; } }
+ /* line 80, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.pause-play.paused .icon, .pause-play.paused.s-menu-btn .icon {
+ -moz-animation-name: pulse;
+ -webkit-animation-name: pulse;
+ animation-name: pulse;
+ -moz-animation-duration: 1000ms;
+ -webkit-animation-duration: 1000ms;
+ animation-duration: 1000ms;
+ -moz-animation-direction: alternate;
+ -webkit-animation-direction: alternate;
+ animation-direction: alternate;
+ -moz-animation-iteration-count: infinite;
+ -webkit-animation-iteration-count: infinite;
+ animation-iteration-count: infinite;
+ -moz-animation-timing-function: ease-in-out;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out; }
+ /* line 82, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.pause-play.paused .icon :before, .pause-play.paused.s-menu-btn .icon :before {
+ content: "\0000EF"; }
+ /* line 90, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-btn.show-thumbs .icon:before, .show-thumbs.s-menu-btn .icon:before {
+ content: "\000039"; }
+
+/* line 96, ../../../../general/res/sass/controls/_buttons.scss */
+.s-icon-btn {
+ color: #eee; }
+ /* line 99, ../../../../general/res/sass/controls/_buttons.scss */
+ .s-icon-btn:hover {
+ color: white; }
+
+@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 104, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab {
+ -moz-transition-property: left;
+ -o-transition-property: left;
+ -webkit-transition-property: left;
+ transition-property: left;
+ -moz-transition-duration: 150ms;
+ -o-transition-duration: 150ms;
+ -webkit-transition-duration: 150ms;
+ transition-duration: 150ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ color: #d6d6d6;
+ cursor: pointer;
+ display: block;
+ position: absolute;
+ font-size: 12px;
+ line-height: 12px;
+ height: 12px;
+ width: 12px; }
+ /* line 127, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab:hover {
+ color: #a3a3a3; }
+ /* line 129, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab:hover:after {
+ color: #0099cc; }
+ /* line 134, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab:before, .mini-tab:after {
+ -moz-transition-property: color;
+ -o-transition-property: color;
+ -webkit-transition-property: color;
+ transition-property: color;
+ -moz-transition-duration: 200ms;
+ -o-transition-duration: 200ms;
+ -webkit-transition-duration: 200ms;
+ transition-duration: 200ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ display: block;
+ position: absolute; }
+ /* line 141, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab:before {
+ -moz-transition-property: left;
+ -o-transition-property: left;
+ -webkit-transition-property: left;
+ transition-property: left;
+ -moz-transition-duration: 150ms;
+ -o-transition-duration: 150ms;
+ -webkit-transition-duration: 150ms;
+ transition-duration: 150ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ font-size: 7px;
+ height: 100%;
+ width: 7px; }
+ /* line 148, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab:after {
+ width: 100%;
+ height: 100%; }
+ /* line 158, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-left:before {
+ content: '\3c';
+ left: -7px; }
+ /* line 162, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-left:hover:before {
+ left: -9px; }
+ /* line 165, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-left.collapsed:before {
+ content: '\3e';
+ left: 12px; }
+ /* line 169, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-left.collapsed:hover:before {
+ left: 14px; }
+ /* line 175, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-right:before {
+ content: '\3e';
+ left: 12px; }
+ /* line 179, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-right:hover:before {
+ left: 14px; }
+ /* line 182, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-right.collapsed:before {
+ content: '\3c';
+ left: -7px; }
+ /* line 186, ../../../../general/res/sass/controls/_buttons.scss */
+ .mini-tab.anchor-right.collapsed:hover:before {
+ left: -9px; } }
+
+/* line 196, ../../../../general/res/sass/controls/_buttons.scss */
+.l-btn-set {
+ font-size: 0; }
+ /* line 202, ../../../../general/res/sass/controls/_buttons.scss */
+ .l-btn-set .s-btn, .l-btn-set .s-menu-btn {
+ -moz-border-radius: 0;
+ -webkit-border-radius: 0;
+ border-radius: 0;
+ margin-left: 1px; }
+ /* line 208, ../../../../general/res/sass/controls/_buttons.scss */
+ .l-btn-set .first .s-btn, .l-btn-set .first .s-menu-btn {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ margin-left: 0; }
+ /* line 215, ../../../../general/res/sass/controls/_buttons.scss */
+ .l-btn-set .last .s-btn, .l-btn-set .last .s-menu-btn {
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px; }
+
+/* line 222, ../../../../general/res/sass/controls/_buttons.scss */
+.paused:not(.s-btn):not(.s-menu-btn) {
+ border-color: #ff9900 !important;
+ color: #ff9900 !important; }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/controls/_color-palette.scss */
+.l-color-palette {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 5px !important; }
+ /* line 31, ../../../../general/res/sass/controls/_color-palette.scss */
+ .l-color-palette .l-palette-row {
+ overflow: hidden;
+ *zoom: 1;
+ line-height: 16px;
+ width: 170px; }
+ /* line 36, ../../../../general/res/sass/controls/_color-palette.scss */
+ .l-color-palette .l-palette-row .l-palette-item {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ text-shadow: rgba(0, 0, 0, 0.8) 0 1px 2px;
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 0.25s;
+ -o-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+ transition-duration: 0.25s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ border: 1px solid transparent;
+ color: #fff;
+ display: block;
+ font-family: 'symbolsfont';
+ float: left;
+ height: 16px;
+ width: 16px;
+ line-height: 16px;
+ margin: 0 1px 1px 0;
+ text-align: center;
+ vertical-align: middle; }
+ /* line 53, ../../../../general/res/sass/controls/_color-palette.scss */
+ .l-color-palette .l-palette-row .s-palette-item:hover {
+ -moz-transition-property: none;
+ -o-transition-property: none;
+ -webkit-transition-property: none;
+ transition-property: none;
+ border-color: #fff !important; }
+ /* line 59, ../../../../general/res/sass/controls/_color-palette.scss */
+ .l-color-palette .l-palette-row .l-palette-item-label {
+ margin-left: 5px; }
+ /* line 63, ../../../../general/res/sass/controls/_color-palette.scss */
+ .l-color-palette .l-palette-row.l-option-row {
+ margin-bottom: 5px; }
+ /* line 65, ../../../../general/res/sass/controls/_color-palette.scss */
+ .l-color-palette .l-palette-row.l-option-row .s-palette-item {
+ border-color: #666; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/*.control {
+ // UNUSED?
+ &.view-control {
+ .icon {
+ display: inline-block;
+ margin: -1px 5px 1px 2px;
+ vertical-align: middle;
+ &.triangle-down {
+ margin: 2px 2px -2px 0px;
+ }
+ }
+
+ .label {
+ display: inline-block;
+ font-size: 11px;
+ vertical-align: middle;
+ }
+
+ .toggle {
+ @include border-radius(3px);
+ display: inline-block;
+ padding: 1px 6px 4px 4px;
+ &:hover {
+ background: rgba(white, 0.1);
+ }
+ }
+ }
+}*/
+/* line 51, ../../../../general/res/sass/controls/_controls.scss */
+.accordion {
+ margin-top: 5px; }
+ /* line 54, ../../../../general/res/sass/controls/_controls.scss */
+ .accordion:first-child {
+ margin-top: 0; }
+ /* line 57, ../../../../general/res/sass/controls/_controls.scss */
+ .accordion .accordion-head {
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background: rgba(102, 102, 102, 0.2);
+ cursor: pointer;
+ font-size: 0.75em;
+ line-height: 18px;
+ margin-bottom: 5px;
+ padding: 0 5px;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: auto;
+ left: 0;
+ width: auto;
+ height: 18px;
+ text-transform: uppercase; }
+ /* line 75, ../../../../general/res/sass/controls/_controls.scss */
+ .accordion .accordion-head:hover {
+ background: rgba(102, 102, 102, 0.4); }
+ /* line 78, ../../../../general/res/sass/controls/_controls.scss */
+ .accordion .accordion-head:after {
+ content: "^";
+ display: block;
+ font-family: 'symbolsfont';
+ font-size: 0.9em;
+ position: absolute;
+ right: 5px;
+ text-transform: none;
+ top: 0; }
+ /* line 88, ../../../../general/res/sass/controls/_controls.scss */
+ .accordion .accordion-head:not(.expanded):after {
+ content: "v"; }
+ /* line 92, ../../../../general/res/sass/controls/_controls.scss */
+ .accordion .accordion-contents {
+ position: absolute;
+ top: 23px;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ overflow-y: auto;
+ overflow-x: hidden; }
+
+/* line 103, ../../../../general/res/sass/controls/_controls.scss */
+.l-composite-control {
+ vertical-align: middle; }
+ /* line 106, ../../../../general/res/sass/controls/_controls.scss */
+ .l-composite-control.l-checkbox .composite-control-label {
+ line-height: 18px; }
+
+/* line 112, ../../../../general/res/sass/controls/_controls.scss */
+.l-control-group {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-left: 1px solid rgba(102, 102, 102, 0.2);
+ display: inline-block;
+ padding: 0 5px;
+ position: relative; }
+ /* line 120, ../../../../general/res/sass/controls/_controls.scss */
+ .l-control-group:first-child {
+ border-left: none;
+ padding-left: 0; }
+
+/* line 126, ../../../../general/res/sass/controls/_controls.scss */
+.l-local-controls {
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ z-index: 5; }
+
+/* line 136, ../../../../general/res/sass/controls/_controls.scss */
+.s-local-controls {
+ font-size: 0.7rem; }
+
+/* line 140, ../../../../general/res/sass/controls/_controls.scss */
+label.checkbox.custom {
+ cursor: pointer;
+ display: inline-block;
+ line-height: 14px;
+ margin-right: 20px;
+ padding-left: 19px;
+ position: relative;
+ vertical-align: middle; }
+ /* line 150, ../../../../general/res/sass/controls/_controls.scss */
+ label.checkbox.custom em {
+ color: #666;
+ display: inline-block;
+ height: 14px;
+ min-width: 14px; }
+ /* line 155, ../../../../general/res/sass/controls/_controls.scss */
+ label.checkbox.custom em:before {
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ background: #e3e3e3;
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 2px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 2px;
+ box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 2px;
+ box-sizing: border-box;
+ content: " ";
+ font-family: 'symbolsfont';
+ font-size: 0.8em;
+ display: inline-block;
+ margin-right: 5px;
+ height: 14px;
+ width: 14px;
+ left: 0;
+ top: 0;
+ position: absolute;
+ text-align: center; }
+ /* line 174, ../../../../general/res/sass/controls/_controls.scss */
+ label.checkbox.custom.no-text {
+ overflow: hidden;
+ margin-right: 0;
+ padding-left: 0;
+ height: 14px;
+ width: 14px; }
+ /* line 180, ../../../../general/res/sass/controls/_controls.scss */
+ label.checkbox.custom.no-text em {
+ overflow: hidden; }
+ /* line 184, ../../../../general/res/sass/controls/_controls.scss */
+ label.checkbox.custom input {
+ display: none; }
+ /* line 186, ../../../../general/res/sass/controls/_controls.scss */
+ label.checkbox.custom input:checked ~ em:before {
+ background: #0099cc;
+ color: #ccf2ff;
+ content: "2"; }
+
+/* line 194, ../../../../general/res/sass/controls/_controls.scss */
+.input-labeled {
+ margin-left: 5px; }
+ /* line 196, ../../../../general/res/sass/controls/_controls.scss */
+ .input-labeled label {
+ display: inline-block;
+ margin-right: 3px; }
+ /* line 200, ../../../../general/res/sass/controls/_controls.scss */
+ .input-labeled.inline {
+ display: inline-block; }
+ /* line 203, ../../../../general/res/sass/controls/_controls.scss */
+ .input-labeled:first-child {
+ margin-left: 0; }
+
+/* line 208, ../../../../general/res/sass/controls/_controls.scss */
+.s-menu-btn label.checkbox.custom {
+ margin-left: 5px; }
+
+/* line 213, ../../../../general/res/sass/controls/_controls.scss */
+.item .checkbox.checked label {
+ -moz-box-shadow: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ border-bottom: none; }
+
+/* line 219, ../../../../general/res/sass/controls/_controls.scss */
+.context-available {
+ color: #0099cc; }
+ /* line 222, ../../../../general/res/sass/controls/_controls.scss */
+ .context-available:hover {
+ color: deepskyblue; }
+
+/* line 227, ../../../../general/res/sass/controls/_controls.scss */
+.view-switcher {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 100ms;
+ -o-transition-duration: 100ms;
+ -webkit-transition-duration: 100ms;
+ transition-duration: 100ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0; }
+
+/******************************************************** OBJECT-HEADER */
+/* line 232, ../../../../general/res/sass/controls/_controls.scss */
+.object-header {
+ font-size: 1em; }
+ /* line 243, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header > .type-icon {
+ color: #b3b3b3;
+ font-size: 120%;
+ float: left;
+ margin-right: 5px; }
+ /* line 250, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header .l-elem-wrapper {
+ -webkit-justify-content: flex-start;
+ justify-content: flex-start; }
+ /* line 253, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header .l-elem-wrapper mct-representation {
+ min-width: 0.7em; }
+ /* line 261, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header .action {
+ margin-right: 5px; }
+ /* line 265, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header .title-label {
+ color: #666;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ flex: 0 1 auto;
+ -webkit-flex: 0 1 auto;
+ padding-right: 0.35em; }
+ /* line 275, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header .context-available {
+ font-size: 0.7em;
+ flex: 0 0 1;
+ -webkit-flex: 0 0 1; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 282, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header .context-available {
+ -moz-transition-property: opacity;
+ -o-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ transition-property: opacity;
+ -moz-transition-duration: 0.25s;
+ -o-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+ transition-duration: 0.25s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ opacity: 0; }
+ /* line 287, ../../../../general/res/sass/controls/_controls.scss */
+ .object-header:hover .context-available {
+ opacity: 1; } }
+
+/******************************************************** SLIDERS */
+/* line 298, ../../../../general/res/sass/controls/_controls.scss */
+.slider .slot {
+ width: auto;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0; }
+/* line 308, ../../../../general/res/sass/controls/_controls.scss */
+.slider .knob {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 0.25s;
+ -o-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+ transition-duration: 0.25s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ background-color: rgba(0, 153, 204, 0.5);
+ position: absolute;
+ height: 100%;
+ width: 10px;
+ top: 0;
+ auto: 0;
+ bottom: auto;
+ left: auto; }
+ /* line 311, ../../../../general/res/sass/controls/_controls.scss */
+ .slider .knob:hover {
+ background-color: rgba(0, 153, 204, 0.7); }
+/* line 322, ../../../../general/res/sass/controls/_controls.scss */
+.slider .knob-l {
+ -moz-border-radius-topleft: 10px;
+ -webkit-border-top-left-radius: 10px;
+ border-top-left-radius: 10px;
+ -moz-border-radius-bottomleft: 10px;
+ -webkit-border-bottom-left-radius: 10px;
+ border-bottom-left-radius: 10px;
+ cursor: w-resize; }
+/* line 326, ../../../../general/res/sass/controls/_controls.scss */
+.slider .knob-r {
+ -moz-border-radius-topright: 10px;
+ -webkit-border-top-right-radius: 10px;
+ border-top-right-radius: 10px;
+ -moz-border-radius-bottomright: 10px;
+ -webkit-border-bottom-right-radius: 10px;
+ border-bottom-right-radius: 10px;
+ cursor: e-resize; }
+/* line 330, ../../../../general/res/sass/controls/_controls.scss */
+.slider .range {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 0.25s;
+ -o-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+ transition-duration: 0.25s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ background-color: rgba(0, 153, 204, 0.2);
+ cursor: ew-resize;
+ position: absolute;
+ top: 0;
+ right: auto;
+ bottom: 0;
+ left: auto;
+ height: auto;
+ width: auto; }
+ /* line 341, ../../../../general/res/sass/controls/_controls.scss */
+ .slider .range:hover {
+ background-color: rgba(0, 153, 204, 0.4); }
+
+/******************************************************** DATETIME PICKER */
+/* line 348, ../../../../general/res/sass/controls/_controls.scss */
+.l-datetime-picker {
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ font-size: 0.8rem;
+ padding: 10px !important;
+ width: 230px; }
+ /* line 354, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-month-year-pager {
+ height: 15px;
+ margin-bottom: 5px;
+ position: relative; }
+ /* line 366, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-month-year-pager .pager {
+ width: 20px; }
+ /* line 369, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-month-year-pager .pager.prev {
+ right: auto; }
+ /* line 371, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-month-year-pager .pager.prev:before {
+ content: "\3c"; }
+ /* line 375, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-month-year-pager .pager.next {
+ left: auto;
+ text-align: right; }
+ /* line 378, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-month-year-pager .pager.next:before {
+ content: "\3e"; }
+ /* line 383, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-month-year-pager .val {
+ text-align: center;
+ left: 25px;
+ right: 25px; }
+ /* line 389, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-calendar,
+ .l-datetime-picker .l-time-selects {
+ border-top: 1px solid rgba(102, 102, 102, 0.2); }
+ /* line 393, ../../../../general/res/sass/controls/_controls.scss */
+ .l-datetime-picker .l-time-selects {
+ line-height: 22px; }
+
+/******************************************************** CALENDAR */
+/* line 401, ../../../../general/res/sass/controls/_controls.scss */
+.l-calendar ul.l-cal-row {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ margin-top: 1px; }
+ /* line 405, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row:first-child {
+ margin-top: 0; }
+ /* line 408, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row li {
+ -webkit-flex: 1 0;
+ flex: 1 0;
+ margin-left: 1px;
+ padding: 5px;
+ text-align: center; }
+ /* line 414, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row li:first-child {
+ margin-left: 0; }
+ /* line 418, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-header li {
+ color: #999999; }
+ /* line 421, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-body li {
+ -moz-transition-property: background-color;
+ -o-transition-property: background-color;
+ -webkit-transition-property: background-color;
+ transition-property: background-color;
+ -moz-transition-duration: 0.25s;
+ -o-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+ transition-duration: 0.25s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ cursor: pointer; }
+ /* line 424, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-body li.in-month {
+ background-color: #f2f2f2; }
+ /* line 427, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-body li .sub {
+ color: #999999;
+ font-size: 0.8em; }
+ /* line 431, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-body li.selected {
+ background: #1ac6ff;
+ color: #fcfcfc; }
+ /* line 434, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-body li.selected .sub {
+ color: inherit; }
+ /* line 438, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-body li:hover {
+ background-color: #0099cc;
+ color: #fff; }
+ /* line 441, ../../../../general/res/sass/controls/_controls.scss */
+ .l-calendar ul.l-cal-row.l-body li:hover .sub {
+ color: inherit; }
+
+/******************************************************** BROWSER ELEMENTS */
+@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 452, ../../../../general/res/sass/controls/_controls.scss */
+ ::-webkit-scrollbar {
+ -moz-border-radius: 2px;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.2) 0 1px 2px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.2) 0 1px 2px;
+ box-shadow: inset rgba(0, 0, 0, 0.2) 0 1px 2px;
+ background-color: rgba(0, 0, 0, 0.1);
+ height: 10px;
+ width: 10px; }
+
+ /* line 461, ../../../../general/res/sass/controls/_controls.scss */
+ ::-webkit-scrollbar-thumb {
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg5ODk4OSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzdkN2Q3ZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
+ background-size: 100%;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 20, color-stop(0%, #898989), color-stop(100%, #7d7d7d));
+ background-image: -moz-linear-gradient(#898989, #7d7d7d 20px);
+ background-image: -webkit-linear-gradient(#898989, #7d7d7d 20px);
+ background-image: linear-gradient(#898989, #7d7d7d 20px);
+ -moz-border-radius: 2px;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box; }
+ /* line 470, ../../../../general/res/sass/controls/_controls.scss */
+ ::-webkit-scrollbar-thumb:hover {
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYWNlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwOTljYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
+ background-size: 100%;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 20, color-stop(0%, #00ace6), color-stop(100%, #0099cc));
+ background-image: -moz-linear-gradient(#00ace6, #0099cc 20px);
+ background-image: -webkit-linear-gradient(#00ace6, #0099cc 20px);
+ background-image: linear-gradient(#00ace6, #0099cc 20px); }
+
+ /* line 475, ../../../../general/res/sass/controls/_controls.scss */
+ ::-webkit-scrollbar-corner {
+ background: rgba(0, 0, 0, 0.1); } }
+/*****************************************************************************
+ * 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 23, ../../../../general/res/sass/controls/_lists.scss */
+.checkbox-list label.checkbox.custom {
+ display: block;
+ margin-bottom: 5px; }
+/* line 27, ../../../../general/res/sass/controls/_lists.scss */
+.checkbox-list li {
+ margin-bottom: 5px; }
+
+/* line 35, ../../../../general/res/sass/controls/_lists.scss */
+.l-tree-item-flat-list .tree-item .label {
+ left: 5px !important; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/******************************************************** MENU BUTTONS */
+/* line 31, ../../../../general/res/sass/controls/_menus.scss */
+.s-menu-btn .icon {
+ font-size: 120%; }
+/* line 35, ../../../../general/res/sass/controls/_menus.scss */
+.s-menu-btn .title-label {
+ margin-left: 3px; }
+/* line 39, ../../../../general/res/sass/controls/_menus.scss */
+.s-menu-btn:after {
+ text-shadow: none;
+ content: '\76';
+ display: inline-block;
+ font-family: 'symbolsfont';
+ margin-left: 3px;
+ vertical-align: top;
+ color: rgba(255, 255, 255, 0.4); }
+/* line 46, ../../../../general/res/sass/controls/_menus.scss */
+.s-menu-btn.create-btn .title-label {
+ font-size: 1rem; }
+/* line 54, ../../../../general/res/sass/controls/_menus.scss */
+.s-menu-btn .menu {
+ left: 0;
+ text-align: left; }
+ /* line 57, ../../../../general/res/sass/controls/_menus.scss */
+ .s-menu-btn .menu .ui-symbol.icon, .s-menu-btn .menu .icon.s-icon-btn, .s-menu-btn .menu .icon.mini-tab, .s-menu-btn .menu .l-datetime-picker .l-month-year-pager .icon.pager, .l-datetime-picker .l-month-year-pager .s-menu-btn .menu .icon.pager {
+ width: 12px; }
+
+/******************************************************** MENUS THEMSELVES */
+/* line 64, ../../../../general/res/sass/controls/_menus.scss */
+.menu-element {
+ cursor: pointer;
+ position: relative; }
+
+/* line 69, ../../../../general/res/sass/controls/_menus.scss */
+.s-menu, .menu {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ background-color: white;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #4d4d4d;
+ display: inline-block;
+ -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 1px 5px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 1px 5px;
+ box-shadow: rgba(0, 0, 0, 0.5) 0 1px 5px;
+ text-shadow: none;
+ padding: 3px 0; }
+
+/* line 77, ../../../../general/res/sass/controls/_menus.scss */
+.menu {
+ display: block;
+ position: absolute;
+ z-index: 10; }
+ /* line 82, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul {
+ margin: 0;
+ padding: 0; }
+ /* line 331, ../../../../general/res/sass/_mixins.scss */
+ .menu ul li {
+ list-style-type: none;
+ margin: 0;
+ padding: 0; }
+ /* line 84, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-top: 1px solid white;
+ color: #666666;
+ line-height: 1.5rem;
+ padding: 3px 10px 3px 30px;
+ position: relative;
+ white-space: nowrap; }
+ /* line 92, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li:first-child {
+ border: none; }
+ /* line 95, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li:hover {
+ background: #e6e6e6;
+ color: #4d4d4d; }
+ /* line 98, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li:hover .icon {
+ color: #0099cc; }
+ /* line 102, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li .type-icon {
+ left: 10px; }
+
+/* line 109, ../../../../general/res/sass/controls/_menus.scss */
+.menu,
+.context-menu,
+.checkbox-menu,
+.super-menu {
+ pointer-events: auto; }
+ /* line 115, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li a,
+ .context-menu ul li a,
+ .checkbox-menu ul li a,
+ .super-menu ul li a {
+ color: #4d4d4d; }
+ /* line 118, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li .icon,
+ .context-menu ul li .icon,
+ .checkbox-menu ul li .icon,
+ .super-menu ul li .icon {
+ color: #0099cc; }
+ /* line 121, ../../../../general/res/sass/controls/_menus.scss */
+ .menu ul li .type-icon,
+ .context-menu ul li .type-icon,
+ .checkbox-menu ul li .type-icon,
+ .super-menu ul li .type-icon {
+ left: 5px; }
+
+/* line 133, ../../../../general/res/sass/controls/_menus.scss */
+.checkbox-menu ul li {
+ padding-left: 50px; }
+ /* line 135, ../../../../general/res/sass/controls/_menus.scss */
+ .checkbox-menu ul li .checkbox {
+ position: absolute;
+ left: 5px;
+ top: 0.53333rem; }
+ /* line 140, ../../../../general/res/sass/controls/_menus.scss */
+ .checkbox-menu ul li .checkbox em {
+ height: 0.7rem;
+ width: 0.7rem; }
+ /* line 143, ../../../../general/res/sass/controls/_menus.scss */
+ .checkbox-menu ul li .checkbox em:before {
+ font-size: 7px !important;
+ height: 0.7rem;
+ width: 0.7rem;
+ line-height: 0.7rem; }
+ /* line 151, ../../../../general/res/sass/controls/_menus.scss */
+ .checkbox-menu ul li .type-icon {
+ left: 25px; }
+
+/* line 157, ../../../../general/res/sass/controls/_menus.scss */
+.super-menu {
+ display: block;
+ width: 500px;
+ height: 480px; }
+ /* line 165, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .contents {
+ overflow: hidden;
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ bottom: 5px;
+ left: 5px;
+ width: auto;
+ height: auto; }
+ /* line 168, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .pane {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box; }
+ /* line 170, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .pane.left {
+ border-right: 1px solid #e6e6e6;
+ left: 0;
+ padding-right: 5px;
+ right: auto;
+ width: 50%;
+ overflow-x: hidden;
+ overflow-y: auto; }
+ /* line 180, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .pane.left ul li {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ padding-left: 30px;
+ border-top: none; }
+ /* line 187, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .pane.right {
+ left: auto;
+ right: 0;
+ padding: 25px;
+ width: 50%; }
+ /* line 197, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .menu-item-description .desc-area.icon {
+ color: #0099cc;
+ position: relative;
+ font-size: 8em;
+ left: 0;
+ height: 150px;
+ line-height: 150px;
+ margin-bottom: 25px;
+ text-align: center; }
+ /* line 208, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .menu-item-description .desc-area.title {
+ color: #666;
+ font-size: 1.2em;
+ margin-bottom: 0.5em; }
+ /* line 213, ../../../../general/res/sass/controls/_menus.scss */
+ .super-menu .menu-item-description .desc-area.description {
+ color: #666;
+ font-size: 0.8em;
+ line-height: 1.5em; }
+
+/* line 222, ../../../../general/res/sass/controls/_menus.scss */
+.context-menu, .checkbox-menu {
+ font-size: 0.80rem; }
+
+/* line 226, ../../../../general/res/sass/controls/_menus.scss */
+.context-menu-holder,
+.menu-holder {
+ position: absolute;
+ z-index: 70; }
+ /* line 230, ../../../../general/res/sass/controls/_menus.scss */
+ .context-menu-holder .context-menu-wrapper,
+ .menu-holder .context-menu-wrapper {
+ position: absolute;
+ height: 100%;
+ width: 100%; }
+ /* line 235, ../../../../general/res/sass/controls/_menus.scss */
+ .context-menu-holder.go-left .context-menu, .context-menu-holder.go-left .checkbox-menu, .context-menu-holder.go-left .menu,
+ .menu-holder.go-left .context-menu,
+ .menu-holder.go-left .checkbox-menu,
+ .menu-holder.go-left .menu {
+ right: 0; }
+ /* line 239, ../../../../general/res/sass/controls/_menus.scss */
+ .context-menu-holder.go-up .context-menu, .context-menu-holder.go-up .checkbox-menu, .context-menu-holder.go-up .menu,
+ .menu-holder.go-up .context-menu,
+ .menu-holder.go-up .checkbox-menu,
+ .menu-holder.go-up .menu {
+ bottom: 0; }
+
+/* line 245, ../../../../general/res/sass/controls/_menus.scss */
+.context-menu-holder {
+ pointer-events: none;
+ height: 200px;
+ width: 170px; }
+
+/* line 251, ../../../../general/res/sass/controls/_menus.scss */
+.btn-bar.right .menu,
+.menus-to-left .menu {
+ left: auto;
+ right: 0;
+ width: auto; }
+
+/* line 13, ../../../../general/res/sass/controls/_time-controller.scss */
+mct-include.l-time-controller {
+ overflow: hidden;
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ width: auto;
+ height: auto;
+ display: block;
+ top: auto;
+ height: 83px;
+ min-width: 500px;
+ font-size: 0.8rem; }
+ /* line 38, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-inputs-holder,
+ mct-include.l-time-controller .l-time-range-slider-holder,
+ mct-include.l-time-controller .l-time-range-ticks-holder {
+ overflow: visible;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ top: auto; }
+ /* line 47, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider,
+ mct-include.l-time-controller .l-time-range-ticks {
+ overflow: visible;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto;
+ left: 150px;
+ right: 150px; }
+ /* line 54, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-inputs-holder {
+ height: 33px;
+ bottom: 46px;
+ padding-top: 5px;
+ border-top: 1px solid rgba(102, 102, 102, 0.2); }
+ /* line 59, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-inputs-holder .type-icon {
+ font-size: 120%;
+ vertical-align: middle; }
+ /* line 63, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-input,
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-inputs-elem {
+ margin-right: 5px; }
+ /* line 66, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-input .lbl,
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-inputs-elem .lbl {
+ color: #999999; }
+ /* line 69, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-input .ui-symbol.icon, mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-input .icon.s-icon-btn, mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-input .icon.mini-tab, mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-input .l-datetime-picker .l-month-year-pager .icon.pager, .l-datetime-picker .l-month-year-pager mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-input .icon.pager,
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-inputs-elem .ui-symbol.icon,
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-inputs-elem .icon.s-icon-btn,
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-inputs-elem .icon.mini-tab,
+ mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-inputs-elem .l-datetime-picker .l-month-year-pager .icon.pager,
+ .l-datetime-picker .l-month-year-pager mct-include.l-time-controller .l-time-range-inputs-holder .l-time-range-inputs-elem .icon.pager {
+ font-size: 11px;
+ width: 11px; }
+ /* line 76, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder {
+ height: 20px;
+ bottom: 23px; }
+ /* line 79, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder .range-holder {
+ -moz-box-shadow: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ background: none;
+ border: none; }
+ /* line 84, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder .range-holder .range .toi-line {
+ -moz-transform: translateX(50%);
+ -ms-transform: translateX(50%);
+ -webkit-transform: translateX(50%);
+ transform: translateX(50%);
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0px;
+ left: auto;
+ width: 8px;
+ height: auto;
+ z-index: 2; }
+ /* line 94, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder .range-holder .range .toi-line:before, mct-include.l-time-controller .l-time-range-slider-holder .range-holder .range .toi-line:after {
+ background-color: #666;
+ content: "";
+ position: absolute; }
+ /* line 100, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder .range-holder .range .toi-line:before {
+ top: 0;
+ right: auto;
+ bottom: -10px;
+ left: 3px;
+ width: 2px; }
+ /* line 106, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder .range-holder .range .toi-line:after {
+ -moz-border-radius: 8px;
+ -webkit-border-radius: 8px;
+ border-radius: 8px;
+ -moz-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ -webkit-transform: translateY(-50%);
+ transform: translateY(-50%);
+ top: 50%;
+ right: 0;
+ bottom: auto;
+ left: 0;
+ width: auto;
+ height: 8px; }
+ /* line 3, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder .range-holder .range:hover .toi-line:before, mct-include.l-time-controller .l-time-range-slider-holder .range-holder .range:hover .toi-line:after {
+ background-color: #0052b5; }
+ /* line 122, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-slider-holder:not(:active) .knob,
+ mct-include.l-time-controller .l-time-range-slider-holder:not(:active) .range {
+ -moz-transition-property: left, right;
+ -o-transition-property: left, right;
+ -webkit-transition-property: left, right;
+ transition-property: left, right;
+ -moz-transition-duration: 500ms;
+ -o-transition-duration: 500ms;
+ -webkit-transition-duration: 500ms;
+ transition-duration: 500ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out; }
+ /* line 131, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-ticks-holder {
+ height: 20px; }
+ /* line 133, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-ticks-holder .l-time-range-ticks {
+ border-top: 1px solid rgba(0, 0, 0, 0.2); }
+ /* line 135, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-ticks-holder .l-time-range-ticks .tick {
+ background-color: rgba(0, 0, 0, 0.2);
+ border: none;
+ height: 5px;
+ width: 1px;
+ margin-left: -1px;
+ position: absolute; }
+ /* line 142, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-ticks-holder .l-time-range-ticks .tick:first-child {
+ margin-left: 0; }
+ /* line 145, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .l-time-range-ticks-holder .l-time-range-ticks .tick .l-time-range-tick-label {
+ transform: translateX(-50%);
+ -webkit-transform: translateX(-50%);
+ color: #999999;
+ display: inline-block;
+ font-size: 0.9em;
+ position: absolute;
+ top: 8px;
+ white-space: nowrap;
+ z-index: 2; }
+ /* line 159, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob {
+ z-index: 2; }
+ /* line 161, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob .range-value {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 0.25s;
+ -o-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+ transition-duration: 0.25s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ padding: 0 10px;
+ position: absolute;
+ height: 20px;
+ line-height: 20px;
+ white-space: nowrap; }
+ /* line 170, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob:hover .range-value {
+ color: rgba(0, 153, 204, 0.7); }
+ /* line 173, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob.knob-l {
+ margin-left: -10px; }
+ /* line 176, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob.knob-l .range-value {
+ text-align: right;
+ right: 10px; }
+ /* line 181, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob.knob-r {
+ margin-right: -10px; }
+ /* line 184, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob.knob-r .range-value {
+ left: 10px; }
+ /* line 3, ../../../../general/res/sass/controls/_time-controller.scss */
+ mct-include.l-time-controller .knob.knob-r:hover + .range-holder .range .toi-line:before, mct-include.l-time-controller .knob.knob-r:hover + .range-holder .range .toi-line:after {
+ background-color: #0052b5; }
+
+/* line 198, ../../../../general/res/sass/controls/_time-controller.scss */
+.s-time-range-val {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ background-color: #fff;
+ padding: 1px 1px 0 5px; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 26, ../../../../general/res/sass/mobile/controls/_menus.scss */
+ .menu-element .super-menu {
+ width: 250px;
+ height: 250px; }
+ /* line 32, ../../../../general/res/sass/mobile/controls/_menus.scss */
+ .menu-element .super-menu .pane.left {
+ border-right: none;
+ padding-right: 0;
+ width: 100%; }
+ /* line 37, ../../../../general/res/sass/mobile/controls/_menus.scss */
+ .menu-element .super-menu .pane.right {
+ display: none; } }
+/********************************* FORMS */
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/forms/_elems.scss */
+.section-header {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ background: rgba(0, 0, 0, 0.05);
+ color: #999999;
+ font-size: 0.8em;
+ padding: 5px 5px;
+ text-transform: uppercase; }
+
+/* line 33, ../../../../general/res/sass/forms/_elems.scss */
+.form {
+ color: gray; }
+ /* line 36, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-section {
+ position: relative;
+ margin-bottom: 20px; }
+ /* line 41, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ overflow: hidden;
+ *zoom: 1;
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
+ margin-top: 5px;
+ padding: 5px 0;
+ position: relative; }
+ /* line 49, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row.first {
+ border-top: none; }
+ /* line 53, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row > .label,
+ .form .form-row > .controls {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ overflow: hidden;
+ *zoom: 1;
+ font-size: 0.8rem;
+ line-height: 22px;
+ min-height: 22px; }
+ /* line 62, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row > .label {
+ float: left;
+ min-width: 120px;
+ position: relative;
+ white-space: nowrap;
+ width: 30%; }
+ /* line 72, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .value {
+ color: #666; }
+ /* line 76, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .controls {
+ float: left;
+ position: relative;
+ width: 69.9%; }
+ /* line 83, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .controls .l-composite-control.l-checkbox {
+ display: inline-block;
+ line-height: 14px;
+ margin-right: 5px; }
+ /* line 92, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .controls .l-med input[type="text"] {
+ width: 200px; }
+ /* line 96, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .controls .l-small input[type="text"] {
+ width: 50px; }
+ /* line 100, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .controls .l-numeric input[type="text"] {
+ text-align: right; }
+ /* line 104, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .controls .select {
+ margin-right: 5px; }
+ /* line 109, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .field-hints {
+ color: #333333; }
+ /* line 113, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .selector-list {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ background: #fff;
+ border: none;
+ color: #666;
+ outline: none;
+ padding: 0 3px;
+ position: relative;
+ height: 150px; }
+ /* line 298, ../../../../general/res/sass/_mixins.scss */
+ .form .form-row .selector-list.error {
+ background: rgba(255, 0, 0, 0.5); }
+ /* line 124, ../../../../general/res/sass/forms/_elems.scss */
+ .form .form-row .selector-list > .wrapper {
+ overflow: auto;
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ bottom: 5px;
+ left: 5px; }
+
+/* line 138, ../../../../general/res/sass/forms/_elems.scss */
+label.form-control.checkbox input {
+ margin-right: 5px;
+ vertical-align: top; }
+
+/* line 144, ../../../../general/res/sass/forms/_elems.scss */
+.hint,
+.s-hint {
+ font-size: 0.9em; }
+
+/* line 149, ../../../../general/res/sass/forms/_elems.scss */
+.l-result {
+ display: inline-block;
+ min-width: 32px;
+ min-height: 32px;
+ position: relative;
+ vertical-align: top; }
+ /* line 156, ../../../../general/res/sass/forms/_elems.scss */
+ .l-result div.s-hint {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ background: rgba(255, 34, 0, 0.8);
+ display: block;
+ color: #ffa799;
+ padding: 5px; }
+
+/* line 165, ../../../../general/res/sass/forms/_elems.scss */
+input[type="text"] {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ background: #fff;
+ border: none;
+ color: #666;
+ outline: none;
+ padding: 0 3px; }
+ /* line 298, ../../../../general/res/sass/_mixins.scss */
+ input[type="text"].error {
+ background: rgba(255, 0, 0, 0.5); }
+ /* line 172, ../../../../general/res/sass/forms/_elems.scss */
+ input[type="text"].numeric {
+ text-align: right; }
+
+/* line 177, ../../../../general/res/sass/forms/_elems.scss */
+textarea {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ background: #fff;
+ border: none;
+ color: #666;
+ outline: none;
+ padding: 5px;
+ position: absolute;
+ height: 100%;
+ width: 100%; }
+ /* line 298, ../../../../general/res/sass/_mixins.scss */
+ textarea.error {
+ background: rgba(255, 0, 0, 0.5); }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/forms/_selects.scss */
+.select {
+ background-color: #ddd;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #fff;
+ display: inline-block;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -moz-transition: background, 0.25s;
+ -o-transition: background, 0.25s;
+ -webkit-transition: background, 0.25s;
+ transition: background, 0.25s;
+ text-shadow: none;
+ padding: 0 5px;
+ overflow: hidden;
+ position: relative;
+ line-height: 22px; }
+ /* line 274, ../../../../general/res/sass/_mixins.scss */
+ .select .icon {
+ color: #eee; }
+ /* line 31, ../../../../general/res/sass/forms/_selects.scss */
+ .select select {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ background: none;
+ color: #666;
+ cursor: pointer;
+ border: none !important;
+ padding: 4px 25px 2px 0px;
+ width: 120%; }
+ /* line 40, ../../../../general/res/sass/forms/_selects.scss */
+ .select select option {
+ margin: 5px 0; }
+ /* line 44, ../../../../general/res/sass/forms/_selects.scss */
+ .select:after {
+ text-shadow: none;
+ content: '\76';
+ display: inline-block;
+ font-family: 'symbolsfont';
+ margin-left: 3px;
+ vertical-align: top;
+ pointer-events: none;
+ color: rgba(102, 102, 102, 0.4);
+ position: absolute;
+ right: 5px;
+ top: 0; }
+
+/*****************************************************************************
+ * 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 23, ../../../../general/res/sass/forms/_channel-selector.scss */
+.channel-selector .line {
+ margin-bottom: 5px;
+ min-height: 22px; }
+/* line 27, ../../../../general/res/sass/forms/_channel-selector.scss */
+.channel-selector .treeview {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ background: #fcfcfc;
+ border: none;
+ color: #666;
+ outline: none;
+ padding: 0 3px;
+ background: white;
+ border-bottom: 1px solid white;
+ min-height: 300px;
+ max-height: 400px;
+ overflow: auto;
+ padding: 5px; }
+ /* line 298, ../../../../general/res/sass/_mixins.scss */
+ .channel-selector .treeview.error {
+ background: rgba(255, 0, 0, 0.5); }
+/* line 36, ../../../../general/res/sass/forms/_channel-selector.scss */
+.channel-selector .btns-add-remove {
+ margin-top: 150px; }
+ /* line 39, ../../../../general/res/sass/forms/_channel-selector.scss */
+ .channel-selector .btns-add-remove .s-btn, .channel-selector .btns-add-remove .s-menu-btn {
+ display: block;
+ margin-bottom: 5px;
+ text-align: center; }
+
+/*****************************************************************************
+ * 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 29, ../../../../general/res/sass/forms/_datetime.scss */
+.complex.datetime {
+ /*
+ .field-hints,
+ .fields {
+ }
+
+
+ .field-hints {
+
+ }
+ */ }
+ /* line 30, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime span {
+ display: inline-block;
+ margin-right: 5px; }
+ /* line 46, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime .fields {
+ margin-top: 3px 0;
+ padding: 3px 0; }
+ /* line 51, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime .date {
+ width: 85px; }
+ /* line 24, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime .date input[type="text"] {
+ width: 80px; }
+ /* line 55, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime .time.md {
+ width: 65px; }
+ /* line 24, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime .time.md input[type="text"] {
+ width: 60px; }
+ /* line 59, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime .time.sm {
+ width: 45px; }
+ /* line 24, ../../../../general/res/sass/forms/_datetime.scss */
+ .complex.datetime .time.sm input[type="text"] {
+ width: 40px; }
+
+/*****************************************************************************
+ * 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 23, ../../../../general/res/sass/forms/_validation.scss */
+.validates > .label {
+ padding-right: 10px; }
+ /* line 25, ../../../../general/res/sass/forms/_validation.scss */
+ .validates > .label::after {
+ float: right;
+ font-family: symbolsfont;
+ font-size: 0.7em; }
+/* line 33, ../../../../general/res/sass/forms/_validation.scss */
+.validates.invalid > .label::after, .validates.invalid.req > .label::after {
+ color: #ff2200;
+ content: "x"; }
+/* line 40, ../../../../general/res/sass/forms/_validation.scss */
+.validates.valid > .label::after, .validates.valid.req > .label::after {
+ color: #33cc33;
+ content: "2"; }
+/* line 46, ../../../../general/res/sass/forms/_validation.scss */
+.validates.req > .label::after {
+ color: #0099cc;
+ content: "*"; }
+
+/* line 52, ../../../../general/res/sass/forms/_validation.scss */
+.req {
+ font-size: 0.7em; }
+
+/* line 55, ../../../../general/res/sass/forms/_validation.scss */
+span.req {
+ color: #0099cc; }
+
+/*****************************************************************************
+ * 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 24, ../../../../general/res/sass/forms/_filter.scss */
+.filter input.filter,
+.filter input.t-filter-input,
+.t-filter input.filter,
+.t-filter input.t-filter-input {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ -webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
+ background: #fcfcfc;
+ border: none;
+ color: #666;
+ outline: none;
+ padding: 0 3px;
+ background: white;
+ border-bottom: 1px solid white; }
+ /* line 298, ../../../../general/res/sass/_mixins.scss */
+ .filter input.filter.error,
+ .filter input.t-filter-input.error,
+ .t-filter input.filter.error,
+ .t-filter input.t-filter-input.error {
+ background: rgba(255, 0, 0, 0.5); }
+/* line 28, ../../../../general/res/sass/forms/_filter.scss */
+.filter input.t-filter-input,
+.t-filter input.t-filter-input {
+ height: 22px;
+ width: 200px; }
+ /* line 38, ../../../../general/res/sass/forms/_filter.scss */
+ .filter input.t-filter-input:not(.ng-dirty) + .t-a-clear,
+ .t-filter input.t-filter-input:not(.ng-dirty) + .t-a-clear {
+ display: none; }
+/* line 42, ../../../../general/res/sass/forms/_filter.scss */
+.filter .icon.ui-symbol, .filter .icon.s-icon-btn, .filter .icon.mini-tab, .filter .l-datetime-picker .l-month-year-pager .icon.pager, .l-datetime-picker .l-month-year-pager .filter .icon.pager,
+.t-filter .icon.ui-symbol,
+.t-filter .icon.s-icon-btn,
+.t-filter .icon.mini-tab,
+.t-filter .l-datetime-picker .l-month-year-pager .icon.pager,
+.l-datetime-picker .l-month-year-pager .t-filter .icon.pager {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ display: inline-block;
+ font-size: 1.3em;
+ height: 22px;
+ line-height: 22px;
+ padding: 0px 5px;
+ vertical-align: middle; }
+ /* line 50, ../../../../general/res/sass/forms/_filter.scss */
+ .filter .icon.ui-symbol:hover, .filter .icon.s-icon-btn:hover, .filter .icon.mini-tab:hover, .filter .l-datetime-picker .l-month-year-pager .icon.pager:hover, .l-datetime-picker .l-month-year-pager .filter .icon.pager:hover,
+ .t-filter .icon.ui-symbol:hover,
+ .t-filter .icon.s-icon-btn:hover,
+ .t-filter .icon.mini-tab:hover,
+ .t-filter .l-datetime-picker .l-month-year-pager .icon.pager:hover,
+ .l-datetime-picker .l-month-year-pager .t-filter .icon.pager:hover {
+ background: rgba(255, 255, 255, 0.1); }
+/* line 54, ../../../../general/res/sass/forms/_filter.scss */
+.filter .s-a-clear.ui-symbol, .filter .s-a-clear.s-icon-btn, .filter .s-a-clear.mini-tab, .filter .l-datetime-picker .l-month-year-pager .s-a-clear.pager, .l-datetime-picker .l-month-year-pager .filter .s-a-clear.pager,
+.t-filter .s-a-clear.ui-symbol,
+.t-filter .s-a-clear.s-icon-btn,
+.t-filter .s-a-clear.mini-tab,
+.t-filter .l-datetime-picker .l-month-year-pager .s-a-clear.pager,
+.l-datetime-picker .l-month-year-pager .t-filter .s-a-clear.pager {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
+ opacity: 0.2;
+ background: #fff;
+ color: #333;
+ display: block;
+ position: absolute;
+ height: 13px;
+ width: 13px;
+ line-height: 13px;
+ margin-top: -6.5px;
+ overflow: hidden;
+ padding-top: 1px;
+ right: 4.5px;
+ top: 50%;
+ text-align: center;
+ z-index: 5; }
+ /* line 74, ../../../../general/res/sass/forms/_filter.scss */
+ .filter .s-a-clear.ui-symbol:hover, .filter .s-a-clear.s-icon-btn:hover, .filter .s-a-clear.mini-tab:hover, .filter .l-datetime-picker .l-month-year-pager .s-a-clear.pager:hover, .l-datetime-picker .l-month-year-pager .filter .s-a-clear.pager:hover,
+ .t-filter .s-a-clear.ui-symbol:hover,
+ .t-filter .s-a-clear.s-icon-btn:hover,
+ .t-filter .s-a-clear.mini-tab:hover,
+ .t-filter .l-datetime-picker .l-month-year-pager .s-a-clear.pager:hover,
+ .l-datetime-picker .l-month-year-pager .t-filter .s-a-clear.pager:hover {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
+ opacity: 0.6;
+ background-color: #0099cc; }
+
+/* line 82, ../../../../general/res/sass/forms/_filter.scss */
+.l-filter {
+ display: inline-block;
+ position: relative; }
+
+/* line 89, ../../../../general/res/sass/forms/_filter.scss */
+.top-bar input.filter {
+ font-size: .9em;
+ height: 24px;
+ line-height: 24px;
+ margin-right: 5px;
+ padding-left: 10px;
+ padding-right: 10px;
+ vertical-align: top; }
+/* line 100, ../../../../general/res/sass/forms/_filter.scss */
+.top-bar .icon-filter {
+ font-size: 1.4em; }
+
+/********************************* USER ENVIRON */
+/*****************************************************************************
+ * 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 32, ../../../../general/res/sass/user-environ/_layout.scss */
+.holder-all {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0; }
+
+/* line 40, ../../../../general/res/sass/user-environ/_layout.scss */
+.browse-area,
+.edit-area,
+.editor {
+ position: absolute; }
+
+/* line 46, ../../../../general/res/sass/user-environ/_layout.scss */
+.editor {
+ -moz-border-radius: 6px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px; }
+
+/* line 50, ../../../../general/res/sass/user-environ/_layout.scss */
+.contents {
+ box-sizing: border-box;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0; }
+ /* line 58, ../../../../general/res/sass/user-environ/_layout.scss */
+ .contents.nomargin {
+ right: 0px;
+ bottom: 0px;
+ left: 0px; }
+
+/* line 67, ../../../../general/res/sass/user-environ/_layout.scss */
+.bar .icon.major {
+ margin-right: 5px; }
+/* line 70, ../../../../general/res/sass/user-environ/_layout.scss */
+.bar.abs, .l-datetime-picker .l-month-year-pager .bar.pager,
+.l-datetime-picker .l-month-year-pager .bar.val, .s-menu-btn span.bar.l-click-area {
+ text-wrap: none;
+ white-space: nowrap; }
+ /* line 73, ../../../../general/res/sass/user-environ/_layout.scss */
+ .bar.abs.left, .l-datetime-picker .l-month-year-pager .bar.left.pager,
+ .l-datetime-picker .l-month-year-pager .bar.left.val, .s-menu-btn span.bar.left.l-click-area,
+ .bar.abs .left,
+ .l-datetime-picker .l-month-year-pager .bar.pager .left,
+ .l-datetime-picker .l-month-year-pager .bar.val .left,
+ .s-menu-btn span.bar.l-click-area .left {
+ width: 45%;
+ right: auto; }
+ /* line 78, ../../../../general/res/sass/user-environ/_layout.scss */
+ .bar.abs.right, .l-datetime-picker .l-month-year-pager .bar.right.pager,
+ .l-datetime-picker .l-month-year-pager .bar.right.val, .s-menu-btn span.bar.right.l-click-area,
+ .bar.abs .right,
+ .l-datetime-picker .l-month-year-pager .bar.pager .right,
+ .l-datetime-picker .l-month-year-pager .bar.val .right,
+ .s-menu-btn span.bar.l-click-area .right {
+ width: 45%;
+ left: auto;
+ text-align: right; }
+ /* line 83, ../../../../general/res/sass/user-environ/_layout.scss */
+ .bar.abs.right .icon.major, .l-datetime-picker .l-month-year-pager .bar.right.pager .icon.major,
+ .l-datetime-picker .l-month-year-pager .bar.right.val .icon.major, .s-menu-btn span.bar.right.l-click-area .icon.major,
+ .bar.abs .right .icon.major,
+ .l-datetime-picker .l-month-year-pager .bar.pager .right .icon.major,
+ .l-datetime-picker .l-month-year-pager .bar.val .right .icon.major,
+ .s-menu-btn span.bar.l-click-area .right .icon.major {
+ margin-left: 15px; }
+ /* line 89, ../../../../general/res/sass/user-environ/_layout.scss */
+ .bar.abs .l-flex .left, .l-datetime-picker .l-month-year-pager .bar.pager .l-flex .left,
+ .l-datetime-picker .l-month-year-pager .bar.val .l-flex .left, .s-menu-btn span.bar.l-click-area .l-flex .left,
+ .bar.abs .l-flex .right,
+ .l-datetime-picker .l-month-year-pager .bar.pager .l-flex .right,
+ .l-datetime-picker .l-month-year-pager .bar.val .l-flex .right,
+ .s-menu-btn span.bar.l-click-area .l-flex .right, .bar.abs.l-flex .left, .l-datetime-picker .l-month-year-pager .bar.l-flex.pager .left,
+ .l-datetime-picker .l-month-year-pager .bar.l-flex.val .left, .s-menu-btn span.bar.l-flex.l-click-area .left,
+ .bar.abs.l-flex .right,
+ .l-datetime-picker .l-month-year-pager .bar.l-flex.pager .right,
+ .l-datetime-picker .l-month-year-pager .bar.l-flex.val .right,
+ .s-menu-btn span.bar.l-flex.l-click-area .right {
+ width: auto; }
+
+/* line 98, ../../../../general/res/sass/user-environ/_layout.scss */
+.user-environ .browse-area,
+.user-environ .edit-area,
+.user-environ .editor {
+ top: 39px;
+ right: 10px;
+ bottom: 35px;
+ left: 10px; }
+/* line 109, ../../../../general/res/sass/user-environ/_layout.scss */
+.user-environ .browse-area > .contents,
+.user-environ .edit-area > .contents {
+ left: 0;
+ right: 0; }
+/* line 115, ../../../../general/res/sass/user-environ/_layout.scss */
+.user-environ .edit-area {
+ top: 45px; }
+ /* line 118, ../../../../general/res/sass/user-environ/_layout.scss */
+ .user-environ .edit-area .tool-bar {
+ bottom: auto;
+ height: 30px;
+ line-height: 25px; }
+ /* line 123, ../../../../general/res/sass/user-environ/_layout.scss */
+ .user-environ .edit-area .work-area {
+ top: 40px; }
+/* line 128, ../../../../general/res/sass/user-environ/_layout.scss */
+.user-environ .ue-bottom-bar {
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto;
+ top: auto;
+ height: 25px; }
+ /* line 133, ../../../../general/res/sass/user-environ/_layout.scss */
+ .user-environ .ue-bottom-bar .status-holder {
+ z-index: 1; }
+ /* line 137, ../../../../general/res/sass/user-environ/_layout.scss */
+ .user-environ .ue-bottom-bar .app-logo {
+ left: auto;
+ width: 105px;
+ z-index: 2; }
+
+/* line 145, ../../../../general/res/sass/user-environ/_layout.scss */
+.cols {
+ overflow: hidden;
+ *zoom: 1; }
+ /* line 147, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols .col {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ overflow: hidden;
+ *zoom: 1;
+ float: left;
+ margin-left: 1.5%;
+ padding-left: 5px;
+ position: relative; }
+ /* line 155, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols .col:first-child {
+ margin-left: 0;
+ padding-left: 0; }
+ /* line 162, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-2 .col-1 {
+ min-width: 250px;
+ width: 48.5%; }
+ /* line 168, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-2-ff .col-100px {
+ width: 100px; }
+ /* line 175, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-6 .col-1 {
+ min-width: 83.33333px;
+ width: 15.16667%; }
+ /* line 181, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-16 .col-1 {
+ min-width: 31.25px;
+ width: 4.75%; }
+ /* line 184, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-16 .col-2 {
+ min-width: 62.5px;
+ width: 11%; }
+ /* line 187, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-16 .col-7 {
+ min-width: 218.75px;
+ width: 42.25%; }
+ /* line 193, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-32 .col-2 {
+ min-width: 31.25px;
+ width: 4.75%; }
+ /* line 196, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols.cols-32 .col-15 {
+ min-width: 234.375px;
+ width: 45.375%; }
+ /* line 200, ../../../../general/res/sass/user-environ/_layout.scss */
+ .cols .l-row {
+ overflow: hidden;
+ *zoom: 1;
+ padding: 5px 0; }
+
+/* line 209, ../../../../general/res/sass/user-environ/_layout.scss */
+.browse-mode .split-layout .split-pane-component.pane.treeview.left {
+ min-width: 150px;
+ max-width: 800px;
+ width: 25%; }
+/* line 214, ../../../../general/res/sass/user-environ/_layout.scss */
+.browse-mode .split-layout .split-pane-component.pane.t-inspect.right {
+ min-width: 100px;
+ max-width: 800px;
+ width: 20%; }
+
+/* line 225, ../../../../general/res/sass/user-environ/_layout.scss */
+.edit-mode .split-layout .split-pane-component.pane.right {
+ width: 15%; }
+ /* line 227, ../../../../general/res/sass/user-environ/_layout.scss */
+ .edit-mode .split-layout .split-pane-component.pane.right .pane.bottom {
+ min-height: 50px;
+ height: 30%; }
+
+/* line 235, ../../../../general/res/sass/user-environ/_layout.scss */
+.pane {
+ position: absolute; }
+ /* line 238, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .pane-header {
+ text-transform: uppercase;
+ height: 24px;
+ line-height: 24px;
+ margin-bottom: 5px; }
+ /* line 246, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane.treeview.left .create-btn-holder {
+ bottom: auto;
+ top: 0;
+ height: 24px; }
+ /* line 250, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane.treeview.left .create-btn-holder .wrapper.menu-element {
+ position: absolute;
+ bottom: 5px; }
+ /* line 255, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane.treeview.left .search-holder {
+ top: 34px; }
+ /* line 258, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane.treeview.left .tree-holder {
+ overflow: auto;
+ top: 64px; }
+ /* line 264, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane {
+ z-index: 2; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 264, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane {
+ top: 5px; }
+ /* line 270, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane.toggle-tree.anchor-left {
+ left: -30px; }
+ /* line 273, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane.toggle-tree.anchor-left:after {
+ content: 'F'; }
+ /* line 276, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane.toggle-tree.anchor-left.collapsed {
+ left: -25px; }
+ /* line 280, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane.toggle-inspect.anchor-right {
+ right: -25px; }
+ /* line 283, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane.toggle-inspect.anchor-right:after {
+ content: '\e608'; }
+ /* line 286, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane .mini-tab.toggle-pane.toggle-inspect.anchor-right.collapsed {
+ right: -20px; } }
+ /* line 295, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane.items .object-browse-bar .left.abs, .pane.items .object-browse-bar .l-datetime-picker .l-month-year-pager .left.pager, .l-datetime-picker .l-month-year-pager .pane.items .object-browse-bar .left.pager,
+ .pane.items .object-browse-bar .l-datetime-picker .l-month-year-pager .left.val,
+ .l-datetime-picker .l-month-year-pager .pane.items .object-browse-bar .left.val, .pane.items .object-browse-bar .s-menu-btn span.left.l-click-area, .s-menu-btn .pane.items .object-browse-bar span.left.l-click-area,
+ .pane.items .object-browse-bar .right.abs,
+ .pane.items .object-browse-bar .l-datetime-picker .l-month-year-pager .right.pager,
+ .l-datetime-picker .l-month-year-pager .pane.items .object-browse-bar .right.pager,
+ .pane.items .object-browse-bar .l-datetime-picker .l-month-year-pager .right.val,
+ .l-datetime-picker .l-month-year-pager .pane.items .object-browse-bar .right.val,
+ .pane.items .object-browse-bar .s-menu-btn span.right.l-click-area,
+ .s-menu-btn .pane.items .object-browse-bar span.right.l-click-area {
+ top: auto; }
+
+/* line 306, ../../../../general/res/sass/user-environ/_layout.scss */
+.split-layout.horizontal > .pane {
+ margin-top: 5px; }
+ /* line 309, ../../../../general/res/sass/user-environ/_layout.scss */
+ .split-layout.horizontal > .pane:first-child {
+ margin-top: 0; }
+/* line 316, ../../../../general/res/sass/user-environ/_layout.scss */
+.split-layout.vertical > .pane {
+ margin-left: 5px; }
+ /* line 319, ../../../../general/res/sass/user-environ/_layout.scss */
+ .split-layout.vertical > .pane > .holder {
+ left: 0;
+ right: 0; }
+ /* line 323, ../../../../general/res/sass/user-environ/_layout.scss */
+ .split-layout.vertical > .pane:first-child {
+ margin-left: 0; }
+ /* line 325, ../../../../general/res/sass/user-environ/_layout.scss */
+ .split-layout.vertical > .pane:first-child .holder {
+ right: 3px; }
+
+/* line 333, ../../../../general/res/sass/user-environ/_layout.scss */
+.object-holder {
+ overflow: hidden;
+ top: 34px; }
+ /* line 336, ../../../../general/res/sass/user-environ/_layout.scss */
+ .object-holder > ng-include {
+ overflow: auto;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto; }
+ /* line 340, ../../../../general/res/sass/user-environ/_layout.scss */
+ .object-holder.l-controls-visible.l-time-controller-visible {
+ bottom: 88px; }
+
+/* line 346, ../../../../general/res/sass/user-environ/_layout.scss */
+.object-browse-bar .s-btn, .object-browse-bar .s-menu-btn,
+.top-bar .buttons-main .s-btn,
+.top-bar .buttons-main .s-menu-btn,
+.top-bar .s-menu-btn,
+.tool-bar .s-btn,
+.tool-bar .s-menu-btn,
+.tool-bar .s-menu-btn {
+ height: 25px;
+ line-height: 25px;
+ vertical-align: top; }
+
+/* line 359, ../../../../general/res/sass/user-environ/_layout.scss */
+.object-browse-bar .view-switcher,
+.top-bar .view-switcher {
+ margin-right: 20px; }
+
+/* line 364, ../../../../general/res/sass/user-environ/_layout.scss */
+.object-browse-bar {
+ overflow: visible;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ height: 24px;
+ line-height: 24px;
+ white-space: nowrap; }
+ /* line 372, ../../../../general/res/sass/user-environ/_layout.scss */
+ .object-browse-bar .left {
+ padding-right: 20px; }
+ /* line 374, ../../../../general/res/sass/user-environ/_layout.scss */
+ .object-browse-bar .left .l-back {
+ display: inline-block;
+ float: left;
+ margin-right: 10px; }
+
+/* line 382, ../../../../general/res/sass/user-environ/_layout.scss */
+.l-flex {
+ display: flex;
+ display: -webkit-flex;
+ flex-flow: row nowrap;
+ -webkit-flex-flow: row nowrap; }
+ /* line 385, ../../../../general/res/sass/user-environ/_layout.scss */
+ .l-flex .left {
+ flex: 1 1 0;
+ -webkit-flex: 1 1 0;
+ padding-right: 10px; }
+
+/* line 397, ../../../../general/res/sass/user-environ/_layout.scss */
+.pane-tree-hidden .pane.left.treeview,
+.pane-tree-hidden .splitter-treeview {
+ opacity: 0; }
+/* line 402, ../../../../general/res/sass/user-environ/_layout.scss */
+.pane-tree-hidden .pane.right.items {
+ left: 15px !important; }
+
+/* line 409, ../../../../general/res/sass/user-environ/_layout.scss */
+.pane-tree-showing .pane.left.treeview,
+.pane-tree-showing .splitter-treeview {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 250ms;
+ -o-transition-duration: 250ms;
+ -webkit-transition-duration: 250ms;
+ transition-duration: 250ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 250ms;
+ -o-transition-delay: 250ms;
+ -webkit-transition-delay: 250ms;
+ transition-delay: 250ms;
+ opacity: 1; }
+
+/* line 418, ../../../../general/res/sass/user-environ/_layout.scss */
+.pane-inspect-showing .l-object-and-inspector .pane.right,
+.pane-inspect-showing .l-object-and-inspector .splitter-inspect {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 250ms;
+ -o-transition-duration: 250ms;
+ -webkit-transition-duration: 250ms;
+ transition-duration: 250ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 250ms;
+ -o-transition-delay: 250ms;
+ -webkit-transition-delay: 250ms;
+ transition-delay: 250ms;
+ opacity: 1; }
+
+/* line 427, ../../../../general/res/sass/user-environ/_layout.scss */
+.pane-inspect-hidden .l-object-and-inspector .pane.right,
+.pane-inspect-hidden .l-object-and-inspector .splitter-inspect {
+ opacity: 0; }
+/* line 431, ../../../../general/res/sass/user-environ/_layout.scss */
+.pane-inspect-hidden .l-object-and-inspector .pane.left {
+ right: 15px !important; }
+
+@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 438, ../../../../general/res/sass/user-environ/_layout.scss */
+ .pane:not(.resizing) {
+ -moz-transition-property: width, left, right;
+ -o-transition-property: width, left, right;
+ -webkit-transition-property: width, left, right;
+ transition-property: width, left, right;
+ -moz-transition-duration: 250ms;
+ -o-transition-duration: 250ms;
+ -webkit-transition-duration: 250ms;
+ transition-duration: 250ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0; } }
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 26, ../../../../general/res/sass/mobile/_layout.scss */
+ .browse-wrapper,
+ .pane {
+ top: 0 !important;
+ right: 0;
+ bottom: 0;
+ left: 0; }
+
+ /* line 31, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane.left.treeview {
+ background-color: #f7f7f7; }
+
+ /* line 35, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane.right.items {
+ -moz-transition-duration: 0.35s;
+ -o-transition-duration: 0.35s;
+ -webkit-transition-duration: 0.35s;
+ transition-duration: 0.35s;
+ transition-timing-function: ease;
+ backface-visibility: hidden;
+ margin-left: 0 !important; }
+ /* line 39, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane.right.items #content-area {
+ -moz-transition-duration: 0.35s;
+ -o-transition-duration: 0.35s;
+ -webkit-transition-duration: 0.35s;
+ transition-duration: 0.35s;
+ transition-timing-function: ease;
+ backface-visibility: hidden;
+ opacity: 1; }
+
+ /* line 45, ../../../../general/res/sass/mobile/_layout.scss */
+ .user-environ .browse-area,
+ .user-environ .edit-area,
+ .user-environ .editor {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 25px; }
+
+ /* line 51, ../../../../general/res/sass/mobile/_layout.scss */
+ .holder.l-mobile {
+ top: 10px !important;
+ right: 10px !important;
+ bottom: 10px !important;
+ left: 10px !important; }
+
+ /* line 65, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane-tree-hidden .pane.left.treeview {
+ right: 100% !important;
+ width: auto !important;
+ overflow-y: hidden;
+ overflow-x: hidden; }
+
+ /* line 82, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane-tree-showing .pane.left.treeview {
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSI5OCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
+ background-size: 100%;
+ background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 98%, rgba(0, 0, 0, 0.3) 100%);
+ background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 98%, rgba(0, 0, 0, 0.3) 100%);
+ background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 98%, rgba(0, 0, 0, 0.3) 100%);
+ right: auto !important;
+ width: 40% !important; }
+ /* line 88, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane-tree-showing .pane.right.items {
+ left: 40% !important; }
+
+ /* line 93, ../../../../general/res/sass/mobile/_layout.scss */
+ .toggle-tree {
+ color: #0099cc !important;
+ font-size: 110%;
+ position: absolute;
+ top: 12px;
+ left: 10px; }
+ /* line 99, ../../../../general/res/sass/mobile/_layout.scss */
+ .toggle-tree:after {
+ content: 'm' !important; }
+
+ /* line 104, ../../../../general/res/sass/mobile/_layout.scss */
+ .object-browse-bar {
+ left: 30px !important; }
+ /* line 107, ../../../../general/res/sass/mobile/_layout.scss */
+ .object-browse-bar .context-available {
+ opacity: 1 !important; }
+ /* line 110, ../../../../general/res/sass/mobile/_layout.scss */
+ .object-browse-bar .view-switcher {
+ margin-right: 0 !important; }
+ /* line 112, ../../../../general/res/sass/mobile/_layout.scss */
+ .object-browse-bar .view-switcher .title-label {
+ display: none; }
+
+ /* line 119, ../../../../general/res/sass/mobile/_layout.scss */
+ .tree-holder {
+ overflow-x: hidden !important; }
+
+ /* line 123, ../../../../general/res/sass/mobile/_layout.scss */
+ .mobile-disable-select {
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none; }
+
+ /* line 128, ../../../../general/res/sass/mobile/_layout.scss */
+ .mobile-hide,
+ .mobile-hide-important {
+ display: none !important; }
+
+ /* line 133, ../../../../general/res/sass/mobile/_layout.scss */
+ .mobile-back-hide {
+ pointer-events: none;
+ -moz-transition-property: opacity;
+ -o-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ transition-property: opacity;
+ -moz-transition-duration: 0.4s;
+ -o-transition-duration: 0.4s;
+ -webkit-transition-duration: 0.4s;
+ transition-duration: 0.4s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ opacity: 0; }
+
+ /* line 138, ../../../../general/res/sass/mobile/_layout.scss */
+ .mobile-back-unhide {
+ pointer-events: all;
+ -moz-transition-property: opacity;
+ -o-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ transition-property: opacity;
+ -moz-transition-duration: 0.4s;
+ -o-transition-duration: 0.4s;
+ -webkit-transition-duration: 0.4s;
+ transition-duration: 0.4s;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ opacity: 1; } }
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px) {
+ /* line 147, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane-tree-showing .pane.left.treeview {
+ width: 90% !important; }
+ /* line 150, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane-tree-showing .pane.right.items {
+ left: 0 !important;
+ -moz-transform: translateX(90%);
+ -ms-transform: translateX(90%);
+ -webkit-transform: translateX(90%);
+ transform: translateX(90%); }
+ /* line 153, ../../../../general/res/sass/mobile/_layout.scss */
+ .pane-tree-showing .pane.right.items #content-area {
+ opacity: 0; } }
+@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 161, ../../../../general/res/sass/mobile/_layout.scss */
+ .desktop-hide {
+ display: none; } }
+/*****************************************************************************
+ * 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 26, ../../../../general/res/sass/edit/_editor.scss */
+.edit-main .edit-corner,
+.edit-main .edit-handle {
+ position: absolute;
+ z-index: 2; }
+/* line 32, ../../../../general/res/sass/edit/_editor.scss */
+.edit-main .edit-corner {
+ width: 15px;
+ height: 15px; }
+ /* line 35, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-corner:hover {
+ z-index: 11; }
+ /* line 38, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-corner.edit-resize-nw {
+ -moz-border-radius-bottomright: 5px;
+ -webkit-border-bottom-right-radius: 5px;
+ border-bottom-right-radius: 5px;
+ cursor: nw-resize;
+ top: 0;
+ left: 0; }
+ /* line 43, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-corner.edit-resize-ne {
+ -moz-border-radius-bottomleft: 5px;
+ -webkit-border-bottom-left-radius: 5px;
+ border-bottom-left-radius: 5px;
+ cursor: ne-resize;
+ top: 0;
+ right: 0; }
+ /* line 48, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-corner.edit-resize-se {
+ -moz-border-radius-topleft: 5px;
+ -webkit-border-top-left-radius: 5px;
+ border-top-left-radius: 5px;
+ cursor: se-resize;
+ bottom: 0;
+ right: 0; }
+ /* line 53, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-corner.edit-resize-sw {
+ -moz-border-radius-topright: 5px;
+ -webkit-border-top-right-radius: 5px;
+ border-top-right-radius: 5px;
+ cursor: sw-resize;
+ bottom: 0;
+ left: 0; }
+/* line 61, ../../../../general/res/sass/edit/_editor.scss */
+.edit-main .edit-handle {
+ top: 15px;
+ right: 15px;
+ bottom: 15px;
+ left: 15px; }
+ /* line 63, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-handle.edit-move {
+ cursor: move;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 1; }
+ /* line 73, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-handle.edit-resize-n {
+ top: 0px;
+ bottom: auto;
+ height: 15px;
+ cursor: n-resize; }
+ /* line 78, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-handle.edit-resize-e {
+ right: 0px;
+ left: auto;
+ width: 15px;
+ cursor: e-resize; }
+ /* line 83, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-handle.edit-resize-s {
+ bottom: 0px;
+ top: auto;
+ height: 15px;
+ cursor: s-resize; }
+ /* line 88, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .edit-handle.edit-resize-w {
+ left: 0px;
+ right: auto;
+ width: 15px;
+ cursor: w-resize; }
+/* line 97, ../../../../general/res/sass/edit/_editor.scss */
+.edit-main .frame.child-frame.panel:hover {
+ -moz-box-shadow: rgba(0, 0, 0, 0.7) 0 3px 10px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.7) 0 3px 10px;
+ box-shadow: rgba(0, 0, 0, 0.7) 0 3px 10px;
+ border-color: #0099cc; }
+ /* line 101, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .frame.child-frame.panel:hover .view-switcher {
+ opacity: 1; }
+ /* line 104, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .frame.child-frame.panel:hover .edit-corner {
+ background-color: rgba(0, 153, 204, 0.8); }
+ /* line 106, ../../../../general/res/sass/edit/_editor.scss */
+ .edit-main .frame.child-frame.panel:hover .edit-corner:hover {
+ background-color: #0099cc; }
+
+/*****************************************************************************
+ * 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 23, ../../../../general/res/sass/search/_search.scss */
+.abs.search-holder, .l-datetime-picker .l-month-year-pager .search-holder.pager,
+.l-datetime-picker .l-month-year-pager .search-holder.val, .s-menu-btn span.search-holder.l-click-area {
+ height: 25px;
+ bottom: 0;
+ top: 23px;
+ z-index: 5; }
+ /* line 27, ../../../../general/res/sass/search/_search.scss */
+ .abs.search-holder.active, .l-datetime-picker .l-month-year-pager .search-holder.active.pager,
+ .l-datetime-picker .l-month-year-pager .search-holder.active.val, .s-menu-btn span.search-holder.active.l-click-area {
+ height: auto;
+ bottom: 0; }
+
+/* line 38, ../../../../general/res/sass/search/_search.scss */
+.search {
+ display: flex;
+ display: -webkit-flex;
+ flex-direction: column;
+ -webkit-flex-direction: column;
+ height: 100%; }
+ /* line 48, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar {
+ font-size: 0.8em;
+ max-width: 250px;
+ position: relative;
+ width: 100%; }
+ /* line 60, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-input {
+ height: 25px;
+ line-height: 25px;
+ padding-top: 0;
+ padding-bottom: 0; }
+ /* line 67, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-icon,
+ .search .search-bar .clear-icon,
+ .search .search-bar .menu-icon {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #a6a6a6;
+ height: 17px;
+ width: 17px;
+ line-height: 17px;
+ position: absolute;
+ text-align: center;
+ top: 4px; }
+ /* line 80, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .clear-icon,
+ .search .search-bar .menu-icon {
+ cursor: pointer;
+ -moz-transition: color, 0.25s;
+ -o-transition: color, 0.25s;
+ -webkit-transition: color, 0.25s;
+ transition: color, 0.25s; }
+ /* line 87, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-input {
+ position: relative;
+ width: 100%;
+ padding-left: 22px !important;
+ padding-right: 44px !important; }
+ /* line 94, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-input input {
+ width: 100%; }
+ /* line 99, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-icon {
+ left: 3px;
+ transition: visibility .15s, opacity .15s, color .2s;
+ pointer-events: none; }
+ /* line 119, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-input:hover + div.search-icon {
+ color: #8c8c8c; }
+ /* line 123, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .clear-icon {
+ right: 22px;
+ visibility: hidden;
+ opacity: 0;
+ transition: visibility .15s, opacity .15s, color .2s; }
+ /* line 132, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .clear-icon.content {
+ visibility: visible;
+ opacity: 1; }
+ /* line 137, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .clear-icon:hover {
+ color: #8c8c8c; }
+ /* line 142, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .menu-icon {
+ font-size: 0.8em;
+ padding-right: 4px;
+ right: 4px;
+ text-align: right; }
+ /* line 148, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .menu-icon:hover {
+ color: #8c8c8c; }
+ /* line 153, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-menu-holder {
+ float: right;
+ left: -20px;
+ z-index: 1;
+ transition: visibility .05s, opacity .05s; }
+ /* line 163, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .search-menu-holder.off {
+ visibility: hidden;
+ opacity: 0; }
+ /* line 170, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar .menu-icon:hover + div.search-menu-holder {
+ visibility: visible; }
+ /* line 173, ../../../../general/res/sass/search/_search.scss */
+ .search .search-bar div.search-menu-holder:hover {
+ visibility: visible; }
+ /* line 178, ../../../../general/res/sass/search/_search.scss */
+ .search .active-filter-display {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ line-height: 130%;
+ padding: 5px 0;
+ padding-left: 1.4625em;
+ font-size: 0.65em;
+ margin-top: 3px; }
+ /* line 193, ../../../../general/res/sass/search/_search.scss */
+ .search .active-filter-display .clear-filters-icon {
+ color: #a6a6a6;
+ opacity: 1;
+ font-size: 0.8em;
+ position: absolute;
+ left: 1px;
+ cursor: pointer; }
+ /* line 205, ../../../../general/res/sass/search/_search.scss */
+ .search .active-filter-display.off {
+ visibility: hidden;
+ opacity: 0;
+ height: 0;
+ margin: 0;
+ padding: 0;
+ border: 0; }
+ /* line 215, ../../../../general/res/sass/search/_search.scss */
+ .search .search-scroll {
+ order: 3;
+ margin-top: 4px;
+ overflow-y: auto;
+ top: auto;
+ height: auto;
+ max-height: 100%;
+ position: relative; }
+ /* line 226, ../../../../general/res/sass/search/_search.scss */
+ .search .search-scroll .load-icon {
+ position: relative; }
+ /* line 230, ../../../../general/res/sass/search/_search.scss */
+ .search .search-scroll .load-more-button {
+ margin-top: 5px 0;
+ font-size: 0.8em;
+ position: relative;
+ left: 50%;
+ margin-left: -45px;
+ text-align: center;
+ width: 90px;
+ white-space: nowrap; }
+
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 5, ../../../../general/res/sass/mobile/search/_search.scss */
+ .search .search-bar .menu-icon {
+ display: none; }
+ /* line 8, ../../../../general/res/sass/mobile/search/_search.scss */
+ .search .search-bar .clear-icon {
+ right: 5px; } }
+/*****************************************************************************
+ * 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 23, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay .blocker {
+ background: rgba(0, 0, 0, 0.7);
+ z-index: 100; }
+/* line 27, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay .clk-icon.close {
+ font-size: 0.8rem;
+ position: absolute;
+ top: 10px;
+ right: 10px;
+ bottom: auto;
+ left: auto;
+ z-index: 100; }
+/* line 33, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay > .holder {
+ background-color: #fcfcfc;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #666;
+ display: inline-block;
+ -moz-border-radius: 12px;
+ -webkit-border-radius: 12px;
+ border-radius: 12px;
+ color: #666;
+ top: 15%;
+ right: 15%;
+ bottom: 15%;
+ left: 15%;
+ z-index: 101; }
+ /* line 40, ../../../../general/res/sass/overlay/_overlay.scss */
+ .overlay > .holder > .contents {
+ top: 25px;
+ right: 25px;
+ bottom: 25px;
+ left: 25px; }
+/* line 45, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay .title {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ font-size: 1.2em;
+ margin-bottom: 5px; }
+/* line 51, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay .top-bar {
+ height: 60px; }
+/* line 55, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay .editor {
+ top: 70px;
+ bottom: 40px;
+ left: 0;
+ right: 0; }
+/* line 61, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay .bottom-bar {
+ top: auto;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ overflow: visible;
+ height: 30px;
+ text-align: right; }
+ /* line 67, ../../../../general/res/sass/overlay/_overlay.scss */
+ .overlay .bottom-bar .s-btn, .overlay .bottom-bar .s-menu-btn {
+ font-size: 95%;
+ height: 30px;
+ line-height: 30px;
+ margin-left: 5px;
+ padding: 0 15px; }
+ /* line 69, ../../../../general/res/sass/overlay/_overlay.scss */
+ .overlay .bottom-bar .s-btn:not(.major), .overlay .bottom-bar .s-menu-btn:not(.major) {
+ background-color: #969696;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #fff;
+ display: inline-block;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -moz-transition: background, 0.25s;
+ -o-transition: background, 0.25s;
+ -webkit-transition: background, 0.25s;
+ transition: background, 0.25s;
+ text-shadow: none; }
+ /* line 274, ../../../../general/res/sass/_mixins.scss */
+ .overlay .bottom-bar .s-btn:not(.major) .icon, .overlay .bottom-bar .s-menu-btn:not(.major) .icon {
+ color: #fff; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 279, ../../../../general/res/sass/_mixins.scss */
+ .overlay .bottom-bar .s-btn:not(.major):not(.disabled):hover, .overlay .bottom-bar .s-menu-btn:not(.major):not(.disabled):hover {
+ background: #7d7d7d; }
+ /* line 281, ../../../../general/res/sass/_mixins.scss */
+ .overlay .bottom-bar .s-btn:not(.major):not(.disabled):hover > .icon, .overlay .bottom-bar .s-menu-btn:not(.major):not(.disabled):hover > .icon {
+ color: white; } }
+/* line 85, ../../../../general/res/sass/overlay/_overlay.scss */
+.overlay .contents.l-dialog {
+ top: 5px;
+ right: 5px;
+ bottom: 5px;
+ left: 5px;
+ overflow: auto; }
+ /* line 93, ../../../../general/res/sass/overlay/_overlay.scss */
+ .overlay .contents.l-dialog .field.l-med input[type='text'] {
+ width: 100%; }
+
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 4, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay .clk-icon.close {
+ top: 10px;
+ right: 10px; }
+ /* line 8, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay > .holder {
+ -moz-border-radius: 0;
+ -webkit-border-radius: 0;
+ border-radius: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0; }
+ /* line 14, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay > .holder > .contents {
+ top: 10px;
+ right: 10px;
+ bottom: 10px;
+ left: 10px; }
+ /* line 21, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay > .holder > .contents .top-bar > .title {
+ margin-right: 1.2em; }
+ /* line 26, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay > .holder > .contents .form.editor {
+ border: none; }
+ /* line 29, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay > .holder > .contents .form.editor .contents {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0; } }
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 43, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay > .holder > .contents .form.editor .contents .form-row > .label,
+ .overlay > .holder > .contents .form.editor .contents .form-row > .controls {
+ display: block;
+ float: none;
+ width: 100%; }
+ /* line 51, ../../../../general/res/sass/mobile/overlay/_overlay.scss */
+ .overlay > .holder > .contents .form.editor .contents .form-row > .label:after {
+ float: none; } }
+/*****************************************************************************
+ * 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 23, ../../../../general/res/sass/tree/_tree.scss */
+ul.tree {
+ margin: 0;
+ padding: 0;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none; }
+ /* line 331, ../../../../general/res/sass/_mixins.scss */
+ ul.tree li {
+ list-style-type: none;
+ margin: 0;
+ padding: 0; }
+ /* line 26, ../../../../general/res/sass/tree/_tree.scss */
+ ul.tree li {
+ display: block;
+ position: relative; }
+ /* line 30, ../../../../general/res/sass/tree/_tree.scss */
+ ul.tree ul.tree {
+ margin-left: 15px; }
+
+/* line 35, ../../../../general/res/sass/tree/_tree.scss */
+.tree-item,
+.search-result-item {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-transition: background-color 0.25s;
+ -o-transition: background-color 0.25s;
+ -webkit-transition: background-color 0.25s;
+ transition: background-color 0.25s;
+ display: block;
+ font-size: 0.8rem;
+ height: 1.5rem;
+ line-height: 1.5rem;
+ margin-bottom: 3px;
+ position: relative; }
+ /* line 48, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .view-control,
+ .search-result-item .view-control {
+ color: #666;
+ display: inline-block;
+ margin-left: 5px;
+ font-size: 0.75em;
+ width: 10px; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 57, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .view-control:hover,
+ .search-result-item .view-control:hover {
+ color: #0099cc !important; } }
+ /* line 63, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .label,
+ .search-result-item .label {
+ display: block;
+ overflow: hidden;
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ width: auto;
+ height: auto;
+ line-height: 1.5rem; }
+ /* line 71, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .label .type-icon,
+ .search-result-item .label .type-icon {
+ font-size: 16px;
+ color: #0099cc;
+ left: 5px;
+ position: absolute;
+ top: 4px;
+ bottom: auto;
+ height: 16px;
+ line-height: 100%;
+ right: auto;
+ width: 16px; }
+ /* line 84, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .label .type-icon .icon.l-icon-link, .tree-item .label .type-icon .icon.l-icon-alert,
+ .search-result-item .label .type-icon .icon.l-icon-link,
+ .search-result-item .label .type-icon .icon.l-icon-alert {
+ position: absolute;
+ z-index: 2; }
+ /* line 89, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .label .type-icon .icon.l-icon-alert,
+ .search-result-item .label .type-icon .icon.l-icon-alert {
+ color: #ff3c00;
+ font-size: 8px;
+ line-height: 8px;
+ height: 8px;
+ width: 8px;
+ top: 1px;
+ right: -2px; }
+ /* line 95, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .label .type-icon .icon.l-icon-link,
+ .search-result-item .label .type-icon .icon.l-icon-link {
+ color: #49dedb;
+ font-size: 8px;
+ line-height: 8px;
+ height: 8px;
+ width: 8px;
+ left: -3px;
+ bottom: 0px; }
+ /* line 103, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .label .title-label,
+ .search-result-item .label .title-label {
+ overflow: hidden;
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ left: 0px;
+ width: auto;
+ height: auto;
+ display: block;
+ left: 30px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap; }
+ /* line 113, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item.selected,
+ .search-result-item.selected {
+ background: #1ac6ff;
+ color: #fcfcfc; }
+ /* line 116, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item.selected .view-control,
+ .search-result-item.selected .view-control {
+ color: #fcfcfc; }
+ /* line 119, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item.selected .label .type-icon,
+ .search-result-item.selected .label .type-icon {
+ color: #fcfcfc; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 127, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item:not(.selected):hover,
+ .search-result-item:not(.selected):hover {
+ background: rgba(102, 102, 102, 0.1);
+ color: #333333; }
+ /* line 130, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item:not(.selected):hover .icon,
+ .search-result-item:not(.selected):hover .icon {
+ color: #0099cc; } }
+ /* line 137, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item:not(.loading),
+ .search-result-item:not(.loading) {
+ cursor: pointer; }
+ /* line 141, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .context-trigger,
+ .search-result-item .context-trigger {
+ top: -1px;
+ position: absolute;
+ right: 3px; }
+ /* line 146, ../../../../general/res/sass/tree/_tree.scss */
+ .tree-item .context-trigger .invoke-menu,
+ .search-result-item .context-trigger .invoke-menu {
+ font-size: 0.75em;
+ height: 0.9rem;
+ line-height: 0.9rem; }
+
+/* line 155, ../../../../general/res/sass/tree/_tree.scss */
+.tree-item .label {
+ left: 15px; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 27, ../../../../general/res/sass/mobile/_tree.scss */
+ ul.tree ul.tree {
+ margin-left: 20px; }
+
+ /* line 31, ../../../../general/res/sass/mobile/_tree.scss */
+ .tree-item,
+ .search-result-item {
+ height: 35px;
+ line-height: 35px;
+ margin-bottom: 0px; }
+ /* line 36, ../../../../general/res/sass/mobile/_tree.scss */
+ .tree-item .view-control,
+ .search-result-item .view-control {
+ position: absolute;
+ font-size: 1.1em;
+ right: 0px;
+ width: 30px;
+ text-align: center; }
+ /* line 45, ../../../../general/res/sass/mobile/_tree.scss */
+ .tree-item .label,
+ .search-result-item .label {
+ left: 0;
+ right: 35px;
+ line-height: 35px; }
+ /* line 50, ../../../../general/res/sass/mobile/_tree.scss */
+ .tree-item .label .type-icon,
+ .search-result-item .label .type-icon {
+ top: 9px;
+ bottom: auto;
+ height: 16px; } }
+/*****************************************************************************
+ * 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 25, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame.child-frame.panel {
+ background: #fcfcfc;
+ border: 1px solid rgba(102, 102, 102, 0.2); }
+ /* line 28, ../../../../general/res/sass/user-environ/_frame.scss */
+ .frame.child-frame.panel:hover {
+ border-color: rgba(128, 128, 128, 0.2); }
+/* line 32, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame > .object-header.abs, .l-datetime-picker .l-month-year-pager .frame > .object-header.pager,
+.l-datetime-picker .l-month-year-pager .frame > .object-header.val, .s-menu-btn .frame > span.object-header.l-click-area {
+ font-size: 0.75em;
+ height: 16px;
+ line-height: 16px; }
+/* line 38, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame > .object-holder.abs, .l-datetime-picker .l-month-year-pager .frame > .object-holder.pager,
+.l-datetime-picker .l-month-year-pager .frame > .object-holder.val, .s-menu-btn .frame > span.object-holder.l-click-area {
+ top: 21px; }
+/* line 41, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame .contents {
+ top: 5px;
+ right: 5px;
+ bottom: 5px;
+ left: 5px; }
+/* line 49, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame.frame-template .s-btn, .frame.frame-template .s-menu-btn,
+.frame.frame-template .s-menu-btn {
+ height: 16px;
+ line-height: 16px;
+ padding: 0 5px; }
+ /* line 54, ../../../../general/res/sass/user-environ/_frame.scss */
+ .frame.frame-template .s-btn > span, .frame.frame-template .s-menu-btn > span,
+ .frame.frame-template .s-menu-btn > span {
+ font-size: 0.65rem; }
+/* line 59, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame.frame-template .s-menu-btn:after {
+ font-size: 8px; }
+/* line 63, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame.frame-template .view-switcher {
+ z-index: 10; }
+@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 69, ../../../../general/res/sass/user-environ/_frame.scss */
+ .frame.frame-template .view-switcher {
+ opacity: 0; }
+ /* line 72, ../../../../general/res/sass/user-environ/_frame.scss */
+ .frame.frame-template:hover .view-switcher {
+ opacity: 1; } }
+/* line 80, ../../../../general/res/sass/user-environ/_frame.scss */
+.frame .view-switcher .title-label {
+ display: none; }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/user-environ/_top-bar.scss */
+.top-bar {
+ /* .title {
+ color: #fff;
+ }*/ }
+ /* line 23, ../../../../general/res/sass/user-environ/_top-bar.scss */
+ .top-bar.browse, .top-bar.edit {
+ border-bottom: 1px solid rgba(102, 102, 102, 0.2);
+ top: 10px;
+ right: 10px;
+ bottom: auto;
+ left: 10px;
+ height: 30px;
+ line-height: 24px; }
+ /* line 35, ../../../../general/res/sass/user-environ/_top-bar.scss */
+ .top-bar .buttons-main {
+ font-size: 0.8em;
+ left: auto;
+ text-align: right; }
+
+/* line 48, ../../../../general/res/sass/user-environ/_top-bar.scss */
+.edit-mode .top-bar .buttons-main {
+ white-space: nowrap; }
+ /* line 52, ../../../../general/res/sass/user-environ/_top-bar.scss */
+ .edit-mode .top-bar .buttons-main.abs, .edit-mode .top-bar .l-datetime-picker .l-month-year-pager .buttons-main.pager, .l-datetime-picker .l-month-year-pager .edit-mode .top-bar .buttons-main.pager,
+ .edit-mode .top-bar .l-datetime-picker .l-month-year-pager .buttons-main.val,
+ .l-datetime-picker .l-month-year-pager .edit-mode .top-bar .buttons-main.val, .edit-mode .top-bar .s-menu-btn span.buttons-main.l-click-area, .s-menu-btn .edit-mode .top-bar span.buttons-main.l-click-area {
+ bottom: auto;
+ left: auto; }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+.ue-bottom-bar {
+ background: #000;
+ color: white;
+ font-size: .7rem; }
+ /* line 28, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+ .ue-bottom-bar .status-holder {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ overflow: hidden;
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ bottom: 5px;
+ left: 5px;
+ width: auto;
+ height: auto;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ line-height: 15px;
+ right: 120px;
+ text-transform: uppercase; }
+ /* line 39, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+ .ue-bottom-bar .app-logo {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ overflow: hidden;
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ bottom: 5px;
+ left: 5px;
+ width: auto;
+ height: auto;
+ left: auto;
+ cursor: pointer; }
+ /* line 48, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+ .ue-bottom-bar .app-logo.logo-openmctweb {
+ background: url("../../../../general/res/images/logo-openmctweb.svg") no-repeat center center; }
+
+/* line 54, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+.status.block {
+ display: inline;
+ margin-right: 10px; }
+ /* line 58, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+ .status.block .status-indicator {
+ display: inline-block;
+ margin-right: 3px;
+ color: #0099cc; }
+ /* line 65, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+ .status.block .status-indicator.ok {
+ color: #009900; }
+ /* line 68, ../../../../general/res/sass/user-environ/_bottom-bar.scss */
+ .status.block .status-indicator.caution {
+ color: #ffaa00; }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/user-environ/_tool-bar.scss */
+.tool-bar {
+ border-bottom: 1px solid rgba(102, 102, 102, 0.2); }
+ /* line 24, ../../../../general/res/sass/user-environ/_tool-bar.scss */
+ .tool-bar .l-control-group {
+ height: 25px; }
+ /* line 27, ../../../../general/res/sass/user-environ/_tool-bar.scss */
+ .tool-bar input[type="text"] {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ font-size: .9em;
+ height: 25px;
+ margin-bottom: 1px;
+ position: relative; }
+ /* line 33, ../../../../general/res/sass/user-environ/_tool-bar.scss */
+ .tool-bar input[type="text"].sm {
+ width: 25px; }
+ /* line 37, ../../../../general/res/sass/user-environ/_tool-bar.scss */
+ .tool-bar .input-labeled label {
+ font-size: 11.25px; }
+
+/********************************* VIEWS */
+/*****************************************************************************
+* 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 23, ../../../../general/res/sass/_fixed-position.scss */
+.t-fixed-position.l-fixed-position {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto; }
+ /* line 33, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position.l-fixed-position .l-grid-holder {
+ position: relative;
+ height: 100%;
+ width: 100%; }
+ /* line 37, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position.l-fixed-position .l-grid-holder .l-grid {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+ pointer-events: none;
+ z-index: 0; }
+/* line 48, ../../../../general/res/sass/_fixed-position.scss */
+.t-fixed-position .l-fixed-position-item {
+ position: absolute;
+ border: 1px solid transparent; }
+ /* line 52, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item.s-selected {
+ -moz-box-shadow: rgba(0, 0, 0, 0.7) 0 3px 10px;
+ -webkit-box-shadow: rgba(0, 0, 0, 0.7) 0 3px 10px;
+ box-shadow: rgba(0, 0, 0, 0.7) 0 3px 10px;
+ border-color: #0099cc;
+ cursor: move; }
+ /* line 57, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item.s-not-selected {
+ opacity: 0.8; }
+ /* line 61, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-box,
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-image,
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-text {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ height: 100%;
+ width: 100%; }
+ /* line 72, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-image {
+ background-size: cover;
+ background-repeat: no-repeat;
+ background-position: center; }
+ /* line 78, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-text {
+ border: 1px solid transparent;
+ font-size: 0.8rem;
+ line-height: 100%; }
+ /* line 84, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-text.l-static-text {
+ padding: 1px; }
+ /* line 89, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-text.l-telemetry .l-elem {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ display: block;
+ padding: 2px; }
+ /* line 96, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-text.l-telemetry .l-elem.l-title {
+ float: none;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: auto; }
+ /* line 105, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-text.l-telemetry .l-elem.l-value {
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ float: right;
+ margin-left: 5px;
+ padding-left: 5px;
+ padding-right: 5px;
+ text-align: right; }
+ /* line 116, ../../../../general/res/sass/_fixed-position.scss */
+ .t-fixed-position .l-fixed-position-item .l-fixed-position-text.l-telemetry .l-elem.l-value.telem-only {
+ margin-left: 0;
+ width: 100%; }
+/* line 126, ../../../../general/res/sass/_fixed-position.scss */
+.t-fixed-position .l-fixed-position-item-handle {
+ background: rgba(0, 153, 204, 0.5);
+ cursor: crosshair;
+ border: 1px solid #0099cc;
+ position: absolute; }
+
+/* line 140, ../../../../general/res/sass/_fixed-position.scss */
+.edit-mode .t-fixed-position.l-fixed-position .l-grid-holder .l-grid.l-grid-x {
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIxcHgiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iMXB4IiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
+ background-size: 100%;
+ background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%);
+ background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%);
+ background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%);
+ background-repeat: repeat-x; }
+/* line 144, ../../../../general/res/sass/_fixed-position.scss */
+.edit-mode .t-fixed-position.l-fixed-position .l-grid-holder .l-grid.l-grid-y {
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxcHgiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iMXB4IiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
+ background-size: 100%;
+ background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%);
+ background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%);
+ background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%);
+ background-repeat: repeat-y; }
+/* line 152, ../../../../general/res/sass/_fixed-position.scss */
+.edit-mode .t-fixed-position .l-fixed-position-item:not(.s-selected) {
+ border: 1px dotted rgba(0, 153, 204, 0.75); }
+ /* line 154, ../../../../general/res/sass/_fixed-position.scss */
+ .edit-mode .t-fixed-position .l-fixed-position-item:not(.s-selected):hover {
+ border: 1px dotted #0099cc; }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/lists/_tabular.scss */
+.w1, .w2 {
+ position: relative;
+ height: 100%; }
+
+/* line 27, ../../../../general/res/sass/lists/_tabular.scss */
+.tabular,
+table {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-spacing: 0;
+ border-collapse: collapse;
+ display: table;
+ font-size: 0.75rem;
+ position: relative;
+ width: 100%; }
+ /* line 36, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular thead, .tabular .thead,
+ .tabular tbody tr, .tabular .tbody .tr,
+ table thead,
+ table .thead,
+ table tbody tr,
+ table .tbody .tr {
+ width: 100%; }
+ /* line 40, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular thead, .tabular .thead,
+ table thead,
+ table .thead {
+ border-bottom: 1px solid #fcfcfc; }
+ /* line 44, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular:not(.fixed-header) tr th,
+ table:not(.fixed-header) tr th {
+ background-color: #e3e3e3; }
+ /* line 48, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tbody, .tabular .tbody,
+ table tbody,
+ table .tbody {
+ display: table-row-group; }
+ /* line 51, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tbody tr:hover, .tabular tbody .tr:hover, .tabular .tbody tr:hover, .tabular .tbody .tr:hover,
+ table tbody tr:hover,
+ table tbody .tr:hover,
+ table .tbody tr:hover,
+ table .tbody .tr:hover {
+ background: rgba(51, 51, 51, 0.1); }
+ /* line 56, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr, .tabular .tr,
+ table tr,
+ table .tr {
+ display: table-row; }
+ /* line 58, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr:first-child .td, .tabular .tr:first-child .td,
+ table tr:first-child .td,
+ table .tr:first-child .td {
+ border-top: none; }
+ /* line 62, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr.group-header td, .tabular tr.group-header .td, .tabular .tr.group-header td, .tabular .tr.group-header .td,
+ table tr.group-header td,
+ table tr.group-header .td,
+ table .tr.group-header td,
+ table .tr.group-header .td {
+ background-color: #efefef;
+ color: #404040; }
+ /* line 68, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr th, .tabular tr .th, .tabular tr td, .tabular tr .td, .tabular .tr th, .tabular .tr .th, .tabular .tr td, .tabular .tr .td,
+ table tr th,
+ table tr .th,
+ table tr td,
+ table tr .td,
+ table .tr th,
+ table .tr .th,
+ table .tr td,
+ table .tr .td {
+ display: table-cell; }
+ /* line 71, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr th, .tabular tr .th, .tabular .tr th, .tabular .tr .th,
+ table tr th,
+ table tr .th,
+ table .tr th,
+ table .tr .th {
+ border-left: 1px solid #fcfcfc;
+ color: #333333;
+ padding: 5px 5px;
+ white-space: nowrap;
+ vertical-align: middle; }
+ /* line 77, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr th:first-child, .tabular tr .th:first-child, .tabular .tr th:first-child, .tabular .tr .th:first-child,
+ table tr th:first-child,
+ table tr .th:first-child,
+ table .tr th:first-child,
+ table .tr .th:first-child {
+ border-left: none; }
+ /* line 81, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr th.sort.sort:after, .tabular tr .th.sort.sort:after, .tabular .tr th.sort.sort:after, .tabular .tr .th.sort.sort:after,
+ table tr th.sort.sort:after,
+ table tr .th.sort.sort:after,
+ table .tr th.sort.sort:after,
+ table .tr .th.sort.sort:after {
+ color: #49dedb;
+ font-family: symbolsfont;
+ font-size: 8px;
+ content: "\ed";
+ display: inline-block;
+ margin-left: 3px; }
+ /* line 89, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr th.sort.sort.desc:after, .tabular tr .th.sort.sort.desc:after, .tabular .tr th.sort.sort.desc:after, .tabular .tr .th.sort.sort.desc:after,
+ table tr th.sort.sort.desc:after,
+ table tr .th.sort.sort.desc:after,
+ table .tr th.sort.sort.desc:after,
+ table .tr .th.sort.sort.desc:after {
+ content: "\ec"; }
+ /* line 93, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr th.sortable, .tabular tr .th.sortable, .tabular .tr th.sortable, .tabular .tr .th.sortable,
+ table tr th.sortable,
+ table tr .th.sortable,
+ table .tr th.sortable,
+ table .tr .th.sortable {
+ cursor: pointer; }
+ /* line 97, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr td, .tabular tr .td, .tabular .tr td, .tabular .tr .td,
+ table tr td,
+ table tr .td,
+ table .tr td,
+ table .tr .td {
+ border-bottom: 1px solid #e3e3e3;
+ min-width: 20px;
+ color: #333333;
+ padding: 3px 5px;
+ word-wrap: break-word;
+ vertical-align: top; }
+ /* line 104, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr td.numeric, .tabular tr .td.numeric, .tabular .tr td.numeric, .tabular .tr .td.numeric,
+ table tr td.numeric,
+ table tr .td.numeric,
+ table .tr td.numeric,
+ table .tr .td.numeric {
+ text-align: right; }
+ /* line 107, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr td.s-cell-type-value, .tabular tr .td.s-cell-type-value, .tabular .tr td.s-cell-type-value, .tabular .tr .td.s-cell-type-value,
+ table tr td.s-cell-type-value,
+ table tr .td.s-cell-type-value,
+ table .tr td.s-cell-type-value,
+ table .tr .td.s-cell-type-value {
+ text-align: right; }
+ /* line 109, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular tr td.s-cell-type-value .l-cell-contents, .tabular tr .td.s-cell-type-value .l-cell-contents, .tabular .tr td.s-cell-type-value .l-cell-contents, .tabular .tr .td.s-cell-type-value .l-cell-contents,
+ table tr td.s-cell-type-value .l-cell-contents,
+ table tr .td.s-cell-type-value .l-cell-contents,
+ table .tr td.s-cell-type-value .l-cell-contents,
+ table .tr .td.s-cell-type-value .l-cell-contents {
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ padding-left: 5px;
+ padding-right: 5px; }
+ /* line 125, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.filterable tbody, .tabular.filterable .tbody,
+ table.filterable tbody,
+ table.filterable .tbody {
+ top: 44px; }
+ /* line 128, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.filterable input[type="text"],
+ table.filterable input[type="text"] {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ width: 100%; }
+ /* line 134, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.fixed-header,
+ table.fixed-header {
+ height: 100%; }
+ /* line 136, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.fixed-header thead, .tabular.fixed-header .thead,
+ .tabular.fixed-header tbody tr, .tabular.fixed-header .tbody .tr,
+ table.fixed-header thead,
+ table.fixed-header .thead,
+ table.fixed-header tbody tr,
+ table.fixed-header .tbody .tr {
+ display: table;
+ table-layout: fixed; }
+ /* line 141, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.fixed-header thead, .tabular.fixed-header .thead,
+ table.fixed-header thead,
+ table.fixed-header .thead {
+ width: calc(100% - 10px); }
+ /* line 143, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.fixed-header thead:before, .tabular.fixed-header .thead:before,
+ table.fixed-header thead:before,
+ table.fixed-header .thead:before {
+ content: "";
+ display: block;
+ z-index: 0;
+ position: absolute;
+ width: 100%;
+ height: 22px;
+ background-color: #e3e3e3; }
+ /* line 153, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.fixed-header tbody, .tabular.fixed-header .tbody,
+ table.fixed-header tbody,
+ table.fixed-header .tbody {
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto;
+ top: 22px;
+ display: block;
+ overflow-y: scroll; }
+ /* line 161, ../../../../general/res/sass/lists/_tabular.scss */
+ .tabular.t-event-messages td, .tabular.t-event-messages .td,
+ table.t-event-messages td,
+ table.t-event-messages .td {
+ min-width: 150px; }
+
+/*****************************************************************************
+ * 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, ../../../../general/res/sass/plots/_plots-main.scss */
+.gl-plot {
+ color: #666;
+ font-size: 0.7rem;
+ position: relative;
+ width: 100%;
+ height: 100%;
+ /****************************** Limits and Out-of-Bounds data */ }
+ /* line 38, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-axis-area {
+ position: absolute; }
+ /* line 41, ../../../../general/res/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, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-axis-area.gl-plot-y {
+ top: 25px;
+ right: auto;
+ bottom: 37px;
+ left: 0;
+ width: 60px; }
+ /* line 59, ../../../../general/res/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: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ background: black;
+ color: #b3b3b3;
+ padding: 2px 5px;
+ position: absolute;
+ top: 35px;
+ right: auto;
+ bottom: auto;
+ left: 70px;
+ z-index: 10; }
+ /* line 71, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-coords:empty {
+ display: none; }
+ /* line 76, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-display-area {
+ background-color: rgba(0, 0, 0, 0.05);
+ position: absolute;
+ top: 25px;
+ right: 0;
+ bottom: 37px;
+ left: 60px;
+ cursor: crosshair;
+ border: 1px solid rgba(102, 102, 102, 0.2); }
+ /* line 89, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-label,
+ .gl-plot .l-plot-label {
+ color: #999999;
+ position: absolute;
+ text-align: center; }
+ /* line 97, ../../../../general/res/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 106, ../../../../general/res/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 120, ../../../../general/res/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 134, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-hash {
+ position: absolute;
+ border: 0 rgba(0, 0, 0, 0.2) dashed; }
+ /* line 137, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-hash.hash-v {
+ border-right-width: 1px;
+ height: 100%; }
+ /* line 141, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-hash.hash-h {
+ border-bottom-width: 1px;
+ width: 100%; }
+ /* line 147, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .gl-plot-legend {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: auto;
+ left: 0;
+ height: 20px;
+ overflow-x: hidden;
+ overflow-y: auto; }
+ /* line 160, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .l-limit-bar,
+ .gl-plot .l-oob-data {
+ position: absolute;
+ left: 0;
+ right: 0;
+ width: auto; }
+ /* line 168, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .l-limit-bar {
+ height: auto;
+ z-index: 0; }
+ /* line 176, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .l-limit-bar.s-limit-yellow {
+ background: rgba(255, 170, 0, 0.2); }
+ /* line 177, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot .l-limit-bar.s-limit-red {
+ background: rgba(255, 0, 0, 0.2); }
+ /* line 180, ../../../../general/res/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 188, ../../../../general/res/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 193, ../../../../general/res/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 203, ../../../../general/res/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;
+ margin-bottom: 3px; }
+ /* line 208, ../../../../general/res/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 211, ../../../../general/res/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 228, ../../../../general/res/sass/plots/_plots-main.scss */
+.gl-plot-legend .plot-legend-item {
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ line-height: 1.5em;
+ padding: 0px 5px; }
+ /* line 234, ../../../../general/res/sass/plots/_plots-main.scss */
+ .gl-plot-legend .plot-legend-item .plot-color-swatch {
+ border: 1px solid #fcfcfc;
+ height: 9px;
+ width: 9px; }
+
+/* line 242, ../../../../general/res/sass/plots/_plots-main.scss */
+.tick {
+ position: absolute;
+ border: 0 rgba(0, 0, 0, 0.2) solid; }
+ /* line 245, ../../../../general/res/sass/plots/_plots-main.scss */
+ .tick.tick-x {
+ border-right-width: 1px;
+ height: 100%; }
+
+/* line 251, ../../../../general/res/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 259, ../../../../general/res/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 269, ../../../../general/res/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 281, ../../../../general/res/sass/plots/_plots-main.scss */
+.gl-plot-tick.gl-plot-x-tick-label {
+ top: 5px; }
+/* line 284, ../../../../general/res/sass/plots/_plots-main.scss */
+.gl-plot-tick.gl-plot-y-tick-label {
+ right: 5px;
+ left: 5px; }
+
+/* line 291, ../../../../general/res/sass/plots/_plots-main.scss */
+.tick-label.tick-label-x {
+ top: 0; }
+/* line 294, ../../../../general/res/sass/plots/_plots-main.scss */
+.tick-label.tick-label-y {
+ right: 0;
+ left: 0; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/* Styles for the iframe EmbeddedPageController element */
+/* line 25, ../../../../general/res/sass/_iframe.scss */
+.l-iframe iframe {
+ display: block;
+ height: 100%;
+ width: 100%; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+/******************************** BROWSE */
+/* line 27, ../../../../general/res/sass/_hide-non-functional.scss */
+.browse-mode .browse.top-bar {
+ display: none; }
+/* line 32, ../../../../general/res/sass/_hide-non-functional.scss */
+.browse-mode .browse-area.holder {
+ top: 10px; }
+
+/* Styles for sub-dividing views generically */
+/* line 3, ../../../../general/res/sass/_views.scss */
+.l-view-section {
+ overflow: hidden;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto;
+ font-size: 0.8rem; }
+ /* line 6, ../../../../general/res/sass/_views.scss */
+ .l-view-section h2 {
+ color: #fff;
+ margin-bottom: 5px; }
+ /* line 10, ../../../../general/res/sass/_views.scss */
+ .l-view-section.fixed {
+ font-size: 0.8em; }
+ /* line 13, ../../../../general/res/sass/_views.scss */
+ .l-view-section .controls,
+ .l-view-section label,
+ .l-view-section .inline-block {
+ display: inline-block; }
+
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/items/_item.scss */
+.items-holder {
+ overflow: hidden;
+ *zoom: 1;
+ overflow-y: auto; }
+ /* line 25, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .contents {
+ top: 0; }
+ /* line 29, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item {
+ background-color: #ddd;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #666;
+ display: inline-block;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -moz-transition: background, 0.25s;
+ -o-transition: background, 0.25s;
+ -webkit-transition: background, 0.25s;
+ transition: background, 0.25s;
+ text-shadow: none;
+ box-sizing: border-box;
+ cursor: pointer;
+ float: left;
+ height: 200px;
+ width: 200px;
+ margin-bottom: 3px;
+ margin-right: 3px;
+ position: relative; }
+ /* line 274, ../../../../general/res/sass/_mixins.scss */
+ .items-holder .item.grid-item .icon {
+ color: #0099cc; }
+ @media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
+ /* line 279, ../../../../general/res/sass/_mixins.scss */
+ .items-holder .item.grid-item:not(.disabled):hover {
+ background: #d0d0d0; }
+ /* line 281, ../../../../general/res/sass/_mixins.scss */
+ .items-holder .item.grid-item:not(.disabled):hover > .icon {
+ color: #33ccff; } }
+ /* line 45, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item:hover .item-main .item-type {
+ color: deepskyblue; }
+ /* line 47, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item:hover .item-main .item-type .l-icon-link {
+ color: #49dedb; }
+ /* line 51, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item:hover .item-main .item-open {
+ opacity: 1; }
+ /* line 55, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .contents {
+ top: 10px;
+ right: 10px;
+ bottom: 10px;
+ left: 10px; }
+ /* line 61, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .bar.top-bar {
+ bottom: auto;
+ color: #8c8c8c;
+ height: 20px;
+ line-height: 20px;
+ text-align: right;
+ z-index: 5; }
+ /* line 68, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .bar.top-bar .left, .items-holder .item.grid-item .bar.top-bar .right {
+ width: auto; }
+ /* line 70, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .bar.top-bar .left .icon, .items-holder .item.grid-item .bar.top-bar .right .icon {
+ margin-left: 3px; }
+ /* line 72, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .bar.top-bar .left .icon.l-icon-link, .items-holder .item.grid-item .bar.top-bar .right .icon.l-icon-link {
+ color: #49dedb; }
+ /* line 78, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .bar.bottom-bar {
+ top: auto;
+ line-height: 110%; }
+ /* line 83, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .item-main {
+ line-height: 160px;
+ z-index: 1; }
+ /* line 89, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .item-main .item-type {
+ overflow: false;
+ position: absolute;
+ top: 40px;
+ right: 40px;
+ bottom: 40px;
+ left: 40px;
+ width: auto;
+ height: auto;
+ text-align: center;
+ font-size: 96.9px;
+ line-height: 102px;
+ bottom: auto;
+ height: 102px;
+ top: 30px; }
+ /* line 100, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .item-main .item-type .l-icon-link {
+ color: #49dedb;
+ height: auto;
+ line-height: 100%;
+ position: absolute;
+ font-size: 0.3em;
+ left: 0px;
+ bottom: 10px;
+ z-index: 2; }
+ /* line 111, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .item-main .item-open {
+ -moz-transition-property: "opacity";
+ -o-transition-property: "opacity";
+ -webkit-transition-property: "opacity";
+ transition-property: "opacity";
+ -moz-transition-duration: 200ms;
+ -o-transition-duration: 200ms;
+ -webkit-transition-duration: 200ms;
+ transition-duration: 200ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ opacity: 0;
+ color: #8c8c8c;
+ font-size: 3em;
+ left: auto;
+ width: 50px;
+ pointer-events: none;
+ text-align: right; }
+ /* line 121, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .title {
+ text-shadow: none;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ color: #666; }
+ /* line 126, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item .details {
+ text-shadow: none;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ color: #8c8c8c;
+ font-size: 0.8em; }
+ /* line 132, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item.selected {
+ background-color: #0099cc;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #fff;
+ display: inline-block;
+ -moz-user-select: -moz-none;
+ -ms-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -moz-transition: background, 0.25s;
+ -o-transition: background, 0.25s;
+ -webkit-transition: background, 0.25s;
+ transition: background, 0.25s;
+ text-shadow: none;
+ color: #80dfff; }
+ /* line 274, ../../../../general/res/sass/_mixins.scss */
+ .items-holder .item.grid-item.selected .icon {
+ color: #eee; }
+ /* line 137, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item.selected .item-type, .items-holder .item.grid-item.selected .top-bar .icon:not(.alert) {
+ color: #80dfff; }
+ /* line 138, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item.selected .item-main .item-open {
+ color: #80dfff; }
+ /* line 139, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item.selected .title {
+ color: white; }
+ /* line 141, ../../../../general/res/sass/items/_item.scss */
+ .items-holder .item.grid-item.selected:hover .item-main .item-type {
+ color: white !important; }
+
+/*****************************************************************************
+ * 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.
+ *****************************************************************************/
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px), screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 29, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item {
+ width: 100%; }
+ /* line 33, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item > .contents {
+ top: 0px;
+ right: 10px;
+ bottom: 0px;
+ left: 10px; }
+ /* line 37, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .bar.top-bar {
+ bottom: 0 !important;
+ left: auto !important;
+ right: 20px !important;
+ width: 40px !important;
+ height: auto !important;
+ text-align: right; }
+ /* line 44, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .bar.bottom-bar {
+ left: 40px;
+ right: 60px; }
+ /* line 52, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .item-main .item-type {
+ font-size: 30px;
+ right: auto;
+ bottom: auto;
+ left: 0;
+ line-height: 100%;
+ text-align: left;
+ width: 30px; }
+ /* line 61, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .item-main .item-type .l-icon-link {
+ bottom: 0; }
+ /* line 65, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .item-main .item-open {
+ display: block;
+ opacity: 1;
+ font-size: 1em;
+ width: auto; } }
+@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (max-height: 514px) and (max-width: 740px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 29, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item {
+ height: 50px; }
+ /* line 78, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .bar.top-bar {
+ line-height: 50px !important; }
+ /* line 82, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .bar.bottom-bar {
+ top: 7px;
+ bottom: auto;
+ height: 35px; }
+ /* line 87, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .item-main .item-type {
+ top: 10px;
+ bottom: auto;
+ height: 30px; }
+ /* line 90, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .item-main .item-open {
+ line-height: 50px; } }
+@media screen and (orientation: portrait) and (min-width: 515px) and (max-width: 799px) and (min-height: 741px) and (max-height: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 799px) and (max-device-height: 1024px), screen and (orientation: landscape) and (min-height: 515px) and (max-height: 799px) and (min-width: 741px) and (max-width: 1024px) and (max-device-width: 1024px) and (max-device-height: 799px) {
+ /* line 29, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item {
+ height: 66px; }
+ /* line 100, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .bar.top-bar {
+ line-height: 66px !important; }
+ /* line 104, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .bar.bottom-bar {
+ top: 15px;
+ bottom: auto;
+ height: 35px; }
+ /* line 109, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .item-main .item-type {
+ top: 18px;
+ bottom: auto;
+ height: 30px; }
+ /* line 112, ../../../../general/res/sass/mobile/_item.scss */
+ .items-holder .item.grid-item .item-main .item-open {
+ line-height: 66px; } }
+
+/********************************* TO BE MOVED */
+/*****************************************************************************
+ * 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 22, ../../../../general/res/sass/_autoflow.scss */
+.autoflow {
+ font-size: 0.75rem; }
+ /* line 32, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow:hover .l-autoflow-header .s-btn.change-column-width, .autoflow:hover .l-autoflow-header .change-column-width.s-menu-btn {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 50ms;
+ -o-transition-duration: 50ms;
+ -webkit-transition-duration: 50ms;
+ transition-duration: 50ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ opacity: 1; }
+ /* line 40, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-header {
+ bottom: auto;
+ height: 22px;
+ line-height: 22px;
+ min-width: 225px; }
+ /* line 45, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-header span {
+ vertical-align: middle; }
+ /* line 48, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-header .s-btn.change-column-width, .autoflow .l-autoflow-header .change-column-width.s-menu-btn {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 500ms;
+ -o-transition-duration: 500ms;
+ -webkit-transition-duration: 500ms;
+ transition-duration: 500ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ opacity: 0; }
+ /* line 52, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-header .l-filter {
+ margin-left: 5px; }
+ /* line 54, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-header .l-filter input.t-filter-input {
+ width: 100px; }
+ /* line 60, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items {
+ overflow-x: scroll;
+ overflow-y: hidden;
+ top: 32px;
+ white-space: nowrap; }
+ /* line 66, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-left: 1px solid rgba(102, 102, 102, 0.2);
+ display: inline-block;
+ padding-left: 5px;
+ padding-right: 5px;
+ vertical-align: top;
+ width: 225px; }
+ /* line 76, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
+ display: block;
+ height: 15px;
+ line-height: 15px;
+ margin-bottom: 1px;
+ margin-top: 1px;
+ position: relative; }
+ /* line 85, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row:first-child {
+ border-top: none; }
+ /* line 88, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row:hover {
+ background: rgba(255, 255, 255, 0.1); }
+ /* line 93, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row.s-stale .l-autoflow-item.l {
+ color: rgba(51, 51, 51, 0.3) !important;
+ font-style: italic; }
+ /* line 94, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row.s-stale .l-autoflow-item.r {
+ color: rgba(51, 51, 51, 0.5) !important;
+ font-style: italic; }
+ /* line 97, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row:not(.s-stale) .l-autoflow-item.r {
+ color: gray; }
+ /* line 101, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row.first-in-group {
+ border-top: 1px solid rgba(153, 153, 153, 0.2); }
+ /* line 104, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row .l-autoflow-item {
+ display: block; }
+ /* line 106, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row .l-autoflow-item.l {
+ float: none;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: auto; }
+ /* line 113, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col .l-autoflow-row .l-autoflow-item.r {
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ float: right;
+ margin-left: 5px;
+ padding-left: 5px;
+ padding-right: 5px;
+ text-align: right; }
+ /* line 124, ../../../../general/res/sass/_autoflow.scss */
+ .autoflow .l-autoflow-items .l-autoflow-col:first-child {
+ border-left: none;
+ padding-left: 0; }
+
+/* line 1, ../../../../general/res/sass/features/_imagery.scss */
+.l-image-main-wrapper,
+.l-image-main,
+.l-image-main-controlbar,
+.l-image-thumbs-wrapper {
+ overflow: false;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: auto;
+ height: auto; }
+
+/*************************************** MAIN LAYOUT */
+/* line 9, ../../../../general/res/sass/features/_imagery.scss */
+.l-image-main-wrapper {
+ min-height: 100px;
+ min-width: 150px; }
+ /* line 16, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-wrapper .l-image-main {
+ background-color: rgba(0, 0, 0, 0.05);
+ bottom: 30px; }
+ /* line 20, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-wrapper .l-image-main-controlbar {
+ top: auto;
+ height: 25px; }
+
+/* line 26, ../../../../general/res/sass/features/_imagery.scss */
+.l-image-thumbs-wrapper {
+ top: auto;
+ height: 168px; }
+
+/* line 32, ../../../../general/res/sass/features/_imagery.scss */
+.l-date,
+.l-time,
+.l-timezone {
+ display: inline-block; }
+
+/*************************************** MAIN IMAGE */
+/* line 40, ../../../../general/res/sass/features/_imagery.scss */
+.l-image-main,
+.l-image-thumb-item .l-thumb {
+ background-size: contain;
+ background-position: center;
+ background-repeat: no-repeat; }
+
+/* line 51, ../../../../general/res/sass/features/_imagery.scss */
+.l-image-main-controlbar {
+ font-size: 0.8em;
+ line-height: 25px; }
+ /* line 55, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .left, .l-image-main-controlbar .right {
+ direction: rtl;
+ overflow: hidden; }
+ /* line 59, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .left {
+ text-align: left; }
+ /* line 63, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .right {
+ z-index: 2; }
+ /* line 67, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .l-date,
+ .l-image-main-controlbar .l-time {
+ color: #333333; }
+ /* line 71, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .l-mag {
+ direction: ltr;
+ display: inline-block; }
+ /* line 75, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .l-mag:before {
+ content: "\000049"; }
+ /* line 79, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .s-mag {
+ color: #999999; }
+ /* line 82, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-main-controlbar .l-btn.show-thumbs {
+ display: none; }
+
+/* line 87, ../../../../general/res/sass/features/_imagery.scss */
+.s-image-main {
+ border: 1px solid transparent; }
+ /* line 89, ../../../../general/res/sass/features/_imagery.scss */
+ .s-image-main.paused {
+ border-color: #ff9900; }
+
+/*************************************** THUMBS */
+/* line 96, ../../../../general/res/sass/features/_imagery.scss */
+.l-image-thumbs-wrapper {
+ direction: rtl;
+ overflow-x: auto;
+ overflow-y: hidden;
+ padding-bottom: 5px;
+ white-space: nowrap;
+ z-index: 70; }
+
+/* line 106, ../../../../general/res/sass/features/_imagery.scss */
+.l-image-thumb-item {
+ -moz-transition: background-color 0.25s;
+ -o-transition: background-color 0.25s;
+ -webkit-transition: background-color 0.25s;
+ transition: background-color 0.25s;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 1px;
+ position: relative;
+ cursor: pointer;
+ direction: ltr;
+ display: inline-block;
+ font-size: 0.8em;
+ margin-left: 3px;
+ text-align: left;
+ width: 122px;
+ white-space: normal; }
+ /* line 111, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-thumb-item .l-thumb,
+ .l-image-thumb-item .l-date,
+ .l-image-thumb-item .l-time {
+ display: inline-block; }
+ /* line 116, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-thumb-item .l-date,
+ .l-image-thumb-item .l-time {
+ padding: 2px 3px; }
+ /* line 128, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-thumb-item:hover {
+ background: rgba(255, 255, 255, 0.2); }
+ /* line 130, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-thumb-item:hover .l-date,
+ .l-image-thumb-item:hover .l-time {
+ color: #fff; }
+ /* line 135, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-thumb-item.selected {
+ background: #0099cc; }
+ /* line 137, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-thumb-item.selected .l-date,
+ .l-image-thumb-item.selected .l-time {
+ color: #fff; }
+ /* line 142, ../../../../general/res/sass/features/_imagery.scss */
+ .l-image-thumb-item .l-thumb {
+ background-color: rgba(255, 255, 255, 0.1);
+ height: 120px;
+ width: 120px;
+ margin-top: 0; }
+
+/*************************************** WHEN IN FRAME */
+/* line 152, ../../../../general/res/sass/features/_imagery.scss */
+.frame .t-imagery .l-image-main-wrapper {
+ bottom: 0; }
+ /* line 154, ../../../../general/res/sass/features/_imagery.scss */
+ .frame .t-imagery .l-image-main-wrapper .l-image-main-controlbar {
+ font-size: 0.7em; }
+/* line 163, ../../../../general/res/sass/features/_imagery.scss */
+.frame .t-imagery .l-image-thumbs-wrapper {
+ display: none; }
+
+/* line 5, ../../../../general/res/sass/features/_time-display.scss */
+.l-time-display:hover .l-btn.control {
+ opacity: 1; }
+/* line 9, ../../../../general/res/sass/features/_time-display.scss */
+.l-time-display .l-elem-wrapper {
+ position: relative; }
+/* line 12, ../../../../general/res/sass/features/_time-display.scss */
+.l-time-display .l-elem {
+ display: inline-block; }
+/* line 17, ../../../../general/res/sass/features/_time-display.scss */
+.l-time-display.l-timer .l-elem.l-value {
+ -moz-transition-property: left;
+ -o-transition-property: left;
+ -webkit-transition-property: left;
+ transition-property: left;
+ -moz-transition-duration: 200ms;
+ -o-transition-duration: 200ms;
+ -webkit-transition-duration: 200ms;
+ transition-duration: 200ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ position: absolute;
+ left: 0;
+ z-index: 1; }
+ /* line 22, ../../../../general/res/sass/features/_time-display.scss */
+ .l-time-display.l-timer .l-elem.l-value .ui-symbol.direction, .l-time-display.l-timer .l-elem.l-value .direction.s-icon-btn, .l-time-display.l-timer .l-elem.l-value .direction.mini-tab, .l-time-display.l-timer .l-elem.l-value .l-datetime-picker .l-month-year-pager .direction.pager, .l-datetime-picker .l-month-year-pager .l-time-display.l-timer .l-elem.l-value .direction.pager {
+ font-size: 0.8em; }
+/* line 26, ../../../../general/res/sass/features/_time-display.scss */
+.l-time-display.l-timer:hover .l-elem.l-value {
+ left: 20px; }
+/* line 33, ../../../../general/res/sass/features/_time-display.scss */
+.l-time-display .l-elem .value.active, .l-time-display .l-elem.value.active {
+ color: #fff; }
+/* line 38, ../../../../general/res/sass/features/_time-display.scss */
+.l-time-display .l-btn.control {
+ -moz-transition-property: opacity, background-color, border-color, color;
+ -o-transition-property: opacity, background-color, border-color, color;
+ -webkit-transition-property: opacity, background-color, border-color, color;
+ transition-property: opacity, background-color, border-color, color;
+ -moz-transition-duration: 200ms;
+ -o-transition-duration: 200ms;
+ -webkit-transition-duration: 200ms;
+ transition-duration: 200ms;
+ -moz-transition-timing-function: ease-in-out;
+ -o-transition-timing-function: ease-in-out;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+ -moz-transition-delay: 0;
+ -o-transition-delay: 0;
+ -webkit-transition-delay: 0;
+ transition-delay: 0;
+ opacity: 0;
+ font-size: 0.65em;
+ vertical-align: top; }
+
+/* line 3, ../sass/_controls.scss */
+.s-btn.major .title-label, .major.s-menu-btn .title-label {
+ text-transform: uppercase; }
diff --git a/platform/commonUI/themes/snow/res/sass/_constants.scss b/platform/commonUI/themes/snow/res/sass/_constants.scss
index f97f2a4df0..13390fa79e 100644
--- a/platform/commonUI/themes/snow/res/sass/_constants.scss
+++ b/platform/commonUI/themes/snow/res/sass/_constants.scss
@@ -75,6 +75,13 @@ $colorInputIcon: pushBack($colorBodyFg, 25%);
$colorSelectBg: #ddd;
$colorSelectFg: $colorBodyFg;
+// Inspector
+$colorInspectorFg: $colorBodyFg;
+$colorInspectorPropName: pushBack($colorBodyFg, 20%);
+$colorInspectorPropVal: $colorInspectorFg;
+$colorInspectorSectionHeaderBg: pullForward($colorBodyBg, 5%);
+$colorInspectorSectionHeaderFg: pullForward($colorBodyBg, 40%);
+
// Limits and staleness colors//
$colorTelemFresh: pullForward($colorBodyFg, 20%);
$colorTelemStale: pushBack($colorBodyFg, 20%);
@@ -110,6 +117,7 @@ $colorItemBgSelected: $colorKey;
// Tabular
$colorTabBorder: pullForward($colorBodyBg, 10%);
+$colorItemTreeHoverFg: pullForward($colorBodyFg, 20%);
$colorTabBodyBg: $colorBodyBg;
$colorTabBodyFg: pullForward($colorBodyFg, 20%);
$colorTabHeaderBg: pullForward($colorBodyBg, 10%);
@@ -125,6 +133,7 @@ $colorPlotAreaBorder: $colorInteriorBorder;
$colorPlotLabelFg: pushBack($colorPlotFg, 20%);
// Tree
+$colorItemTreeHoverBg: rgba($colorBodyFg, 0.1);
$colorItemTreeIcon: $colorKey;
$colorItemTreeIconHover: $colorItemTreeIcon; //pushBack($colorItemTreeIcon, 20%);
$colorItemTreeVCHover: $colorKey;
|