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)
This commit is contained in:
Alx Sa 2024-04-07 00:06:52 +00:00
parent 2df7874216
commit 841d926f4b

View file

@ -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;
}