1// 2// Spinner 3// 4 5@if $maj_ver != xfce { 6 @keyframes spinner { 7 to { -gtk-icon-transform: rotate(1turn); } 8 } 9} 10 11// 12// Needs-attention 13// 14 15@if $maj_ver != xfce { 16 @keyframes needs_attention { 17 from { background-size: 0 0; } 18 to { background-size: $attention; } 19 } 20} 21 22// 23// Ink reactions 24// 25 26@keyframes ink-std { 27 to { background-size: 800% 800%; } 28} 29 30@keyframes ink-dec { 31 to { background-size: 1000% 1000%; } 32} 33 34// 35// Scrollbars 36// 37 38@if $maj_ver != xfce { 39 @keyframes slow_down_vert { 40 from {min-width: $slider_min_width / 2; } 41 to { min-width: $slider_min_width; } 42 } 43 44 @keyframes slow_down_horz { 45 from {min-height: $slider_min_width / 2; } 46 to { min-height: $slider_min_width; } 47 } 48} 49