Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How to change Loading Spinner ?

  • 2 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 3 views
  • Last reply by cor-el

Hi guys

Is there way to change loading spinner for FF version 37 using userChome.css ?

Here are some nice CSS loading spinner.

http://stephanwagner.me/only-css-loading-spinner

Thanks !

Hi guys Is there way to change loading spinner for FF version 37 using userChome.css ? Here are some nice CSS loading spinner. http://stephanwagner.me/only-css-loading-spinner Thanks !

All Replies (2)

AFAIK its the operating system that manages this. But maybe refer to here: http://forums.mozillazine.org/viewtopic.php?f=38&t=2120681&p=10488...

  • XUL and extensions can use css to be customized, it just might be tricky finding how to set it up. Check out MDN for more technical documentation.

See also:

  • chrome://browser/skin/browser.css
.tab-throbber[busy] {
  list-style-image: url("chrome://browser/skin/tabbrowser/connecting.png");
}

.tab-throbber[progress] {
  list-style-image: url("chrome://browser/skin/tabbrowser/loading.png");
}