22 lines
355 B
CSS
Executable File
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;
|
|
}
|