We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

How do I disable the mouseover to reveal the address/toolbar while in fullscreen?

  • 2 件の返信
  • 1 人がこの問題に困っています
  • 151 回表示
  • 最後の返信者: akibby

more options

Is there a way to stop the address bar from being revealed when the mouse reaches the top of the screen while in fullscreen mode? I find this feature to be more of an annoyance than actually helpful as 90% of the time I trigger it on accident. It is exceedingly annoying when I trigger this while using Roll20 as it causes the camera to pan to the top left corner of the map I am on (see imgur link for example, gif was too large for upload).

https://imgur.com/A2G5x7l

I already know that you can right click the address bar while in fullscreen and select "Hide Toolbars" which will prevent it from retracting, but this is not a good solution because the toolbar uses more screen real estate than my windows taskbar does. Any additional help with my issue is greatly appreciated.

Is there a way to stop the address bar from being revealed when the mouse reaches the top of the screen while in fullscreen mode? I find this feature to be more of an annoyance than actually helpful as 90% of the time I trigger it on accident. It is exceedingly annoying when I trigger this while using Roll20 as it causes the camera to pan to the top left corner of the map I am on (see imgur link for example, gif was too large for upload). https://imgur.com/A2G5x7l I already know that you can right click the address bar while in fullscreen and select "Hide Toolbars" which will prevent it from retracting, but this is not a good solution because the toolbar uses more screen real estate than my windows taskbar does. Any additional help with my issue is greatly appreciated.

選ばれた解決策

See this thread about how to use userChrome.css to hide the Full Screen toggler.

  • [/questions/1200755] How do I make the toolbar not show up in full screen even when I move the cursor upwards?

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

#fullscr-toggler { display:none!important; }
この回答をすべて読む 👍 1

すべての返信 (2)

more options

選ばれた解決策

See this thread about how to use userChrome.css to hide the Full Screen toggler.

  • [/questions/1200755] How do I make the toolbar not show up in full screen even when I move the cursor upwards?

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

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

Thanks so much for that! I was able to fix it after making my userChrome.css file and adding that text!