aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/_animation.scss15
1 files changed, 12 insertions, 3 deletions
diff --git a/scss/_animation.scss b/scss/_animation.scss
index edd7147e5..f0dfff81f 100644
--- a/scss/_animation.scss
+++ b/scss/_animation.scss
@@ -9,12 +9,21 @@
.collapse {
display: none;
-
&.in {
display: block;
}
- // tr&.in { display: table-row; }
- // tbody&.in { display: table-row-group; }
+}
+
+tr {
+ &.collapse.in {
+ display: table-row;
+ }
+}
+
+tbody {
+ &.collapse.in {
+ display: table-row-group;
+ }
}
.collapsing {