Move widgets to separate folder

This commit is contained in:
Satyajit Sahoo
2014-12-20 01:14:22 +05:30
parent aab802efc3
commit 585d4e491d
20 changed files with 23 additions and 84 deletions
+24
View File
@@ -0,0 +1,24 @@
/*******************
! Spinner animation
********************/
@include exports("spinner") {
@keyframes spin {
to { -gtk-icon-transform: rotate(1turn); }
}
.spinner {
background-image: none;
background-color: $selected_bg_color;
opacity: 0; // non spinning spinner makes no sense
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
&:active {
opacity: 1;
animation: spin 1s linear infinite;
&:insensitive { opacity: 0.5; }
}
}
}