0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/scss/_transitions.scss

23 lines
311 B
SCSS
Raw Normal View History

2017-10-03 05:34:56 +02:00
// stylelint-disable selector-no-qualifying-type
.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
}