Skip to content

Instantly share code, notes, and snippets.

@inspector71
Last active February 5, 2019 07:27
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 inspector71/afa99ab218181714ae2c9cd843cba37e to your computer and use it in GitHub Desktop.
Save inspector71/afa99ab218181714ae2c9cd843cba37e to your computer and use it in GitHub Desktop.
Firefox 65 on Windows 8.1: menu; navigation; tabs; content
/*
>>>> NOTE: buggy when dragging / re-ordering tabs.
With thanks to everyone on /r/FirefoxCSS, I have this:
https://i.imgur.com/YE3s6gm.png
Firefox 65 on Windows 8.1, from the top:
Row 1: File Edit View History Bookmarks Tools Help (with vertically-middled alignment) <--> Min / Max / Close
Row 2: Navigation bar
Row 3. Tabs
*/
#navigator-toolbox {
height:108px;
}
#main-menubar {
height:30px;
}
#TabsToolbar {
bottom: 0 !important;
position: absolute !important;
}
#tabbrowser-tabs {
min-height: 34px;
width: 100vw !important;
}
/*
Visual improvements that work with the toolbar order achieved above
*/
#nav-bar {
box-shadow:unset !important;
}
/*
Changes to suit my own needs
*/
#nav-bar #back-button,
#nav-bar #forward-button,
#nav-bar #stop-reload-button {
-moz-box-pack: center;
width:5em;
}
#nav-bar #page-action-buttons,
#nav-bar #PanelUI-button {
display:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment