From fb96f0bdcd43b5754b53bd04dcf5351ff121165d Mon Sep 17 00:00:00 2001
From: Saurabh Kumar <theskumar@users.noreply.github.com>
Date: Mon, 18 Mar 2024 18:37:26 +0800
Subject: [PATCH] Hide wagtail admin > sidebar > search (#3810)

Since the sidebar is generated via javascript / react, the best way I
could find to remove it is to use css and then hide it.

Fixes #3808
---
 hypha/core/wagtail_hooks.py                    | 10 ++++++++++
 hypha/static_src/sass/wagtail_global_admin.css |  3 +++
 2 files changed, 13 insertions(+)
 create mode 100644 hypha/core/wagtail_hooks.py
 create mode 100644 hypha/static_src/sass/wagtail_global_admin.css

diff --git a/hypha/core/wagtail_hooks.py b/hypha/core/wagtail_hooks.py
new file mode 100644
index 000000000..4785e6adf
--- /dev/null
+++ b/hypha/core/wagtail_hooks.py
@@ -0,0 +1,10 @@
+from django.templatetags.static import static
+from django.utils.html import format_html
+from wagtail import hooks
+
+
+@hooks.register("insert_global_admin_css")
+def global_admin_css():
+    return format_html(
+        '<link rel="stylesheet" href="{}">', static("css/wagtail_global_admin.css")
+    )
diff --git a/hypha/static_src/sass/wagtail_global_admin.css b/hypha/static_src/sass/wagtail_global_admin.css
new file mode 100644
index 000000000..006c9afc5
--- /dev/null
+++ b/hypha/static_src/sass/wagtail_global_admin.css
@@ -0,0 +1,3 @@
+.sidebar form[role="search"] {
+    display: none;
+}
-- 
GitLab