mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|