Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Can activity button be enlarged, colorized?

  • 7 个回答
  • 2 人有此问题
  • 1 次查看
  • 最后回复者为 cloverman

more options

Looking for a way to enlarge the activity button and give it color, so that it is more visible.

Looking for a way to enlarge the activity button and give it color, so that it is more visible.

所有回复 (7)

more options

I'm not sure what the activity button is. Is this on a particular website, or on a toolbar? It might help to post a screen shot showing what you mean. This article has some tips on doing that: How do I create a screenshot of my problem?

more options

It's the little wheel that spins when a web page is being loaded. I thought this was standard on the FF toolbar. In any event, see the attached png image. It shows the wheel to the right of my Home button.

more options

Do you mean the throbber (spinning icon on the tab bar or the one in the toolbar palette that you can put on a toolbar) that shows that Firefox hasn't finished to load the current web page?

more options

Our last replies have crossed.

I see that you indeed mean the throbber and that you use the one from the customize window.

Easiest would be to check if there is a theme that has a icon that suites your needs and use that instead for this image via code in userChrome.css


  • chrome://browser/skin/browser.css
#navigator-throbber[busy="true"] {
  list-style-image: url("chrome://global/skin/icons/loading_16.png");
}

#navigator-throbber,
#wrapper-navigator-throbber > #navigator-throbber {
  list-style-image: url("chrome://global/skin/icons/notloading_16.png");
}
more options

I don't like any of the themes, as they add too much to the screen, and sorry, but I don't understand the rest of your answer: "...instead for this image via code in userChrome.css ".

more options

You can open the chrome://browser/skin/browser.css file in a Firefox tab to see the current CSS rules that are used for the throbber. You can substitutes those image with other images and use new CSS rules.

Firefox allows to make customization changes to the user interface by placing rules in the userChrome.css file in the chrome folder in the Firefox profile folder.
You can place the images in that same chrome folder.


Add code to the userChrome.css file below the default @namespace line.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#navigator-throbber[busy="true"] {
  list-style-image: url("<new throbber busy spinning icon>") !important;
}

#navigator-throbber,
#wrapper-navigator-throbber > #navigator-throbber {
  list-style-image: url("<new throbber static icon>") !important;
}

See also:

more options

I found a much easier solution, for me. I installed an Add-on called Progress Meter. It does the same thing as throbber and is more visible. I never feel comfortable editing code.

Many thanks for your help. I appreciate the time you took.

Cloverman