[Frontend] Fixed mini-tab positioning algorithm

open #90
This commit is contained in:
Charles Hacskaylo
2015-10-24 17:48:59 -07:00
parent 85809ae1e1
commit 99c977ce9d
5 changed files with 90 additions and 77 deletions

View File

@@ -98,6 +98,7 @@
left: $bodyMargin;
&:after {
content:'m' !important;
font-family: symbolsfont;
}
}

View File

@@ -246,7 +246,7 @@
.primary-pane {
// Need to lift up this pane to ensure that 'collapsed' panes don't block user interactions
z-index: 5;
z-index: 2;
}
&.treeview.left {
@@ -272,7 +272,7 @@
//@include test(blue, 0.6);
$paneOffset: -2 * $splitterD;
$paneCollapsedOffset: $bodyMargin + $ueCollapsedPaneEdgeM;
z-index: 2;
z-index: 5;
@include desktop {
&.toggle-tree.anchor-left {
//@include test(green);
@@ -403,9 +403,6 @@
opacity: 0;
}
// Sets the right representation when the tree is hidden.
.pane.right.items {
left: $ueCollapsedPaneEdgeM !important;
}
}
.pane-tree-showing {
@@ -432,13 +429,17 @@
.splitter-inspect {
opacity: 0;
}
.pane.left {
right: $ueCollapsedPaneEdgeM !important;
}
}
}
@include desktop {
.pane-tree-hidden {
.pane.right.primary-pane { left: $ueCollapsedPaneEdgeM !important; }
}
.pane-inspect-hidden .l-object-and-inspector {
.pane.left { right: $ueCollapsedPaneEdgeM !important; }
}
.pane:not(.resizing) {
@include trans-prop-nice-resize-w(250ms);
}