This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
Salt ae651057fd Moved between oomox themes
This one's based on Numix, which should look a lot better.
2017-08-10 02:31:57 -05:00

25 lines
538 B
SCSS

/*******************
! Spinner animation
********************/
@include exports("spinner") {
@keyframes spin {
to { -gtk-icon-transform: rotate(1turn); }
}
spinner {
background-image: none;
color: $selected_bg_color;
opacity: 0; // non spinning spinner makes no sense
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
&:checked {
opacity: 1;
animation: spin 1s linear infinite;
&:disabled { opacity: .5; }
}
}
}