Skip to content

Instantly share code, notes, and snippets.

@lukebussey
Created December 5, 2014 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukebussey/7e74d2f89fecc4daf50d to your computer and use it in GitHub Desktop.
Save lukebussey/7e74d2f89fecc4daf50d to your computer and use it in GitHub Desktop.
Dropdown Transitions for Bootstrap 3
.open > .dropdown-menu {
opacity: 1;
visibility: visible;
}
.dropdown-menu {
display: block;
opacity: 0;
transition: visibility 0.2s ease,
opacity 0.2s ease;
visibility: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment