Skip to content

Instantly share code, notes, and snippets.

@iarp
Created April 26, 2022 00:19
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 iarp/a90e970155e68607ef43fa9d75543d55 to your computer and use it in GitHub Desktop.
Save iarp/a90e970155e68607ef43fa9d75543d55 to your computer and use it in GitHub Desktop.
firefox Tighten up drop-down/context/popup menu spacing (8 Sep 2021)
# firefox userChrome.js changes
/*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021)
toolkit.legacyUserProfileCustomizations.stylesheets = True
***/
menupopup:not(.in-menulist) > menuitem,
menupopup:not(.in-menulist) > menu {
padding-block: 2px !important;
min-height: unset !important; /* v92.0 - for padding below 4px */
}
:root {
--arrowpanel-menuitem-padding: 2px 4px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment