Skip to content

Instantly share code, notes, and snippets.

@Lampe2020
Last active May 3, 2026 09:30
Show Gist options
  • Select an option

  • Save Lampe2020/90ad3bf8453997d8e6d2395c14d5e5eb to your computer and use it in GitHub Desktop.

Select an option

Save Lampe2020/90ad3bf8453997d8e6d2395c14d5e5eb to your computer and use it in GitHub Desktop.
Zen browser true fullscreen

The below userChrome.css fixes fullscreen in Zen Browser.

/* Written by Lampe2020.
* Falls under the terms of the WTFPL: https://www.wtfpl.net/txt/copying/
*/
:root[inFullscreen=true] tabpanels#tabbrowser-tabpanels, :root[inFullscreen=true] #zen-tabbox-wrapper {
position: fixed !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
margin: 0 !important;
}
:root[inFullscreen=true] .browserSidebarContainer.deck-selected {
border-radius: 0px !important;
}
:root[inFullscreen=true] toolbox#navigator-toolbox, :root[inFullscreen=true] div#zen-appcontent-navbar-wrapper {
display: none !important;
width: 0 !important;
height: 0 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment