aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-03-11 22:43:35 -0700
committerMark Otto <[email protected]>2012-03-11 22:43:35 -0700
commit0090fa1a6ec429958fad8f74974bd03e99bbf55e (patch)
treead5900d9a474b9e9f83a2f0e938034490d2549fb /less
parentac7f571e536f4a6d5ee28fba50810d84e4dc1403 (diff)
downloadbootstrap-0090fa1a6ec429958fad8f74974bd03e99bbf55e.tar.xz
bootstrap-0090fa1a6ec429958fad8f74974bd03e99bbf55e.zip
fix overflow on .collapse.in to enable dropdowns within an open collapse
Diffstat (limited to 'less')
-rw-r--r--less/component-animations.less5
1 files changed, 4 insertions, 1 deletions
diff --git a/less/component-animations.less b/less/component-animations.less
index 4f2a4fd11..edfaef301 100644
--- a/less/component-animations.less
+++ b/less/component-animations.less
@@ -14,5 +14,8 @@
position:relative;
overflow:hidden;
height: 0;
- &.in { height: auto; }
+ &.in {
+ height: auto;
+ overflow: visible;
+ }
}