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

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

parent ac7f571e
Showing with 5 additions and 1 deletion
+5 -1
No preview for this file type
......@@ -1928,6 +1928,7 @@ table .span24 {
}
.collapse.in {
height: auto;
overflow: visible;
}
.close {
float: right;
......
......@@ -14,5 +14,8 @@
position:relative;
overflow:hidden;
height: 0;
&.in { height: auto; }
&.in {
height: auto;
overflow: visible;
}
}
Supports Markdown
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