From 59953205f82f5a507092cd3d5b62065f7958299f Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Mon, 6 Jan 2025 08:49:52 -0500 Subject: [PATCH] themes: Define popover button padding The padding for image buttons on popovers like the layer lock options was not defined. On system themes which set this padding to 0px, it made it difficult to tell if the alpha lock was enabled or not. This patch defines the padding to prevent this issue. --- themes/Default/common.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/themes/Default/common.css b/themes/Default/common.css index 11568f2a2cc..555d597c744 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -568,6 +568,11 @@ border { color: @fg-color; } +/* Define popover image button padding */ +popover button { + padding: 4px 9px; +} + /* Top menu items */ /* give the menu bar a color, fix for the default color being too dark */ -- GitLab