GNOME Bugzilla – Bug 732484
HighContrast: giant non-moving spinner
Last modified: 2014-08-04 12:52:24 UTC
The spinner is giant. This needs to use the same scale-limiting technology that Adwaita has now.
We can just switch to using @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; } once we use Adwaita icons for HighContrast.
This has been addressed in master.