Created
April 26, 2022 00:19
-
-
Save iarp/a90e970155e68607ef43fa9d75543d55 to your computer and use it in GitHub Desktop.
firefox Tighten up drop-down/context/popup menu spacing (8 Sep 2021)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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