/media/com_bootstrap/less/component-animations.less

https://bitbucket.org/organicdevelopment/com_bootstrap · LESS · 22 lines · 16 code · 3 blank · 3 comment · 0 complexity · 187f9da4ce323b12c0a84ffa2d736f6c MD5 · raw file

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