diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-02-06 20:13:13 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-06 20:13:13 +0100 |
commit | 0c86327706e4f8e8a56f11b618808238dc178c3c (patch) | |
tree | 06a6f828ddd9532ea8e9161a20c92fa33d32dd63 | |
parent | f6b830e5565427ded9a326608070f6952d6a0e7a (diff) | |
download | mate-themes-0c86327706e4f8e8a56f11b618808238dc178c3c.tar.bz2 mate-themes-0c86327706e4f8e8a56f11b618808238dc178c3c.tar.xz |
GTK+-3.20 BlueMenta: fix spinner animation
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css index 45bd18b0..98b8ec27 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css @@ -171,28 +171,22 @@ tooltip * { spinner, .spinner { - background-image: none; - background-color: blue; + background: none; opacity: 0; -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } -spinner:active, -.spinner:active { +spinner:checked, +.spinner:checked { opacity: 1; animation: spin 1s linear infinite; } -spinner:active:disabled, -.spinner:active:disabled { +spinner:checked:disabled, +.spinner:checked:disabled { opacity: 0.5; } -button spinner:active, -.button .spinner:active { - color: @theme_fg_color; -} - /***************** * Miscellaneous * *****************/ |