
How do I hide tab bar scroll buttons in FF 71?
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?
Mafitar da aka zaɓa
Right, it wouldn't work right now. This is attached with the shadow root inside.
Try to remove #TabsToolbar.
Karanta wannan amsa a matsayinta 👍 1All Replies (3)
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.
Zaɓi Mafita
Right, it wouldn't work right now. This is attached with the shadow root inside.
Try to remove #TabsToolbar.
That worked, thank you! The new code:
toolbarbutton[class^="scrollbutton"] { display: none !important; }