From 695cf6671b6d889346ba6f041885d0533f5b726c Mon Sep 17 00:00:00 2001 From: Fabien POLLY Date: Fri, 23 Jan 2026 10:48:35 +0100 Subject: [PATCH] Update template --- index.html | 348 ++++++++++++------ wiki/02_Setup/Sub_Installation.md | 1 + wiki/02_Setup/Sub_Sub_Installation.md | 1 + wiki/03_Test_CSS/Long_Page.md | 72 ++++ wiki/03_Test_CSS/Sub_Category/Sub_Page.md | 7 + .../Sub_Sub_Category/Sub_Sub_Page.md | 7 + wiki/structure.json | 9 + 7 files changed, 342 insertions(+), 103 deletions(-) create mode 100644 wiki/02_Setup/Sub_Installation.md create mode 100644 wiki/02_Setup/Sub_Sub_Installation.md create mode 100644 wiki/03_Test_CSS/Long_Page.md create mode 100644 wiki/03_Test_CSS/Sub_Category/Sub_Page.md create mode 100644 wiki/03_Test_CSS/Sub_Category/Sub_Sub_Category/Sub_Sub_Page.md diff --git a/index.html b/index.html index 47055fe..a2daf1c 100644 --- a/index.html +++ b/index.html @@ -324,10 +324,13 @@ .nav-link.active { background-color: var(--accent-dim); color: var(--accent-green); - border-left: 2px solid var(--accent-green); padding-left: 0.5rem !important; } + .nav-link.active span { + background-color: var(--accent-green) !important; + } + /* TOC & Scroll */ .toc-link.active { color: var(--accent-green); @@ -464,6 +467,19 @@ } } + /* Hide scrollbar for breadcrumbs */ + #breadcrumbs { + -ms-overflow-style: none; + /* IE and Edge */ + scrollbar-width: none; + /* Firefox */ + } + + #breadcrumbs::-webkit-scrollbar { + display: none; + /* Chrome, Safari and Opera */ + } + /* Toast Notification */ #toast-container { position: fixed; @@ -700,8 +716,9 @@