From bfef134e5924a2272f3b97efd35f405a82a55efb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Mon, 20 Mar 2017 13:44:31 +0100 Subject: [PATCH] =?utf8?q?ActionBar:=20Scrolling=20von=20ausgeklapptem=20H?= =?utf8?q?TML=20Men=C3=BC=20gefixt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/Layout/MenuLeft.pm | 2 +- css/kivitendo/menu.css | 10 +++++++++- css/lx-office-erp/menu.css | 9 ++++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/SL/Layout/MenuLeft.pm b/SL/Layout/MenuLeft.pm index 25119fed2..054757ffb 100644 --- a/SL/Layout/MenuLeft.pm +++ b/SL/Layout/MenuLeft.pm @@ -26,7 +26,7 @@ sub javascripts { } sub pre_content { - "
\n"; + "
\n"; } sub section_menu { diff --git a/css/kivitendo/menu.css b/css/kivitendo/menu.css index ccab8420d..64b7882f5 100644 --- a/css/kivitendo/menu.css +++ b/css/kivitendo/menu.css @@ -175,7 +175,15 @@ li.sub { each line is a mi (menuitem) and has one mii (menu-item-icon) whcih is ms (menu-spacer) and one mic (menu-item-chunk) indenting is done with the levels s0, s1, s2 */ -div.layout-split-left, #html-menu { +#html-menu-container { + position: fixed; + bottom: 0%; + top: 0%; +} + +#html-menu { + overflow-y: scroll; + height: 100%; transition: margin-left 0.2s, width 0.2s; -moz-transition: margin-left 0.2s, width 0.2s; -webkit-transition: margin-left 0.2s, width 0.2s; diff --git a/css/lx-office-erp/menu.css b/css/lx-office-erp/menu.css index 4324647f3..ec7d6f2ff 100644 --- a/css/lx-office-erp/menu.css +++ b/css/lx-office-erp/menu.css @@ -177,8 +177,15 @@ div#menuv3 li li li li:hover ul each line is a mi (menuitem) and has one mii (menu-item-icon) whcih is ms (menu-spacer) and one mic (menu-item-chunk) indenting is done with the levels s0, s1, s2 */ -div.html-menu, #html-menu { +#html-menu-container { position: fixed; + bottom: 0%; + top: 0%; +} + +#html-menu { + overflow-y: scroll; + height: 100%; transition: margin-left 0.2s, width 0.2s; -moz-transition: margin-left 0.2s, width 0.2s; -webkit-transition: margin-left 0.2s, width 0.2s; -- 2.20.1