Skip to content

Instantly share code, notes, and snippets.

@amaya382
Forked from Arty2/tabs_to_bottom.css
Last active June 30, 2018 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amaya382/40d9832e8db318d79a7ab00dca86fcf1 to your computer and use it in GitHub Desktop.
Save amaya382/40d9832e8db318d79a7ab00dca86fcf1 to your computer and use it in GitHub Desktop.
Firefox CSS to move tabs and adress bar to bottom of window. Use with Stylish or userChrome.css (works with Firefox 57+)
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* tabs to bottom */
#browser-panel { /* Deprecated since FF 59 */
-moz-box-direction: reverse;
padding: 0 !important;
}
#navigator-toolbox {
-moz-box-ordinal-group: 2;
}
#main-window[sizemode="maximized"] {
padding-top: 0 !important;
}
/* hide tab toolbar when fullscreen */
#nav-bar[inFullscreen],
#TabsToolbar[inFullscreen] {
display: none !important;
}
/* hide titlebar */
#titlebar {
display: none !important;
}
/* put suggestions popup on top */
#PopupAutoCompleteRichResult {
opacity: 0.9;
margin-top: -332px;
margin-left: 10px;
height: 300px;
}
#PopupAutoCompleteRichResult .autocomplete-richlistbox > scrollbox {
overflow-y: auto !important;
}
/* or hide suggestions completely */
#PopupAutoCompleteRichResult { display: none; }
/* always hide tab toolbar */
#TabsToolbar {
visibility: collapse !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment