選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_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. }