This thread was archived.
Please ask a new question if you need help.
Solved
Archived
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?
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?
All 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.
Chosen Solution
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;
}