diff options
author | raveit65 <[email protected]> | 2016-02-29 17:25:56 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-02-29 17:25:56 +0100 |
commit | 7bb738729f9df6317e214c05e21f0e81d1fa4398 (patch) | |
tree | 5355301521a6b487df6e18c9a68b42047ef577cb /desktop-themes | |
parent | 8bd9591fdd6c5025b965bb9f25556e82436d2c60 (diff) | |
download | mate-themes-7bb738729f9df6317e214c05e21f0e81d1fa4398.tar.bz2 mate-themes-7bb738729f9df6317e214c05e21f0e81d1fa4398.tar.xz |
GTK+-3.20 TraditionalOK: fix bg color of spinner animation
Diffstat (limited to 'desktop-themes')
-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; } |