Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yuttie/26d8454ea58582191df2bef210496e9c to your computer and use it in GitHub Desktop.
Save yuttie/26d8454ea58582191df2bef210496e9c to your computer and use it in GitHub Desktop.
Stylish script for Firefox to force toolbars to appear in fullscreen mode.
@-moz-document url(chrome://browser/content/browser.xul) {
/* Force toolbars to appear in fullscreen mode. */
#main-window[inFullscreen][inDOMFullscreen] #navigator-toolbox,
#main-window[inFullscreen][inDOMFullscreen] #fullscr-toggler,
#main-window[inFullscreen][inDOMFullscreen] #sidebar-box,
#main-window[inFullscreen][inDOMFullscreen] #sidebar-splitter,
#main-window[inFullscreen]:not([OSXLionFullscreen]) toolbar:not([fullscreentoolbar=true]),
#main-window[inFullscreen] #global-notificationbox,
#main-window[inFullscreen] #high-priority-global-notificationbox {
visibility: initial !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment