From abfd6cd6dcbf40e6cba8bb9351d55e57c22518b7 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Thu, 22 May 2025 13:54:24 +0000 Subject: [PATCH] themes: Define menubar menuitem padding Since we did not define the padding between menu items in the menubar, some system themes caused them to scrunch together. This patch sets the padding to match the "default" GTK CSS to ensure there's distance between each item in the menubar. --- themes/Default/common.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/themes/Default/common.css b/themes/Default/common.css index 96d7a3174b..b93fe43747 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -686,6 +686,11 @@ menuitem menuitem { background: @extreme-bg-color; } +menubar menuitem { + min-height: 16px; + padding: 4px 8px; +} + /* A top (File, Edit) menubar item when its menu is expanded. */ menubar > menuitem:hover { color: @fg-color;