From 841d926f4bde62bc55dcd42a7d29030c4a672468 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Sun, 7 Apr 2024 00:06:52 +0000 Subject: [PATCH] themes: Prevent .text-button from overwriting radio button background Resolves #11244 GtkRadioButtons can also have the .text-button CSS class set. This class was overwriting the radiobutton background color, making it appear dark and box-like. This adds a specific radiobutton.text-button definition to ensure the background color is consistent (as we had to do with checkbutton.text-button) --- themes/Default/common.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/Default/common.css b/themes/Default/common.css index 5601046fec..884dac1124 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -421,7 +421,7 @@ GimpSpinScale button } /* Checkboxes */ -checkbutton, checkbutton.text-button, radiobutton, checkbutton label { +checkbutton, checkbutton.text-button, radiobutton, radiobutton.text-button, checkbutton label { color: @fg-color; background-color: @bg-color; }