From 59ce1a7255fae184008e415dbc0442be7502cd46 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Thu, 21 Sep 2023 22:36:31 +0000 Subject: [PATCH] themes: Define treeview checkbox colors Resolves #8756 (along with !1065) The system theme leaked due to the checkbox styling not being defined for GtkTreeView checkboxes. The background-image in particular overpowers other settings. The normal checkbox styling is now specifically applied to these checkboxes as well. --- 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 75adf23cb0..c1866945b3 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -340,7 +340,7 @@ checkbutton:hover, checkbutton.text-button:hover, checkbutton:hover label, radio background-color: @hover-color; } -checkbutton check, radiobutton radio { +checkbutton check, radiobutton radio, treeview.view check { background-image: none; background-color: @extreme-bg-color; border: 1px solid @stronger-border-color;