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

22 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;
}