I wish to narrow the gap/spacing between bookmarks in their drop down menu. They are just too far apart and waste a lot of space, in the default setup.
I am not familiar with CSS coding but found someone's CSS file to do this trick. It says this will give a padding of 4 pixels, which is narrower than the default.
If I wish to get narrower than 4 pixels, what do I need to edit this CSS file? Changing the '4px' to '3px' or '2px' should be obvious, but how about the '8px'?
Thanks.
Below is the CSS coding:-
/*** Tighten up drop-down/context/popup menu spacing ***/
menupopup > menuitem, menupopup > menu {
padding-block: 4px !important;
}
:root {
--arrowpanel-menuitem-padding: 4px 8px !important;
}
I am not familiar with CSS coding but found someone's CSS file to do this trick. It says this will give a padding of 4 pixels, which is narrower than the default.
If I wish to get narrower than 4 pixels, what do I need to edit this CSS file? Changing the '4px' to '3px' or '2px' should be obvious, but how about the '8px'?
Thanks.
Below is the CSS coding:-
/*** Tighten up drop-down/context/popup menu spacing ***/
menupopup > menuitem, menupopup > menu {
padding-block: 4px !important;
}
:root {
--arrowpanel-menuitem-padding: 4px 8px !important;
}