Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_animations.scss 429B

12345678910111213141516171819
  1. /**
  2. * Project animations
  3. **/
  4. /**
  5. * Slide in animation for extended toolbar (inner) panel.
  6. */
  7. // FIX: Can't use percentage because of breaking animation when width is changed
  8. // (100% of 0 is also zero) Extracted this to config variable.
  9. @include keyframes(slideInExt) {
  10. from { left: -$sidebarWidth; }
  11. to { left: 0; }
  12. }
  13. @include keyframes(slideOutExt) {
  14. from { left: 0; }
  15. to { left: -$sidebarWidth; }
  16. }