From 10c699039baf94ec190e70be204948d97c7c4e51 Mon Sep 17 00:00:00 2001 From: Joonas Henriksson Date: Sun, 18 Dec 2022 19:18:33 +0200 Subject: [PATCH] gnome-shell: Add side padding to quick menu menuitems Some icons were placed right at the menuitem edge with no padding. --- common/gnome-shell/43/sass/_common.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/gnome-shell/43/sass/_common.scss b/common/gnome-shell/43/sass/_common.scss index 13aa7ad22..92b843b76 100644 --- a/common/gnome-shell/43/sass/_common.scss +++ b/common/gnome-shell/43/sass/_common.scss @@ -3233,7 +3233,11 @@ $_screenshot_ui_panel_padding: 15px; padding: 8px; margin: 8px 16px 0; - .popup-menu-item { border-radius: 2px; } + .popup-menu-item { + border-radius: 2px; + padding-left: 5px; + padding-right: 5px; + } .popup-menu-item > StIcon { -st-icon-style: symbolic; }