Skip to content

Commit

Permalink
fix overflow on .collapse.in to enable dropdowns within an open collapse
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Mar 12, 2012
1 parent ac7f571 commit 0090fa1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Binary file modified docs/assets/bootstrap.zip
Binary file not shown.
1 change: 1 addition & 0 deletions docs/assets/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -1928,6 +1928,7 @@ table .span24 {
}
.collapse.in {
height: auto;
overflow: visible;
}
.close {
float: right;
Expand Down
5 changes: 4 additions & 1 deletion less/component-animations.less
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@
position:relative;
overflow:hidden;
height: 0;
&.in { height: auto; }
&.in {
height: auto;
overflow: visible;
}
}

0 comments on commit 0090fa1

Please sign in to comment.