mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
9c001fabd9
WTD-610 Fixed markup in select.html; Rebuilt associated CSS in _selects.scss; Still to-do: checkbox valign and spacing Conflicts: platform/commonUI/general/res/css/forms.css platform/commonUI/general/res/css/items.css platform/commonUI/general/res/css/theme-espresso.css platform/commonUI/general/res/css/tree.css
102 lines
3.1 KiB
CSS
102 lines
3.1 KiB
CSS
/* line 1, ../sass/tree/_tree.scss */
|
|
ul.tree {
|
|
margin: 0;
|
|
padding: 0; }
|
|
ul.tree li {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0; }
|
|
/* line 4, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item {
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
-webkit-transition: background-color 0.25s;
|
|
-moz-transition: background-color 0.25s;
|
|
-o-transition: background-color 0.25s;
|
|
transition: background-color 0.25s;
|
|
display: block;
|
|
font-size: 0.80rem;
|
|
height: 1.5rem;
|
|
line-height: 1.5rem;
|
|
margin-bottom: 3px;
|
|
position: relative; }
|
|
/* line 17, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item.loading {
|
|
color: #666666;
|
|
font-style: italic; }
|
|
/* line 20, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item.loading .wait-spinner {
|
|
margin-left: 14px; }
|
|
/* line 24, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item:not(.loading) {
|
|
cursor: pointer; }
|
|
/* line 26, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item:not(.loading):hover {
|
|
background: #404040;
|
|
color: #cccccc; }
|
|
/* line 29, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item:not(.loading):hover .context-trigger {
|
|
display: block; }
|
|
/* line 32, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item:not(.loading):hover .icon {
|
|
color: #33ccff; }
|
|
/* line 37, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .selected {
|
|
color: #fff; }
|
|
/* line 40, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .view-control {
|
|
display: inline-block;
|
|
width: 10px; }
|
|
/* line 46, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .view-control:hover {
|
|
color: #ffc700; }
|
|
/* line 50, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .context-trigger {
|
|
display: none;
|
|
top: -1px;
|
|
position: absolute;
|
|
right: 3px; }
|
|
/* line 56, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .context-trigger .btn-invoke-menu {
|
|
font-size: 0.75em;
|
|
height: 0.9rem;
|
|
line-height: 0.9rem; }
|
|
/* line 62, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .icon {
|
|
text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
|
|
color: #0099cc;
|
|
left: 15px; }
|
|
/* line 67, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .icon .alert {
|
|
text-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
|
|
background: #333333;
|
|
color: #ff3c00;
|
|
font-size: 0.7em;
|
|
margin-top: -3px;
|
|
top: 0;
|
|
right: auto;
|
|
bottom: auto;
|
|
left: 9px;
|
|
height: auto;
|
|
width: auto;
|
|
position: absolute;
|
|
z-index: 2; }
|
|
/* line 83, ../sass/tree/_tree.scss */
|
|
ul.tree li .tree-item .title-label {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 37px;
|
|
right: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
height: 1.5rem;
|
|
bottom: auto;
|
|
white-space: nowrap; }
|
|
/* line 99, ../sass/tree/_tree.scss */
|
|
ul.tree ul.tree {
|
|
margin-left: 15px; }
|