[Frontend] Manual re-do of collapse/expand panes

open #90
Implementing PaneController;
Added inspection pane and toggle button in
browse-object.html;
This commit is contained in:
Charles Hacskaylo
2015-10-22 14:26:22 -07:00
parent b98c1cdfe8
commit 4f27104663
7 changed files with 111 additions and 84 deletions

View File

@@ -42,7 +42,8 @@ $ueFooterH: 25px;
$ueColMargin: 1.5%;
$ueAppLogoW: 105px;
$ueEditToolBarH: 25px;
$ueBrowseLeftPaneW: 25%;
$ueBrowseLeftPaneTreeW: 25%;
$ueBrowseRightPaneInspectW: 10%;
$ueEditLeftPaneW: 75%;
$treeSearchInputBarH: 25px;
$ueTimeControlH: (33px, 20px, 20px);

View File

@@ -205,10 +205,17 @@
.browse-mode {
.split-layout {
.split-pane-component.pane.left {
min-width: 150px;
max-width: 800px;
width: $ueBrowseLeftPaneW;
.split-pane-component.pane {
&.treeview.left {
min-width: 150px;
max-width: 800px;
width: $ueBrowseLeftPaneTreeW;
}
&.t-inspector.right {
min-width: 150px;
max-width: 800px;
width: $ueBrowseRightPaneInspectW;
}
}
}
}