Skip to content

Instantly share code, notes, and snippets.

@kentavv
Created September 4, 2024 14:42
Show Gist options
  • Save kentavv/591b85dd600ad339f53c891e45427267 to your computer and use it in GitHub Desktop.
Save kentavv/591b85dd600ad339f53c891e45427267 to your computer and use it in GitHub Desktop.
Firefox Fullscreen Disable Mouse Top Row Restore
@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