Files
documentation/extensions/odoo_theme/static/scss/bootstrap_scss/_transitions.scss
T

20 lines
239 B
SCSS
Raw Normal View History

2021-04-30 12:40:29 +02:00
.fade {
@include transition($transition-fade);
&:not(.show) {
opacity: 0;
}
}
.collapse {
&:not(.show) {
display: none;
}
}
.collapsing {
height: 0;
overflow: hidden;
@include transition($transition-collapse);
}