搜尋 Mozilla 技術支援網站

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

Learn More

How do I hide tab bar scroll buttons in FF 71?

  • 3 回覆
  • 1 有這個問題
  • 20 次檢視
  • 最近回覆由 practik

more options

Before FF 71, I had been using this userChrome CSS to hide the scroll buttons:

  1. TabsToolbar toolbarbutton[class^="scrollbutton"] {
   display: none !important;
   }

Now it's stopped working. Does anyone know the new code?

Before FF 71, I had been using this userChrome CSS to hide the scroll buttons: #TabsToolbar toolbarbutton[class^="scrollbutton"] { display: none !important; } Now it's stopped working. Does anyone know the new code?

被選擇的解決方法

Right, it wouldn't work right now. This is attached with the shadow root inside.

Try to remove #TabsToolbar.

從原來的回覆中察看解決方案 👍 1

所有回覆 (3)

more options

Urgh, the forum formatting messed with my code. Trying again:

#TabsToolbar toolbarbutton[class^="scrollbutton"] {
   display: none !important;
   }

Just in case that doesn't work: The first line is supposed to begin with #TabsToolbar, not 1. TabsToolbar.

more options

選擇的解決方法

Right, it wouldn't work right now. This is attached with the shadow root inside.

Try to remove #TabsToolbar.

more options

That worked, thank you! The new code:

toolbarbutton[class^="scrollbutton"] {
   display: none !important;
   }