twbs--bootstrap/scss/_transitions.scss

20 lines
239 B
SCSS
Raw Normal View History

.fade {
@include transition($transition-fade);
2014-12-02 22:02:35 +00:00
&:not(.show) {
opacity: 0;
}
}
.collapse {
&:not(.show) {
display: none;
2016-10-03 04:23:04 +00:00
}
}
.collapsing {
height: 0;
overflow: hidden;
@include transition($transition-collapse);
2012-05-21 00:56:57 +00:00
}