2018-12-09 08:21:01 +01:00
|
|
|
.fade {
|
|
|
|
@include transition($transition-fade);
|
|
|
|
|
2020-08-23 12:01:06 +02:00
|
|
|
&:not(.show) {
|
|
|
|
opacity: 0;
|
2018-12-09 08:21:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse {
|
2020-08-23 12:01:06 +02:00
|
|
|
&:not(.show) {
|
|
|
|
display: none;
|
2018-12-09 08:21:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsing {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
@include transition($transition-collapse);
|
|
|
|
}
|