搜索 | 用户支持

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

Learn More

How to hide or change the color of the blue line over the tab?

  • 2 个回答
  • 5 人有此问题
  • 166 次查看
  • 最后回复者为 Denis_Ivanov

more options

Hello. How could I change the color of the blue line over the tab? Could I hide it? It's too constranting and draws too much attention, that's why i want to hide it.

Hello. How could I change the color of the blue line over the tab? Could I hide it? It's too constranting and draws too much attention, that's why i want to hide it.

被采纳的解决方案

The stripe on the "active" tab? You can hide that using a custom style rule. You can apply custom style rules to Firefox by creating a userChrome.css file. This takes five minutes to set up, ten if you watch the video.

This is the rule:

/* Hide blue stripe on active tab */
.tab-line[selected="true"] {
  opacity: 0 !important;
}

This page on my website covers how to create a userChrome.css file: https://www.userchrome.org/how-create-userchrome-css.html

定位到答案原位置 👍 2

所有回复 (2)

more options

选择的解决方案

The stripe on the "active" tab? You can hide that using a custom style rule. You can apply custom style rules to Firefox by creating a userChrome.css file. This takes five minutes to set up, ten if you watch the video.

This is the rule:

/* Hide blue stripe on active tab */
.tab-line[selected="true"] {
  opacity: 0 !important;
}

This page on my website covers how to create a userChrome.css file: https://www.userchrome.org/how-create-userchrome-css.html

more options

Thank you very much for the solution.