Fix search module not showing on desktop

Remove Bootstrap collapse classes that were hiding the search on
desktop. Use CSS media queries instead: hidden on mobile by default,
visible on desktop. JS toggles .show class on mobile via the
search-toggler button.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 21:10:21 -05:00
parent d6c4af1849
commit d318a365a0
3 changed files with 21 additions and 2 deletions

View File

@@ -18672,10 +18672,14 @@ nav[data-toggle=toc] .nav-link.active+ul{
margin-top: 0.5rem;
}
.container-header .container-search.collapse:not(.show) {
.container-header .container-search {
display: none;
}
.container-header .container-search.show {
display: block;
}
.mod-finder__search.input-group {
max-width: 100%;
}