]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - themes/default/less/component-animations.less
Release 6.5.3
[Github/sugarcrm.git] / themes / default / less / component-animations.less
1 // COMPONENT ANIMATIONS
2 // --------------------
3
4 .fade {
5   .transition(opacity .15s linear);
6   opacity: 0;
7   &.in {
8     opacity: 1;
9   }
10 }
11
12 .collapse {
13   .transition(height .35s ease);
14   position:relative;
15   overflow:hidden;
16   height: 0;
17   &.in { height: auto; }
18 }