0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-03-15 15:29:22 +01:00

Merge branch 'v4-dev' of github.com:twbs/bootstrap into v4-dev

This commit is contained in:
Mark Otto 2016-10-26 21:16:06 -07:00
commit 7aab3d9573

View File

@ -2,26 +2,26 @@
opacity: 0; opacity: 0;
transition: opacity .15s linear; transition: opacity .15s linear;
&.in { &.active {
opacity: 1; opacity: 1;
} }
} }
.collapse { .collapse {
display: none; display: none;
&.in { &.active {
display: block; display: block;
} }
} }
tr { tr {
&.collapse.in { &.collapse.active {
display: table-row; display: table-row;
} }
} }
tbody { tbody {
&.collapse.in { &.collapse.active {
display: table-row-group; display: table-row-group;
} }
} }