2016-10-12 00:08:24 +00:00
|
|
|
/**
|
|
|
|
* Project animations
|
|
|
|
**/
|
|
|
|
|
|
|
|
/**
|
2016-10-25 11:55:43 +00:00
|
|
|
* Slide in animation for extended toolbar (inner) panel.
|
2016-10-12 00:08:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// FIX: Can't use percentage because of breaking animation when width is changed
|
|
|
|
// (100% of 0 is also zero) Extracted this to config variable.
|
|
|
|
@include keyframes(slideInExt) {
|
|
|
|
from { left: -$sidebarWidth; }
|
|
|
|
to { left: 0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@include keyframes(slideOutExt) {
|
|
|
|
from { left: 0; }
|
|
|
|
to { left: -$sidebarWidth; }
|
|
|
|
}
|