From 9ca9858b7397e948bcf0c2f47fb01476ea7d0305 Mon Sep 17 00:00:00 2001 From: Anja Barz Date: Tue, 9 Sep 2025 12:18:18 +0200 Subject: [PATCH] adjust custom css so we can hide instructions in the sidebar and hide docker compose local --- docs/admin/getting-started/container/docker-compose-local.md | 1 + src/css/custom.css | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/docs/admin/getting-started/container/docker-compose-local.md b/docs/admin/getting-started/container/docker-compose-local.md index a5ba033d..643f4506 100644 --- a/docs/admin/getting-started/container/docker-compose-local.md +++ b/docs/admin/getting-started/container/docker-compose-local.md @@ -4,6 +4,7 @@ id: docker-compose-local title: Docker Compose local description: Full-blown featureset including web office and full-text search. draft: false +sidebar_class_name: hidden --- # Guide for local installation diff --git a/src/css/custom.css b/src/css/custom.css index bc4b915c..a8f61315 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -82,4 +82,9 @@ [data-theme='dark'] .dark-mode-image { display: block; +} + +/* For outdated instructions which should be hidden but still available via linked URL. */ +.menu__list-item.hidden { + display: none !important; } \ No newline at end of file