]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix overflow on .collapse.in to enable dropdowns within an open collapse
authorMark Otto <markotto@twitter.com>
Mon, 12 Mar 2012 05:43:35 +0000 (22:43 -0700)
committerMark Otto <markotto@twitter.com>
Mon, 12 Mar 2012 05:43:35 +0000 (22:43 -0700)
docs/assets/bootstrap.zip
docs/assets/css/bootstrap.css
less/component-animations.less

index 1b149b0021e76655e7992f140e547d0afc83d3f1..5a1c8313250bf6454bd1811b0fd5fea884de8613 100644 (file)
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
index b1490bae85ce25b0119af169cc75e8ebdca88818..16fef5042eb0d86687c2e2ef6f813ac17afbe877 100644 (file)
@@ -1928,6 +1928,7 @@ table .span24 {
 }
 .collapse.in {
   height: auto;
+  overflow: visible;
 }
 .close {
   float: right;
index 4f2a4fd1185043ea309d4a81a9e389859a11bd17..edfaef301f8c8a341a39854c59e8fadcc9c793eb 100644 (file)
@@ -14,5 +14,8 @@
   position:relative;
   overflow:hidden;
   height: 0;
-  &.in { height: auto; }
+  &.in {
+    height: auto;
+    overflow: visible;
+  }
 }