Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

prevent firefox from showing the address bar in fullscreen mode

  • 2 ответа
  • 1 имеет эту проблему
  • 741 просмотр
  • Последний ответ от mishash1998

more options

Hello,

After recent Firefox update ( ver. 85.0 - 01.2021 / 64-bit, Windows )

code:

  1. fullscr-toggler {display:none!important;}

in file: "userChrome.css"

that was effectively preventing firefox from showing the address bar in fullscreen mode seems stopped working.

Does anyone know workaround solution?

Thanks!

Hello, After recent Firefox update ( ver. 85.0 - 01.2021 / 64-bit, Windows ) code: #fullscr-toggler {display:none!important;} in file: "userChrome.css" that was effectively preventing firefox from showing the address bar in fullscreen mode seems stopped working. Does anyone know workaround solution? Thanks!

Выбранное решение

#fullscr-toggler has been moved to HTML namespace, so you need to update the code in userChrome.css

Add 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 */

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

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See:

Прочитайте этот ответ в контексте 👍 1

Все ответы (2)

more options

Выбранное решение

#fullscr-toggler has been moved to HTML namespace, so you need to update the code in userChrome.css

Add 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 */

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

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See:

more options

Yep, that worked. Thank you! :)