From 9e972fe8ae5a8c4117380a39b673f0cdb6ac9fe5 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Fri, 20 Oct 2023 15:43:01 +0200 Subject: [PATCH] Set and configure Sphinx theme "alabaster" - Fixed sidebar - Sidebar collapse (default but make sure) --- docs/conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 144ad7a25..22f69e1fc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,8 +60,9 @@ man_pages = [ ] # Options for Alabaster theme +html_theme = 'alabaster' html_theme_options = { - "fixed_sidebar": True + "fixed_sidebar": True, + "sidebar_collapse": True, # only expands active chapter in sidebar } -# html_static_path = ['assets'] html_logo = "assets/beets_logo.png"