Skip to content

Instantly share code, notes, and snippets.

@kaveet
Created November 12, 2016 15:35
Show Gist options
  • Save kaveet/9314fbb7849cf08e00997658b0019cb6 to your computer and use it in GitHub Desktop.
Save kaveet/9314fbb7849cf08e00997658b0019cb6 to your computer and use it in GitHub Desktop.
Dropdown on hover for Angular UI Bootstrap
/*
Display a dropdown menu on hover rather than on click. Useful for navigation menus.
Tested with angular-ui-bootstrap@2.2.0
*/
.dropdown:hover .dropdown-menu {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment