Fix: Context Menu - Linux's default menu padding inline

at menu.css
menuitem {
  padding: 4px 6px;
}
This commit is contained in:
alstjr7375 2021-09-02 09:58:12 +09:00
parent 74bd1ca132
commit 9dc5f31953

View file

@ -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;