From 860e07a0e968849dd98ac5dcd2a672ce8258162c Mon Sep 17 00:00:00 2001 From: Matt Viteri Date: Sun, 2 Oct 2016 23:23:04 -0500 Subject: [PATCH] Fixes #20566 (#20768) --- scss/_animation.scss | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/scss/_animation.scss b/scss/_animation.scss index edd7147e51..f0dfff81fe 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 {