diff options
author | raveit65 <[email protected]> | 2016-02-29 17:25:56 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-02-29 17:26:40 +0100 |
commit | e1fb1e109f95253ccf3cc652d359076d78a5d2a7 (patch) | |
tree | 7cddd3a2e3c6d8def46557f84752b5d1b01d19e7 /desktop-themes/TraditionalOk/gtk-3.0 | |
parent | 6d2f607f311599d7cd38864fb938c5213369daf5 (diff) | |
download | mate-themes-e1fb1e109f95253ccf3cc652d359076d78a5d2a7.tar.bz2 mate-themes-e1fb1e109f95253ccf3cc652d359076d78a5d2a7.tar.xz |
GTK+-3.20 TraditionalOK: fix bg color of spinner animation
Diffstat (limited to 'desktop-themes/TraditionalOk/gtk-3.0')
-rw-r--r-- | desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css index 7b28a4d2..659381e5 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -103,14 +103,16 @@ tooltip * { spinner { background: none; - background-color: blue; + background-color: transparent; opacity: 0; -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } spinner:checked { opacity: 1; - animation: spin 1s linear infinite; } + animation: spin 1s linear infinite; +} + spinner:active:disabled { opacity: 0.5; } |