Skip to content

Instantly share code, notes, and snippets.

@iamnodev
Created June 28, 2012 09:05
Show Gist options
  • Save iamnodev/3010078 to your computer and use it in GitHub Desktop.
Save iamnodev/3010078 to your computer and use it in GitHub Desktop.
Make overflow visible inside bootstrap dropdown
// [...]
// Custom rule to get dropdowns and the like to display outside of the body
// credits: ScottS on stackoverflow
// source: http://stackoverflow.com/questions/10959068/twitter-bootstrap-accordion-and-button-dropdown-overflow-issue
.accordion-body {
&.in {
&:hover {
overflow: visible;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment