From 4bd8bce955aae138991a8161e05e741ee21237bd Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Sun, 26 Apr 2026 23:55:19 +0300 Subject: [PATCH 1/3] Fix dropdown submenu arrow invisible in non-hovered state (#3909) The dropdown-submenu arrow was using --bs-dropdown-link-active-color (#fff) which is invisible against the white background. Change to --bs-dropdown-link-color (#ccc) to make the arrow visible, matching the behavior from MkDocs 1.5.2 and earlier. Closes https://github.com/mkdocs/mkdocs/issues/3909 --- mkdocs/themes/mkdocs/css/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/themes/mkdocs/css/base.css b/mkdocs/themes/mkdocs/css/base.css index 76f9673c..4126bf9c 100644 --- a/mkdocs/themes/mkdocs/css/base.css +++ b/mkdocs/themes/mkdocs/css/base.css @@ -323,7 +323,7 @@ details h4, details h5, details h6 { border-color: transparent; border-style: solid; border-width: 5px 0 5px 5px; - border-left-color: var(--bs-dropdown-link-active-color); + border-left-color: var(--bs-dropdown-link-color); margin-top: 5px; margin-right: -10px; } From dc378a4ec39593bef9c4f74403b9040895fe7ba4 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Mon, 27 Apr 2026 00:04:49 +0300 Subject: [PATCH 2/3] Add release note for dropdown submenu arrow fix (#3909) --- docs/about/release-notes.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index 4cc040ab..c5cec1dd 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -23,6 +23,12 @@ The current members of the MkDocs-NG team. * [@shenxianpeng](https://github.com/shenxianpeng) +## Version 1.7.2 (Unreleased) + +### Fixed + +* Fix dropdown submenu arrow invisible in the navigation menu. #3909 + ## Version 1.7.1 (2026-04-25) ### Fixed From 25375c7497c2fac64e04f5c04e45ed9869815363 Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Mon, 27 Apr 2026 00:07:47 +0300 Subject: [PATCH 3/3] Apply suggestion from @shenxianpeng --- docs/about/release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index c5cec1dd..a86f42d1 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -27,7 +27,7 @@ The current members of the MkDocs-NG team. ### Fixed -* Fix dropdown submenu arrow invisible in the navigation menu. #3909 +* Fix dropdown submenu arrow invisible in the navigation menu. #44 ## Version 1.7.1 (2026-04-25)