Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Learn More

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

  • 3 odpovědi
  • 1 má tento problém
  • 20 zobrazení
  • Poslední odpověď 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?

Zvolené řešení

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

Try to remove #TabsToolbar.

Přečíst dotaz v kontextu 👍 1

Všechny odpovědi (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

Zvolené řešení

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