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

23 lines
311 B
SCSS
Raw Normal View History

2017-10-02 23:34:56 -04:00
// stylelint-disable selector-no-qualifying-type
.fade {
@include transition($transition-fade);
2014-12-02 17:02:35 -05:00
&:not(.show) {
opacity: 0;
}
}
.collapse {
&:not(.show) {
display: none;
2016-10-03 00:23:04 -04:00
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@include transition($transition-collapse);
2012-05-20 20:56:57 -04:00
}