
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?
সমাধান চয়ন করুন
Right, it wouldn't work right now. This is attached with the shadow root inside.
Try to remove #TabsToolbar.
প্রেক্ষাপটে এই উত্তরটি পড়ুন। 👍 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.
চয়ন করা সমাধান
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; }