2014-11-23 22:36:45 +05:30
|
|
|
/*******************
|
|
|
|
|
! Spinner animation
|
|
|
|
|
********************/
|
|
|
|
|
|
2014-12-09 01:05:19 +05:30
|
|
|
@include exports("spinner") {
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
to { -gtk-icon-transform: rotate(1turn); }
|
|
|
|
|
}
|
2014-11-23 22:36:45 +05:30
|
|
|
|
2014-12-09 01:05:19 +05:30
|
|
|
.spinner {
|
|
|
|
|
background-image: none;
|
|
|
|
|
background-color: $selected_bg_color;
|
|
|
|
|
opacity: 0; // non spinning spinner makes no sense
|
2014-11-23 22:36:45 +05:30
|
|
|
|
2014-12-09 01:05:19 +05:30
|
|
|
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
|
2014-11-23 22:36:45 +05:30
|
|
|
|
2014-12-09 01:05:19 +05:30
|
|
|
&:active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
animation: spin 1s linear infinite;
|
2014-11-23 22:36:45 +05:30
|
|
|
|
2014-12-09 01:05:19 +05:30
|
|
|
&:insensitive { opacity: 0.5; }
|
|
|
|
|
}
|
2014-11-23 22:36:45 +05:30
|
|
|
}
|
|
|
|
|
}
|