From 088c607318db7a17d50d72da1ccf28d82c9e4ec7 Mon Sep 17 00:00:00 2001 From: philippm Date: Tue, 21 Aug 2012 22:10:36 +0100 Subject: [PATCH] (less) 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. --- dropdowns.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropdowns.less b/dropdowns.less index e83915dba51d..21a029b435c4 100644 --- a/dropdowns.less +++ b/dropdowns.less @@ -172,7 +172,7 @@ -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; }