aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Viteri <[email protected]>2016-10-02 23:23:04 -0500
committerMark Otto <[email protected]>2016-10-02 21:23:04 -0700
commit860e07a0e968849dd98ac5dcd2a672ce8258162c (patch)
treed39cc0d86f555a2269811cd7a34145e90e0a96d6
parent88c601a842621b2bbb6ce610267ee724a9536de2 (diff)
downloadbootstrap-860e07a0e968849dd98ac5dcd2a672ce8258162c.tar.xz
bootstrap-860e07a0e968849dd98ac5dcd2a672ce8258162c.zip
Fixes #20566 (#20768)
-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 {