diff options
author | raveit65 <[email protected]> | 2015-02-17 22:27:21 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-02-17 22:27:21 +0100 |
commit | cc1522c9c6157fda1121ee65e74ed9a243d4da64 (patch) | |
tree | 69184903c7f7b5ceb68159a6336016d277bf7569 /desktop-themes/Menta/gtk-3.0 | |
parent | 6a061d818b9f1e9fa13524c05b5e6f4e37547d13 (diff) | |
download | mate-themes-cc1522c9c6157fda1121ee65e74ed9a243d4da64.tar.bz2 mate-themes-cc1522c9c6157fda1121ee65e74ed9a243d4da64.tar.xz |
GTK3: disable spinner animation to avoid high cpu load
Diffstat (limited to 'desktop-themes/Menta/gtk-3.0')
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index 71edd757..d61d1367 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -158,9 +158,16 @@ GtkTextView { /********************* * Spinner Animation * *********************/ +/* This is CPU-intensive, no animation */ +/* @keyframes spin { - to { -gtk-icon-transform: rotate(1turn); } } + to { -gtk-icon-transform: rotate(1turn); } +} +*/ +@keyframes spin { + to { -gtk-icon-transform: rotate(0turn); } +} .spinner { background-image: none; background-color: blue; |