Skip to content

Commit 0090fa1

Browse files
committed
fix overflow on .collapse.in to enable dropdowns within an open collapse
1 parent ac7f571 commit 0090fa1

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

docs/assets/bootstrap.zip

2 Bytes
Binary file not shown.

docs/assets/css/bootstrap.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1928,6 +1928,7 @@ table .span24 {
19281928
}
19291929
.collapse.in {
19301930
height: auto;
1931+
overflow: visible;
19311932
}
19321933
.close {
19331934
float: right;

less/component-animations.less

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@
1414
position:relative;
1515
overflow:hidden;
1616
height: 0;
17-
&.in { height: auto; }
17+
&.in {
18+
height: auto;
19+
overflow: visible;
20+
}
1821
}

0 commit comments

Comments
 (0)