mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
Merge pull request #1318 from nasa/open1315
Add styling for .s-status-missing
This commit is contained in:
commit
3dade275d4
@ -141,6 +141,35 @@ a.disabled {
|
|||||||
cursor: default !important;
|
cursor: default !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.s-status-missing {
|
||||||
|
// Labels. Expects .s-status-missing to be applied to mct-representation that contains
|
||||||
|
// .t-object-label
|
||||||
|
.t-object-label .t-item-icon:before {
|
||||||
|
content: $glyph-icon-object-unknown;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Item, grid item. Expects .s-status-missing to be applied to mct-representation that contains .item.grid-item
|
||||||
|
.item .t-item-icon-glyph:before {
|
||||||
|
content: $glyph-icon-object-unknown;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Object header. Expects .s-status-missing to be applied to mct-representation.object-header
|
||||||
|
&.object-header {
|
||||||
|
.type-icon:before {
|
||||||
|
content: $glyph-icon-object-unknown;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tree item. Expects .s-status-missing to be applied to .tree-item,
|
||||||
|
// and mct-representation.search-item
|
||||||
|
&.tree-item,
|
||||||
|
&.search-item {
|
||||||
|
> .rep-object-label .t-item-icon:before {
|
||||||
|
content: $glyph-icon-object-unknown;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.align-right {
|
.align-right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
@ -20,9 +20,9 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
@import "effects";
|
@import "effects";
|
||||||
@import "global";
|
|
||||||
@import "glyphs";
|
@import "glyphs";
|
||||||
@import "animations";
|
@import "animations";
|
||||||
|
@import "global";
|
||||||
@import "archetypes";
|
@import "archetypes";
|
||||||
@import "about";
|
@import "about";
|
||||||
@import "text";
|
@import "text";
|
||||||
|
Loading…
Reference in New Issue
Block a user