Commit 0ec05da0 authored by Mark Otto's avatar Mark Otto

Undo the collapse visibility changes since it breaks our collapse plugin

parent aa25ce77
......@@ -3178,11 +3178,9 @@ input[type="button"].btn-block {
}
.collapse {
display: none;
visibility: hidden;
}
.collapse.in {
display: block;
visibility: visible;
}
tr.collapse.in {
display: table-row;
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -17,9 +17,8 @@
.collapse {
display: none;
visibility: hidden;
&.in { display: block; visibility: visible; }
&.in { display: block; }
tr&.in { display: table-row; }
tbody&.in { display: table-row-group; }
}
......
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