Commit 0090fa1a authored by Mark Otto's avatar Mark Otto

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

parent ac7f571e
...@@ -1928,6 +1928,7 @@ table .span24 { ...@@ -1928,6 +1928,7 @@ table .span24 {
} }
.collapse.in { .collapse.in {
height: auto; height: auto;
overflow: visible;
} }
.close { .close {
float: right; float: right;
......
...@@ -14,5 +14,8 @@ ...@@ -14,5 +14,8 @@
position:relative; position:relative;
overflow:hidden; overflow:hidden;
height: 0; height: 0;
&.in { height: auto; } &.in {
height: auto;
overflow: visible;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment