Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

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

  • 2 Antworten
  • 1 hat dieses Problem
  • 3 Aufrufe
  • Letzte Antwort von 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.
Angefügte Screenshots

Ausgewählte Lösung

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;}
Diese Antwort im Kontext lesen 👍 1

Alle Antworten (2)

more options

Ausgewählte Lösung

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.