component-animations.less.svn-base 275 B

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