luca-awesome-dotfiles/themes/gtk/Dracula/gtk-3.0/widgets/spinner.css
2023-02-05 05:02:49 +01:00

21 lines
355 B
CSS
Executable file

@keyframes spin {
to {
-gtk-icon-transform: rotate(1turn);
}
}
.spinner {
background-image: none;
background-color: blue;
opacity: 0;
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
}
.spinner:active {
opacity: 1;
animation: spin 1s linear infinite;
}
.spinner:active:insensitive {
opacity: 0.5;
}