From a937a229c2bd981958d9ebd7376e7b85e4a887cc Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Fri, 2 May 2025 12:16:42 +0000 Subject: [PATCH] themes: Add padding for radio icons in tool selection options Resolves issue #13901 Some system themes did not add sufficient padding around radio icons in our Tool options (like Move and Rectangle Selection). This made it more difficult to see what was selected. This patch defines padding to ensure there is enough space to see which option is currently selected. --- themes/Default/common.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/themes/Default/common.css b/themes/Default/common.css index 574660e319..aa1b88eeab 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -14,6 +14,7 @@ * or from GIMP's UI: File > Debug > Start GtkInspector */ + @import url("../System/gimp.css"); * { @@ -608,6 +609,11 @@ radio { min-height: 14px; } +/* Add padding for selection option radio buttons with icons */ +button.radio image { + padding: 4px; +} + /* Removes "blurred" effect from tooltip label */ tooltip { background-color: @bg-color;