SuiteCRM-Core/public/legacy/themes/default/less/component-animations.less
2021-03-31 15:37:32 +01:00

18 lines
264 B
Text
Executable file

// COMPONENT ANIMATIONS
// --------------------
.fade {
.transition(opacity .15s linear);
opacity: 0;
&.in {
opacity: 1;
}
}
.collapse {
.transition(height .35s ease);
position:relative;
overflow:hidden;
height: 0;
&.in { height: auto; }
}