搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 1 回覆
  • 2 有這個問題
  • 12 次檢視
  • 最近回覆由 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 於 修改