0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-01-31 04:22:40 +00:00
salesagility_SuiteCRM/themes/default/less/component-animations.less
2013-09-23 20:30:44 +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; }
}