From a5b3096782e9dd9647b1850c1447e544cc7ca23c Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@projectsegfau.lt> Date: Thu, 7 Sep 2023 20:34:27 +0200 Subject: [PATCH] fix: #815 sidebar not themed --- gradience/backend/utils/theming.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gradience/backend/utils/theming.py b/gradience/backend/utils/theming.py index 9a3c571e..e5975068 100644 --- a/gradience/backend/utils/theming.py +++ b/gradience/backend/utils/theming.py @@ -45,6 +45,10 @@ https://github.com/GradienceTeam/Gradience gtk_css += custom_css.get(app_type, "") + gtk_css += "\n.navigation-sidebar {\nbackground-color: " + gtk_css += variables["window_bg_color"] + gtk_css += ";\n}" + final_css = theming_warning + gtk_css return final_css