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

CSS code to remove the "over flow" menu box?

  • 2 odpovede
  • 1 má tento problém
  • 2 zobrazenia
  • Posledná odpoveď od Avengement

more options

Hello,

Hello,

What is the CSS code to remove the "Over Flow" box from inside the customize preferences?

Please see attached image for reference.


Thanks in advance.

Hello, Hello, What is the CSS code to remove the "Over Flow" box from inside the customize preferences? Please see attached image for reference. Thanks in advance.
Priložené obrázky

Vybrané riešenie

Note that removing this item from the customize palette window won;'t prevent moving items to this menu as you can move toolbar items in regular mode via the right-click context menu to this area (Pin to Overflow Menu).

You can add this code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#customization-panelWrapper {display:none!important;}
Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (2)

more options

Vybrané riešenie

Note that removing this item from the customize palette window won;'t prevent moving items to this menu as you can move toolbar items in regular mode via the right-click context menu to this area (Pin to Overflow Menu).

You can add this code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#customization-panelWrapper {display:none!important;}
more options

cor-el said

Note that removing this item from the customize palette window won;'t prevent moving items to this menu as you can move toolbar items in regular mode via the right-click context menu to this area (Pin to Overflow Menu). You can add this code to the userChrome.css file below the default @namespace line.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#customization-panelWrapper {display:none!important;}

I have already removed that context menu item so it's nothig that I'm worried about.

Either way, this was exactly what I was looking for.

Thank you kindly.