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

How to disable tab bar and navigation toolbar when in fullscreen mode

  • 1 Antwort
  • 1 hat dieses Problem
  • 40 Aufrufe
  • Letzte Antwort von cor-el

more options

Is there a code with userChrome.css that I can use to disable the tab bar and navigation toolbar when in fullscreen mode

Is there a code with userChrome.css that I can use to disable the tab bar and navigation toolbar when in fullscreen mode

Ausgewählte Lösung

You can hide the full screen toggler, so moving the mouse to the top wont activate it.


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

#fullscr-toggler { display:none!important; }
Diese Antwort im Kontext lesen 👍 0

Alle Antworten (1)

more options

Ausgewählte Lösung

You can hide the full screen toggler, so moving the mouse to the top wont activate it.


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

#fullscr-toggler { display:none!important; }