From 8ab5476cb82b35dc0407ec76fd0d3223051dd018 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 8 Jan 2023 13:58:28 +0100 Subject: [PATCH] Remove the `background-color` of the sidebarContent (PR 15850 follow-up) After the changes in PR 15850, the `background-color` of the sidebar is now unnecessarily dark in the light-theme. Hence, we can simply remove this CSS rule to improve things overall (and these changes don't affect the dark-theme much at all). This is even an overall consistency improvement, given the existing `--sidebar-narrow-bg-color` values. --- web/viewer.css | 1 - 1 file changed, 1 deletion(-) diff --git a/web/viewer.css b/web/viewer.css index 737df7dd1..dd29d626d 100644 --- a/web/viewer.css +++ b/web/viewer.css @@ -281,7 +281,6 @@ body { overflow: auto; position: absolute; width: 100%; - background-color: rgba(0, 0, 0, 0.05); box-shadow: inset calc(-1px * var(--dir-factor)) 0 0 rgba(0, 0, 0, 0.25); }