Moved between oomox themes

This one's based on Numix, which should look a lot better.
This commit is contained in:
2017-08-10 02:31:57 -05:00
parent 72f490816e
commit ae651057fd
315 changed files with 3751 additions and 2682 deletions

View File

@@ -0,0 +1,24 @@
/*******************
! Spinner animation
********************/
@include exports("spinner") {
@keyframes spin {
to { -gtk-icon-transform: rotate(1turn); }
}
spinner {
background-image: none;
color: $selected_bg_color;
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: .5; }
}
}
}