Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

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

  • 3 odpovede
  • 1 má tento problém
  • 20 zobrazení
  • Posledná odpoveď od 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?

Vybrané riešenie

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

Try to remove #TabsToolbar.

Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (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

Vybrané riešenie

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