Skip to content

Commit 4742497

Browse files
authored
Fix dropdown submenu arrow invisible in non-hovered state (#44)
* 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 mkdocs/mkdocs#3909 * Add release note for dropdown submenu arrow fix (#3909) * Apply suggestion from @shenxianpeng
1 parent 83d3109 commit 4742497

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

docs/about/release-notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ The current members of the MkDocs-NG team.
2727

2828
### Fixed
2929

30-
* Fix build crash caused by broken (dangling) symlinks in the docs directory. #46
30+
* Fix dropdown submenu arrow invisible in the navigation menu. #44
3131
* Fix malformed URLs (e.g., unterminated IPv6 literals) crashing the entire build. #45
32+
* Fix build crash caused by broken (dangling) symlinks in the docs directory. #46
3233

3334
## Version 1.7.1 (2026-04-25)
3435

mkdocs/themes/mkdocs/css/base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ details h4, details h5, details h6 {
323323
border-color: transparent;
324324
border-style: solid;
325325
border-width: 5px 0 5px 5px;
326-
border-left-color: var(--bs-dropdown-link-active-color);
326+
border-left-color: var(--bs-dropdown-link-color);
327327
margin-top: 5px;
328328
margin-right: -10px;
329329
}

0 commit comments

Comments
 (0)