Skip to content

Commit eb522b8

Browse files
authored
Use searchfield instead of searchbox component in sidebar (#217)
This moves the search field up before the navigation. It's quite commmon that search is near the top of the page. Also, this results in a fixed position, because navigation is page dependent and may be long, which could move the search field far down or even off-page in the old layout. The searchfield component (sphinx-doc/sphinx#11045) is more compact and does not have a heading, which reduces clutter and gives more focus to the content sections.
1 parent 6120f75 commit eb522b8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

alabaster/static/alabaster.css_t

+4
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ div.sphinxsidebar input {
215215
font-size: 1em;
216216
}
217217

218+
div.sphinxsidebar #searchbox {
219+
margin: 1em 0;
220+
}
221+
218222
div.sphinxsidebar #searchbox input[type="text"] {
219223
width: 160px;
220224
}

alabaster/theme.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[theme]
22
inherit = basic
33
stylesheet = alabaster.css
4-
sidebars = about.html, navigation.html, relations.html, searchbox.html, donate.html
4+
sidebars = about.html, searchfield.html, navigation.html, relations.html, donate.html
55
pygments_style = alabaster.support.Alabaster
66

77
[options]

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
html_sidebars = {
2323
"**": [
2424
"about.html",
25+
"searchfield.html",
2526
"navigation.html",
2627
"relations.html",
27-
"searchbox.html",
2828
"donate.html",
2929
]
3030
}

0 commit comments

Comments
 (0)