搜索 | 用户支持

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

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;
   }