Skip to content
Snippets Groups Projects
Commit 635348b1 authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Merge pull request #220 from andyk/doc

One commit that makes nav dropdowns show on hover
parents aa50d5b9 098351b7
No related branches found
No related tags found
No related merge requests found
......@@ -41,3 +41,16 @@ code {
.container {
max-width: 914px;
}
/**
* Make dropdown menus in nav bars show on hover instead of click
* using solution at http://stackoverflow.com/questions/8878033/how-
* to-make-twitter-bootstrap-menu-dropdown-on-hover-rather-than-click
**/
ul.nav li.dropdown:hover ul.dropdown-menu{
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