]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix all submenus expanded recursively in dropdown 4534/head
authorphilippm <philipp@incrediblebee.com>
Tue, 21 Aug 2012 21:10:36 +0000 (22:10 +0100)
committerphilippm <philipp@incrediblebee.com>
Tue, 21 Aug 2012 21:10:36 +0000 (22:10 +0100)
The problem was that the CSS selector made *all* of a submenu's nested
menus visible. Fixed by applying the selector to the immediate nested
menu only.

less/dropdowns.less

index e83915dba51d47e24e5055e03058a8dd6cfcdf62..21a029b435c424b23ff133199c8dfae9e9ebe576 100644 (file)
      -moz-border-radius: 0 6px 6px 6px;
           border-radius: 0 6px 6px 6px;
 }
-.dropdown-submenu:hover .dropdown-menu {
+.dropdown-submenu:hover .dropdown-menu {
   display: block;
 }