From 9dc5f3195331f9189745c8a6ce1bbcca2aa2b44e Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Thu, 2 Sep 2021 09:58:12 +0900 Subject: [PATCH] Fix: Context Menu - Linux's default menu padding inline at menu.css menuitem { padding: 4px 6px; } --- userChrome.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index d41ab08..ac50176 100644 --- a/userChrome.css +++ b/userChrome.css @@ -2154,7 +2154,14 @@ } } - /* Padding Mac */ + /* Padding - Linux */ + @media (-moz-gtk-csd-available) { + :root { + --context-menu-background-padding-default: 6px; + } + } + + /* Padding - Mac */ @supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled") { :root { --context-menu-background-padding-default: 10px;