1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/scss/_animation.scss

37 lines
411 B
SCSS
Raw Normal View History

.fade {
2012-05-20 20:56:57 -04:00
opacity: 0;
@include transition(opacity .15s linear);
2014-12-02 17:02:35 -05:00
2016-10-26 19:24:46 -04:00
&.active {
2012-05-20 20:56:57 -04:00
opacity: 1;
}
}
.collapse {
display: none;
2016-10-26 19:24:46 -04:00
&.active {
2014-12-02 17:02:35 -05:00
display: block;
}
2016-10-03 00:23:04 -04:00
}
tr {
2016-10-26 19:24:46 -04:00
&.collapse.active {
2016-10-03 00:23:04 -04:00
display: table-row;
}
}
tbody {
2016-10-26 19:24:46 -04:00
&.collapse.active {
2016-10-03 00:23:04 -04:00
display: table-row-group;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@include transition(height .35s ease);
2012-05-20 20:56:57 -04:00
}