Reduce the max height of submenus to avoid them extending below the screen bottom edge when used from the top navbar (which won't scroll). The new value works on 1024x768 screens for the current areas.

- Legacy-Id: 9583
This commit is contained in:
Henrik Levkowetz 2015-04-27 19:39:16 +00:00
parent 374e77ba2c
commit 5a0d34020e

View file

@ -58,7 +58,7 @@ body { padding-top: 70px; }
/* See http://eichefam.net/2012/04/12/scrollable-menus-in-bootstrap/ */ /* See http://eichefam.net/2012/04/12/scrollable-menus-in-bootstrap/ */
.dropdown-submenu:hover > .dropdown-menu { .dropdown-submenu:hover > .dropdown-menu {
height: auto; height: auto;
max-height: 650px; max-height: 500px;
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
} }