mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-17 19:06:40 +02:00
Fix all submenus expanded recursively in dropdown
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.
This commit is contained in:
@@ -172,7 +172,7 @@
|
|||||||
-moz-border-radius: 0 6px 6px 6px;
|
-moz-border-radius: 0 6px 6px 6px;
|
||||||
border-radius: 0 6px 6px 6px;
|
border-radius: 0 6px 6px 6px;
|
||||||
}
|
}
|
||||||
.dropdown-submenu:hover .dropdown-menu {
|
.dropdown-submenu:hover > .dropdown-menu {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user