mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
[Frontend] Fix for collapse Inspector button
Fixes #1112 Moved min-width and overflow: hidden to TC-specific elements; removed overflow: hidden from .primary-pane
This commit is contained in:
parent
7557a86208
commit
62ee7e569b
@ -129,8 +129,6 @@
|
||||
}
|
||||
|
||||
.primary-pane {
|
||||
// Clip element that have min-widths
|
||||
overflow: hidden;
|
||||
// Need to lift up this pane to ensure that 'collapsed' panes don't block user interactions
|
||||
z-index: 4;
|
||||
}
|
||||
|
@ -27,9 +27,9 @@
|
||||
}
|
||||
|
||||
.l-time-conductor-holder {
|
||||
$minW: 500px;
|
||||
border-top: 1px solid $colorInteriorBorder;
|
||||
min-width: $minW;
|
||||
// Clip if Time Conductor min-width is exceeded
|
||||
overflow: hidden;
|
||||
padding-top: $interiorMargin;
|
||||
}
|
||||
|
||||
@ -98,6 +98,7 @@
|
||||
$r2H: nth($ueTimeConductorH, 2);
|
||||
$r3H: nth($ueTimeConductorH, 3);
|
||||
|
||||
min-width: 500px;
|
||||
position: relative;
|
||||
|
||||
> .l-row-elem {
|
||||
|
Loading…
Reference in New Issue
Block a user