After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 732484 - HighContrast: giant non-moving spinner
HighContrast: giant non-moving spinner
Status: RESOLVED FIXED
Product: gnome-themes-standard
Classification: Core
Component: HighContrast
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gnome-themes-standard-maint
gnome-themes-standard-maint
Depends on: 732521
Blocks:
 
 
Reported: 2014-06-30 14:34 UTC by Matthias Clasen
Modified: 2014-08-04 12:52 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Matthias Clasen 2014-06-30 14:34:18 UTC
The spinner is giant. This needs to use the same scale-limiting technology that Adwaita has now.
Comment 1 Matthias Clasen 2014-06-30 21:31:05 UTC
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.
Comment 2 Jakub Steiner 2014-08-04 12:52:24 UTC
This has been addressed in master.