mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
aec1176dc4
WTD-1163 WTD-1146 New CSS to hide non-functional elements, including browse.top-bar with search elements; Adjusted spacing, mainly in .contents CSS class;
25 lines
509 B
SCSS
25 lines
509 B
SCSS
// Styles to temporarily hide non-functional elements
|
|
|
|
/******************************** BROWSE */
|
|
.browse-mode {
|
|
.browse {
|
|
&.top-bar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.browse-area.holder {
|
|
// When .browse.top-bar is hidden, set the top of the browse-area holder
|
|
top: $interiorMargin;
|
|
> .contents.split-layout {
|
|
// Don't pad in from top and bottom
|
|
//top: 0; bottom: 0;
|
|
.object-browse-bar {
|
|
.t-btn.key-window {
|
|
// Hide the Open in New Window button
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |