From 4c5ca9acee28af4ace6f978ff8ee44a0f8823b2b Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Wed, 17 Dec 2025 15:42:54 +0100 Subject: [PATCH 1/2] Append for fix of sidebar --- docs/css/custom.css | 3 +++ docs/overrides/main.html | 13 ++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/css/custom.css b/docs/css/custom.css index 6489f2f00..c09c2be37 100644 --- a/docs/css/custom.css +++ b/docs/css/custom.css @@ -174,6 +174,9 @@ header.md-header { z-index: 900 !important; } +.md-sidebar { + z-index: 1000 !important; +} .md-overlay { z-index: 950 !important; } diff --git a/docs/overrides/main.html b/docs/overrides/main.html index 7fc85fb25..d8b04d0e2 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -5,4 +5,15 @@ Click here to go to latest. -{% endblock %} \ No newline at end of file + +{% endblock %} From fe90ca1e2cbe5c5099ad7681a0a3907350454856 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Wed, 17 Dec 2025 15:43:59 +0100 Subject: [PATCH 2/2] Fix --- docs/overrides/main.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/overrides/main.html b/docs/overrides/main.html index d8b04d0e2..b547e20b2 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -10,8 +10,8 @@ new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (mutation.attributeName === "hidden") { - document.body.style.borderBottom = '1px solid transparent'; - setTimeout(function() { document.body.style.borderBottom = undefined; }, 1); + document.body.style.border = '1px solid transparent'; + setTimeout(function() { document.body.style.border = undefined; }, 1); } }); }).observe(document.querySelector("[data-md-component=outdated]"), { attributes: true });