Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
fix: #815 sidebar not themed
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMRTT committed Sep 7, 2023
1 parent f33d005 commit a5b3096
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gradience/backend/utils/theming.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ def generate_gtk_css(app_type: str, preset: Preset) -> str:

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

0 comments on commit a5b3096

Please sign in to comment.