From 0090fa1a6ec429958fad8f74974bd03e99bbf55e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Mar 2012 22:43:35 -0700 Subject: fix overflow on .collapse.in to enable dropdowns within an open collapse --- docs/assets/bootstrap.zip | Bin 55416 -> 55418 bytes docs/assets/css/bootstrap.css | 1 + less/component-animations.less | 5 ++++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 1b149b002..5a1c83132 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index b1490bae8..16fef5042 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1928,6 +1928,7 @@ table .span24 { } .collapse.in { height: auto; + overflow: visible; } .close { float: right; 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; + } } -- cgit v1.2.3