16 lines
277 B
CSS
16 lines
277 B
CSS
|
|
/***********
|
|
* spinner *
|
|
***********/
|
|
|
|
|
|
@keyframes spinner {
|
|
to { -gtk-icon-transform: rotate(1turn); }
|
|
}
|
|
|
|
spinner {
|
|
background: none;
|
|
-gtk-icon-source: -gtk-icontheme('process-working-symbolic');
|
|
color: @selected_bg_color;
|
|
animation: spinner 1s linear infinite;
|
|
} |