搜索 | 用户支持

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

详细了解

How do I disable the App Tabs' blue glow feature?

  • 10 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 Marcoli

more options

I like having Gmail and Facebook pinned as App Tabs, but I am trying to restrict the number of times I check them in order to increase my work productivity. How can I disable the "blue glow" feature so that I am not constantly distracted while working?

I like having Gmail and Facebook pinned as App Tabs, but I am trying to restrict the number of times I check them in order to increase my work productivity. How can I disable the "blue glow" feature so that I am not constantly distracted while working?

被采纳的解决方案

hello, a workaround might be the experimental "suspend background tabs" extension - it will restrict the updating of any but the active tab & therefore may reduce/remove the glowing indicator on the app-tabs as a by-product. although it was developed with another goal in mind (performance of the browser) it might also work for your purpose...

https://addons.mozilla.org/firefox/ad.../suspend-background-tabs/

定位到答案原位置 👍 0

所有回复 (10)

more options

You can see that CSS code with the titlechanged atrribute in browser.css

  • chrome://browser/skin/browser.css

You can override the rules by applying the default tab appearance.

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

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


.tabbrowser-tab[pinned][titlechanged]:not([selected="true"]) {
  background: -moz-linear-gradient(hsla(0,0%,100%,.2), hsla(0,0%,45%,.2) 2px, hsla(0,0%,32%,.2) 80%) !important;
}
.tabbrowser-tab[pinned][titlechanged]:not([selected="true"]):hover {
  background-image: -moz-linear-gradient(hsla(0,0%,100%,.6), hsla(0,0%,100%,.2) 4px, hsla(0,0%,75%,.2) 80%) !important;
}
more options

Hi cor-el,

I am not a programmer, so I hope you can provide some further help. I found the userChrome_example.css file using the links you provided (thanks!). I edited it to add the entirety of the code you provided below the @namespace line, saved-as "userChrome.css" in the same chrome folder and restarted Firefox. I still get the blue notification glows. Can you tell me what I'm doing wrong? Do I also need to edit and add this code to the userContent.css file? Thanks in advance.

more options

Check the properties of the userChrome.css file via the right-click context menu to be sure that the file type is Cascading Stylesheet and not Text Document.

more options

I am using a Mac, so I confirmed with Get Info that it is indeed a CSS document. Its default is to open with Safari.

more options

If it isn't working then try to add -moz-appearance: none !important;

.tabbrowser-tab[pinned][titlechanged]:not([selected="true"]) {
  background: -moz-linear-gradient(hsla(0,0%,100%,.2), hsla(0,0%,45%,.2) 2px, hsla(0,0%,32%,.2) 80%) !important;
 -moz-appearance: none !important;
}
.tabbrowser-tab[pinned][titlechanged]:not([selected="true"]):hover {
  background-image: -moz-linear-gradient(hsla(0,0%,100%,.6), hsla(0,0%,100%,.2) 4px, hsla(0,0%,75%,.2) 80%) !important;
}

由cor-el于修改

more options

That didn't do it either. <sigh>

more options

选择的解决方案

hello, a workaround might be the experimental "suspend background tabs" extension - it will restrict the updating of any but the active tab & therefore may reduce/remove the glowing indicator on the app-tabs as a by-product. although it was developed with another goal in mind (performance of the browser) it might also work for your purpose...

https://addons.mozilla.org/firefox/ad.../suspend-background-tabs/

more options

It works for me on Linux.

Are you using a custom theme or the default theme or tab related extensions that may override the code?


Start Firefox in Diagnose Firefox issues using Troubleshoot Mode to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).

more options

The experimental "suspend background tabs" extension that madperson suggested does exactly what I need! And hopefully improves the browser performance. Thanks! I'm going with this instead of continuing to try to monkey around with coding.

more options

Hi cor-el,

I want tabs to highlight/glow when they change not for app tabs but for "normal" tabs.

Can you help me?