You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With 2.0.3, the dropdowns.less at line 101 file specifies:
.open {
// IE7's z-index only goes to the nearest positioned ancestor, which would
// make the menu appear below buttons that appeared later on the page
*z-index:@zindexDropdown;
.dropdown-menu {
display: block;
}
}
Which makes any dropdown with a parent .open, open as default.
Changing 106 to:
> .dropdown-menu {
forces it so only direct child drop-downs are open.
The text was updated successfully, but these errors were encountered:
With 2.0.3, the dropdowns.less at line 101 file specifies:
Which makes any dropdown with a parent .open, open as default.
Changing 106 to:
forces it so only direct child drop-downs are open.
The text was updated successfully, but these errors were encountered: