Created
September 4, 2024 14:42
-
-
Save kentavv/591b85dd600ad339f53c891e45427267 to your computer and use it in GitHub Desktop.
Firefox Fullscreen Disable Mouse Top Row Restore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* | |
https://superuser.com/questions/1750521/firefox-106-0-3-ignoring-fullscr-toggler-displaynoneimportant-in-user | |
*/ | |
*|div#fullscr-toggler { | |
display:none !important; | |
} | |
/* | |
https://superuser.com/questions/1558881/how-to-disable-firefox-address-bar-animation-on-fullscreen | |
*/ | |
#navigator-toolbox[fullscreenShouldAnimate] { | |
transition: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment