搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 6 回覆
  • 1 有這個問題
  • 104 次檢視
  • 最近回覆由 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.