From: Sven Schöling Date: Mon, 20 Mar 2017 12:44:31 +0000 (+0100) Subject: ActionBar: Scrolling von ausgeklapptem HTML Menü gefixt X-Git-Tag: release-3.5.4~1203 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=bfef134e5924a2272f3b97efd35f405a82a55efb;p=kivitendo-erp.git ActionBar: Scrolling von ausgeklapptem HTML Menü gefixt --- 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;