0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-22 19:54:22 +01:00
Bootstrap/scss/_transitions.scss

32 lines
500 B
SCSS
Raw Permalink Normal View History

2025-02-18 09:50:10 -08:00
@use "config" as *;
2025-02-18 13:37:25 -08:00
@use "variables" as *;
@use "mixins/transition" as *;
2025-02-18 09:50:10 -08:00
.fade {
@include transition($transition-fade);
2014-12-02 14:02:35 -08:00
&:not(.show) {
opacity: 0;
}
}
// scss-docs-start collapse-classes
.collapse {
&:not(.show) {
display: none;
2016-10-02 23:23:04 -05:00
}
}
.collapsing {
height: 0;
overflow: hidden;
@include transition($transition-collapse);
2021-06-14 23:25:11 +03:00
&.collapse-horizontal {
width: 0;
height: auto;
@include transition($transition-collapse-width);
}
2012-05-21 02:56:57 +02:00
}
// scss-docs-end collapse-classes