twbs--bootstrap/scss/_animation.scss

43 lines
529 B
SCSS
Raw Normal View History

.fade {
2012-05-21 00:56:57 +00:00
opacity: 0;
@if $enable-transitions {
transition: opacity .15s linear;
}
2014-12-02 22:02:35 +00:00
2016-10-26 23:24:46 +00:00
&.active {
2012-05-21 00:56:57 +00:00
opacity: 1;
}
}
.collapse {
display: none;
2016-10-26 23:24:46 +00:00
&.active {
2014-12-02 22:02:35 +00:00
display: block;
}
2016-10-03 04:23:04 +00:00
}
tr {
2016-10-26 23:24:46 +00:00
&.collapse.active {
2016-10-03 04:23:04 +00:00
display: table-row;
}
}
tbody {
2016-10-26 23:24:46 +00:00
&.collapse.active {
2016-10-03 04:23:04 +00:00
display: table-row-group;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@if $enable-transitions {
transition-timing-function: ease;
transition-duration: .35s;
transition-property: height;
}
2012-05-21 00:56:57 +00:00
}