0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/scss/_transitions.scss

21 lines
261 B
SCSS
Raw Normal View History

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