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

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

Learn More

I need to remove "minimize, maximize, close" buttons on full screen mode

  • 1 ответ
  • 10 имеют эту проблему
  • 245 просмотров
  • Последний ответ от cor-el

more options

I can remove all buttons (like refresh, back, forward, address bar, etc..) but the little right 3 buttons "minimize, maximize, close" i cant remove, how can i make with userChrome.css or other option. Because i can close firefox exiting from fullscreen and clicking on archive menu with "Alt" key. I dont wanna this little 3 buttons, that i can hide and show permanent.

I hope explain me correctly Thanks a lot

I can remove all buttons (like refresh, back, forward, address bar, etc..) but the little right 3 buttons "minimize, maximize, close" i cant remove, how can i make with userChrome.css or other option. Because i can close firefox exiting from fullscreen and clicking on archive menu with "Alt" key. I dont wanna this little 3 buttons, that i can hide and show permanent. I hope explain me correctly Thanks a lot

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

Add code to userChrome.css below the default @namespace line.

---

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

#autohide-context { display:none!important; } /* hide context menuitem "Exit Full Screen Mode" */
#window-controls  { display:none!important; } /* hide window controls in full screen mode */
Прочитайте этот ответ в контексте 👍 2

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

more options

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

Add code to userChrome.css below the default @namespace line.

---

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

#autohide-context { display:none!important; } /* hide context menuitem "Exit Full Screen Mode" */
#window-controls  { display:none!important; } /* hide window controls in full screen mode */