Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

In fullscreen mode can left side minimize and exit buttons be removed?

  • 1 отговор
  • 2 имат този проблем
  • 9 изгледи
  • Последен отговор от cor-el

more options

In fullscreen mode when the mouse is at the top of the screen and toolbars are visible there three buttons for minimize and exit at the top left. I would like to remove those buttons. There is no option for that available in toolbar customization. Is there some other method of doing that?

Those buttons are not at all useful to me in that location and they are a hindrance. I use fullscreen mode much of the time and prefer the 3.x way where I could blindly put the cursor in the top left corner and just click to go back to the previous page. Now I have to avoid accidentally clicking an exit button that really has no business being where it is.

It would also be nice if the back button were square instead of round.

In fullscreen mode when the mouse is at the top of the screen and toolbars are visible there three buttons for minimize and exit at the top left. I would like to remove those buttons. There is no option for that available in toolbar customization. Is there some other method of doing that? Those buttons are not at all useful to me in that location and they are a hindrance. I use fullscreen mode much of the time and prefer the 3.x way where I could blindly put the cursor in the top left corner and just click to go back to the previous page. Now I have to avoid accidentally clicking an exit button that really has no business being where it is. It would also be nice if the back button were square instead of round.

Всички отговори (1)

more options

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


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#window-controls { display:none !important; } /* hide window controls in full screen mode */

You can use these selectors if you only want to hide some buttons:

#minimize-button, #restore-button, #close-button

Променено на от cor-el