From 04542a389089e39a084de32cf28fd579e98aa499 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Thu, 2 Feb 2023 18:09:15 +0100 Subject: [PATCH] Navbar: Hide Gitea's help link in navbar I couldn't find another way of doing it through the config https://docs.gitea.io/en-us/config-cheat-sheet/#ui-ui --- public/css/theme-bthree-dark.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/css/theme-bthree-dark.css b/public/css/theme-bthree-dark.css index b6d5450..3d500a0 100644 --- a/public/css/theme-bthree-dark.css +++ b/public/css/theme-bthree-dark.css @@ -367,6 +367,11 @@ strong, b, h1, h2, h3, h4, h5, h6, border-color: var(--color-border); } +/* Hide Gitea's Help link in navbar. */ +.ui.menu.bar a[href="https://docs.gitea.io"] { + display: none; +} + .following.bar #navbar { min-height: 45px; }