当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

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.

詳しく学ぶ

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

Disable fullscreen toggle via moving mouse to the top of the display

  • 1 件の返信
  • 1 人がこの問題に困っています
  • 5 回表示
  • 最後の返信者: cor-el

more options

Hello Firefox-com, is there any way to disable the fade-in of the toolbar triggered by moving the mouse to the top of the screen?

Some of my webpages are running in fullscreen mode and have their on navigationbar at the top, everytime the uses moves the mouse up the Firefox menubar fades in which is quit annoying.

I also accept solutions containing changes in the about:config.

Hello Firefox-com, is there any way to disable the fade-in of the toolbar triggered by moving the mouse to the top of the screen? Some of my webpages are running in fullscreen mode and have their on navigationbar at the top, everytime the uses moves the mouse up the Firefox menubar fades in which is quit annoying. I also accept solutions containing changes in the about:config.

すべての返信 (1)

more options

You can't disable this via changing a pref on the about:config page.

You would have to do this via code in the userChrome.css file.


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


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


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

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userChrome.css file in the editor window
  • Make sure that the userChrome.css file starts with the default @namespace line
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file