From d2625205942043007cae2fbc51ce0bde0625bdb3 Mon Sep 17 00:00:00 2001 From: Shivam Dave Date: Wed, 29 Jul 2015 10:25:09 -0700 Subject: [PATCH] [Mobile] Tree menu Open Tree menu select arrow button's width is now size of full button. Prior to this the pressable area was less and therefore less responsive. --- platform/commonUI/general/res/css/tree.css | 10 ++++++---- platform/commonUI/general/res/sass/mobile/_tree.scss | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/platform/commonUI/general/res/css/tree.css b/platform/commonUI/general/res/css/tree.css index 01c5a20921..a0b8f7286d 100644 --- a/platform/commonUI/general/res/css/tree.css +++ b/platform/commonUI/general/res/css/tree.css @@ -342,14 +342,16 @@ ul.tree { ul.tree li span.tree-item .view-control { position: absolute; right: 13px; - font-size: 1.8em; } - /* line 42, ../sass/mobile/_tree.scss */ + font-size: 1.8em; + right: 0px; + width: auto; } + /* line 44, ../sass/mobile/_tree.scss */ ul.tree li span.tree-item .label { left: 3px; font-size: 1.2em; } - /* line 49, ../sass/mobile/_tree.scss */ + /* line 51, ../sass/mobile/_tree.scss */ ul.tree li span.tree-item .label .title-label { right: 16.9px; } - /* line 58, ../sass/mobile/_tree.scss */ + /* line 60, ../sass/mobile/_tree.scss */ ul.tree ul.tree { margin-left: 7px; } } diff --git a/platform/commonUI/general/res/sass/mobile/_tree.scss b/platform/commonUI/general/res/sass/mobile/_tree.scss index 37c7ad6a70..fcdc70666e 100644 --- a/platform/commonUI/general/res/sass/mobile/_tree.scss +++ b/platform/commonUI/general/res/sass/mobile/_tree.scss @@ -37,6 +37,8 @@ ul.tree { position: absolute; right: $mobile-treeRight; font-size: 1.8em; + right: 0px; + width: auto; } .label {