Skip to content
Snippets Groups Projects
Commit cd710a77 authored by Andy Konwinski's avatar Andy Konwinski
Browse files

Fixes the small gap above the nav menu dropdown boxes and the hoverable

menu items that was causing the dropdowns to go away when the user
moved their mouse down towards them.
parent efc54232
No related branches found
No related tags found
No related merge requests found
......@@ -73,8 +73,13 @@ a:hover code {
* using solution at http://stackoverflow.com/questions/8878033/how-
* to-make-twitter-bootstrap-menu-dropdown-on-hover-rather-than-click
**/
.dropdown-menu {
/* Remove the default 2px top margin which causes a small
gap between the hover trigger area and the popup menu */
margin-top: 0;
}
ul.nav li.dropdown:hover ul.dropdown-menu{
display: block;
display: block;
}
a.menu:after, .dropdown-toggle:after {
content: none;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment