component-animations.less 264 B

123456789101112131415161718
  1. // COMPONENT ANIMATIONS
  2. // --------------------
  3. .fade {
  4. .transition(opacity .15s linear);
  5. opacity: 0;
  6. &.in {
  7. opacity: 1;
  8. }
  9. }
  10. .collapse {
  11. .transition(height .35s ease);
  12. position:relative;
  13. overflow:hidden;
  14. height: 0;
  15. &.in { height: auto; }
  16. }