From fc704b80566af4f7130d49430df05cff99ba1023 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Tue, 27 Oct 2015 17:18:40 -0700 Subject: [PATCH] [Frontend] Fixed and finessed mobile expand collapse open #90 Fixed problem of right pane primary not going all the way left; Finessed timing of tree pane fade in / fade out; --- .../commonUI/general/res/sass/mobile/_layout.scss | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/platform/commonUI/general/res/sass/mobile/_layout.scss b/platform/commonUI/general/res/sass/mobile/_layout.scss index ab3c16f291..3d7c059498 100644 --- a/platform/commonUI/general/res/sass/mobile/_layout.scss +++ b/platform/commonUI/general/res/sass/mobile/_layout.scss @@ -63,10 +63,15 @@ // Sets the left tree menu when the tree // is hidden. .pane.left.treeview { - right: 100% !important; - width: auto !important; - overflow-y: hidden; - overflow-x: hidden; + @include trans-prop-nice(opacity, 150ms); + //right: 100% !important; + //width: auto !important; + //overflow-y: hidden; + //overflow-x: hidden; + opacity: 0 !important; + } + .pane.right.items { + left: 0 !important; } } @@ -80,6 +85,7 @@ // Sets the left tree menu when the tree is shown. .pane.left.treeview { + @include trans-prop-nice(opacity, 250ms, $delay: 250ms); @include background-image(linear-gradient(90deg, rgba(black, 0) 98%, rgba(black, 0.3) 100%)); right: auto !important; width: $proporMenuWithView !important;