搜索 | 用户支持

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

Learn More

How to delete the new tab buttin in Firefox 70 (css or otherwise)?

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

more options

Firefox 70 added a new tab button to my installation. I had been using CSS that got rid of it nicely up to this point. But now it is showing up and I cannot figure out how to make it go away. This is what I had and which worked:

 #TabsToolbar .tabs-newtab-button { display: none ! important }

Any ideas?

Firefox 70 added a new tab button to my installation. I had been using CSS that got rid of it nicely up to this point. But now it is showing up and I cannot figure out how to make it go away. This is what I had and which worked: #TabsToolbar .tabs-newtab-button { display: none ! important } Any ideas?

被采纳的解决方案

The following code should work:

#tabs-newtab-button {
     display:none !important;
}

Hope this helps.

定位到答案原位置 👍 1

所有回复 (6)

more options

选择的解决方案

The following code should work:

#tabs-newtab-button {
     display:none !important;
}

Hope this helps.

more options

Did you try to remove this button in customize mode (i.e. drag it off the Tab bar to the palette) ?

more options

cor-el said

Did you try to remove this button in customize mode (i.e. drag it off the Tab bar to the palette) ?

When I go into customize mode the new tab button is not shown -- there is no way to drag it off.

more options

Wesley Branton said

The following code should work:
#tabs-newtab-button {
     display:none !important;
}

Hope this helps.

This works -- thanks very much.

more options

If you open customize then the New Tab button should appear at the far right of the Tab bar. When you close customize mode then the plus button moves to the position right after the last tab.

more options

You are right -- I can faintly make it out now that you point it out. The new tab button in customize mode is a dark featureless grey, and my titlebar is a deep blue, so it certainly is not easily visible.

Anyway the problem is solved.