twbs--bootstrap/scss/_animation.scss

37 lines
411 B
SCSS

.fade {
opacity: 0;
@include transition(opacity .15s linear);
&.active {
opacity: 1;
}
}
.collapse {
display: none;
&.active {
display: block;
}
}
tr {
&.collapse.active {
display: table-row;
}
}
tbody {
&.collapse.active {
display: table-row-group;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@include transition(height .35s ease);
}