fix overflow on .collapse.in to enable dropdowns within an open collapse

This commit is contained in:
Mark Otto 2012-03-11 22:43:35 -07:00
parent ac7f571e53
commit 0090fa1a6e
3 changed files with 5 additions and 1 deletions

Binary file not shown.

View File

@ -1928,6 +1928,7 @@ table .span24 {
} }
.collapse.in { .collapse.in {
height: auto; height: auto;
overflow: visible;
} }
.close { .close {
float: right; float: right;

View File

@ -14,5 +14,8 @@
position:relative; position:relative;
overflow:hidden; overflow:hidden;
height: 0; height: 0;
&.in { height: auto; } &.in {
height: auto;
overflow: visible;
}
} }