Skip to content

Instantly share code, notes, and snippets.

@FZX
Created September 3, 2022 02:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save FZX/2ba79aa792aaf8d35c42cb6e7e660279 to your computer and use it in GitHub Desktop.
Save FZX/2ba79aa792aaf8d35c42cb6e7e660279 to your computer and use it in GitHub Desktop.
FireFox userChrome.css changing url bar and tabs sizes to minimum. to find userChrome.css location go menu->help->more troubleshooting informatio->profile directory click open. Create chrome folder with file named userChrome.css. Enabling userChrome.css file support type about:config toolkit.legacyUserProfileCustomizations.stylesheets to true.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
/* ROOT - VARS */
*|*:root {
--tab-min-height: 30px !important; /* adjust */
--tab-min-width: 30px !important; /* adjust */
}
/* TABS: height */
#tabbrowser-tabs,
#tabbrowser-tabs > #tabbrowser-arrowscrollbox,
.tabbrowser-tabs .tabbrowser-tab {
min-height: var(--tab-min-height) !important;
max-height: var(--tab-min-height) !important;
}
#urlbar,
.searchbar-textbox {
font-size: unset !important;
min-height: 24px !important;
}
#identity-box {
max-height: 22px;
}
#nav-bar .toolbarbutton-1 {
padding: 0px !important;
}
/* Compatibility with auto-hide.css */
#navigator-toolbox {
--nav-bar-height: 31px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment