此討論串已被封存。
如果您有需要幫助,請新增一個新問題
Solved
封存
How to hide or change the color of the blue line over the tab?
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.
所有回覆 (2)
選擇的解決方法
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
Thank you very much for the solution.