From ffd1366decb9403a39ea7f4580aeac65f5daff10 Mon Sep 17 00:00:00 2001 From: Jakob <72307968+jakob30061@users.noreply.github.com> Date: Fri, 4 Aug 2023 13:03:00 +0200 Subject: [PATCH] Fix missing CSS variable for gitea 1.20 (#3) gitea 1.20 did some changes to the navbar and header-wrapper. This commit restores the default look of this theme for gitea 1.20 See: https://github.com/go-gitea/gitea/pull/25111 Reviewed-on: https://projects.blender.org/infrastructure/gitea-custom/pulls/3 --- public/css/theme-bthree-dark.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/css/theme-bthree-dark.css b/public/css/theme-bthree-dark.css index fdefc51..8b23800 100644 --- a/public/css/theme-bthree-dark.css +++ b/public/css/theme-bthree-dark.css @@ -168,6 +168,9 @@ /* Navbar. */ --color-navbar: hsl(213, 10%, 18%); + --color-nav-bg: hsl(213, 10%, 18%); + --color-nav-hover-bg: hsla(213, 18%, 90%, .05); + --color-header-wrapper: hsl(213, 10%, 18%); --color-navbar-transparent: hsla(213, 10%, 14%, 0); --color-header-bar: hsl(213, 10%, 18%);