diff options
author | raveit65 <[email protected]> | 2015-05-05 22:10:38 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-05-05 22:10:38 +0200 |
commit | 1696994fffd4e4eedfb42a28a9dd4d7581f5a63f (patch) | |
tree | 51f002d3672228e323370ba8c46ae093d44d6767 /desktop-themes/ContrastHighInverse/gtk-3.0 | |
parent | 8ded647f6c1dc223efdace1c656651b1d955506e (diff) | |
download | mate-themes-1696994fffd4e4eedfb42a28a9dd4d7581f5a63f.tar.bz2 mate-themes-1696994fffd4e4eedfb42a28a9dd4d7581f5a63f.tar.xz |
All themes themes GTK3: enable spinner animation to use mate logo with latest commits from mate-icon-theme
Diffstat (limited to 'desktop-themes/ContrastHighInverse/gtk-3.0')
-rw-r--r-- | desktop-themes/ContrastHighInverse/gtk-3.0/gtk-widgets.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/desktop-themes/ContrastHighInverse/gtk-3.0/gtk-widgets.css b/desktop-themes/ContrastHighInverse/gtk-3.0/gtk-widgets.css index 6a079efa..0171b743 100644 --- a/desktop-themes/ContrastHighInverse/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/ContrastHighInverse/gtk-3.0/gtk-widgets.css @@ -301,6 +301,33 @@ GtkLevelBar.vertical { margin: 1px 0; } +/********************* + * Spinner Animation * + *********************/ +/* This is could be CPU-intensive */ + +@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; +} + +.button .spinner:active { + color: @theme_fg_color; +} + /*********** * Buttons * ***********/ |