/***************************************************************************** * 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 */ .l-inspect, .l-inspect table tr td { font-size: 0.7rem; } .l-inspect { @extend .abs; background: $colorInspectorBg; color: $colorInspectorFg; line-height: 140%; .pane-header { color: pushBack($colorInspectorFg, 20%); font-size: 0.8rem; } ul li, em { display: block; position: relative; } ul li { margin-bottom: $interiorMarginLg; } em { @include border-radius($basicCr); background-color: $colorInspectorSectionHeaderBg; color: $colorInspectorSectionHeaderFg; margin-bottom: $interiorMargin; padding: $formTBPad $formLRPad; text-transform: uppercase; } .inspector-properties { &:not(.first) { border-top: 1px solid $colorInspectorSectionHeaderBg; } padding: $interiorMarginSm 0; .label { color: $colorInspectorPropName; text-transform: uppercase; } .value { color: $colorInspectorPropVal; word-break: break-all; } } .inspector-location { //line-height: 180%; .location-item { cursor: pointer; display: inline-block; position: relative; padding: 2px 4px; &:hover { background: $colorItemTreeHoverBg; color: $colorItemTreeHoverFg; .icon { color: $colorItemTreeIconHover; } } } &:not(.last) .t-object-label .t-title-label:after { color: pushBack($colorInspectorFg, 15%); content: '\3e'; display: inline-block; font-family: symbolsfont; font-size: 8px; line-height: inherit; margin-left: $interiorMarginSm; width: 4px; } } }