搜索 | 用户支持

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

Learn More

How do I get rid of this gawd awful bouncing ball on my tabs?

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

more options

While I am waiting for a new tab to open or doing a search or download, the spinning arrow has been replaced by a horizontal bouncing ball. It is very very very annoying. How do I either get the spinner back, replace the bouncing ball with something else, or just delete the bouncing ball?

While I am waiting for a new tab to open or doing a search or download, the spinning arrow has been replaced by a horizontal bouncing ball. It is very very very annoying. How do I either get the spinner back, replace the bouncing ball with something else, or just delete the bouncing ball?

所有回复 (1)

more options

Our very own jscher2000 created this style rule to revert the tab throbber back to the old blue loading circle. You need to create a userChrome.css file in your profile folder to achieve this then copy / paste the below code into it, restart Firefox. Instructions on how to create that file is linked below

If you cannot follow the above instruction, please see the follow reply by jscher2000 in one of the previous threads on this issue on how to go about getting this done

/* Revert tab throbber - for Nightly 57 as of 9/20/2017 */ .tab-throbber[busy]::before { background-image: url("chrome://global/skin/icons/loading.png") !important; animation: unset !important; } .tab-throbber[busy]:not([progress])::before { /* Grays the blue during "Connecting" state */ filter: grayscale(100%); } @media (min-resolution: 2dppx) { .tab-throbber[busy]::before { background-image: url("chrome://global/skin/icons/loading@2x.png") !important; } }

由cor-el于修改