You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
425 B
27 lines
425 B
.fade {
|
|
@include transition($transition-fade);
|
|
|
|
&:not(.show) {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
// scss-docs-start collapse-classes
|
|
.collapse {
|
|
&:not(.show) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.collapsing {
|
|
height: 0;
|
|
overflow: hidden;
|
|
@include transition($transition-collapse);
|
|
|
|
&.collapse-horizontal {
|
|
width: 0;
|
|
height: auto;
|
|
@include transition($transition-collapse-width);
|
|
}
|
|
}
|
|
// scss-docs-end collapse-classes
|