From 5a0d34020ecf56bda7709508978c0071ad97d551 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 27 Apr 2015 19:39:16 +0000 Subject: [PATCH] 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 --- static/css/ietf.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/ietf.css b/static/css/ietf.css index be6b4c09e..08852b0cf 100644 --- a/static/css/ietf.css +++ b/static/css/ietf.css @@ -58,7 +58,7 @@ body { padding-top: 70px; } /* See http://eichefam.net/2012/04/12/scrollable-menus-in-bootstrap/ */ .dropdown-submenu:hover > .dropdown-menu { height: auto; - max-height: 650px; + max-height: 500px; overflow-x: hidden; overflow-y: auto; }