[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:
Charles Hacskaylo 2016-08-08 11:21:01 -07:00
parent 7557a86208
commit 62ee7e569b
2 changed files with 3 additions and 4 deletions

View File

@ -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;
}

View File

@ -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 {