bootstrap/scss/_transitions.scss

20 lines
239 B
SCSS
Raw Normal View History

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