This repository has been archived on 2024-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-07 18:44:37 +00:00

28 lines
484 B
SCSS

/***********
* Spinner *
***********/
menu spinner {
color: $selected_bg_color;
}
/*********************
* Spinner Animation *
*********************/
@keyframes spin {
to { -gtk-icon-transform: rotate(1turn); }
}
spinner {
background: none;
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: 0.5; }
}
}