Skip to content

Commit ec407a6

Browse files
committed
Create a search field component
searchfield.html is similar to the existing searchbox.html, but does not have the heading "Quick Search". Instead, it uses "Search" as a placeholder text. This gives a cleaner and less cluttered appearance. The searchfield component is added to the basic theme and thus can be used in any derivative theme. It is not used by default for backward compatibility. The searchfield compenent is made the default in the new sphinx13 theme. CSS adaptions ensure that the top of the search field is aligned with the top of the main content.
1 parent 9844162 commit ec407a6

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

doc/_themes/sphinx13/layout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h3>{{ _('Navigation') }}</h3>
3232
{%- block content %}
3333
<div class="document">
3434
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
35-
{%- include "searchbox.html" %}
35+
{%- include "searchfield.html" %}
3636
<div class="sphinxsidebar-navigation__contents">
3737
<h3>{{ _('On this page') }}</h3>
3838
{{ toc }}

doc/_themes/sphinx13/static/sphinx13.css

+5
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ div.sphinxsidebar {
6868
overflow-wrap: break-word;
6969
margin: 0;
7070
padding-right: 15px;
71+
padding-top: 0.5em;
7172
font-size: 1em;
7273
}
7374

@@ -127,6 +128,10 @@ div.sphinxsidebar li.current > a {
127128
display: none;
128129
}
129130

131+
div.sphinxsidebar #searchbox {
132+
margin: 12px 0 20px 0;
133+
}
134+
130135
div.footer {
131136
background-color: var(--colour-sphinx-blue);
132137
color: #ccc;

sphinx/themes/basic/searchfield.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{#
2+
basic/searchfield.html
3+
~~~~~~~~~~~~~~~~~~~~
4+
5+
Sphinx sidebar template: search field.
6+
This
7+
8+
9+
:copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
10+
:license: BSD, see LICENSE for details.
11+
#}
12+
{%- if pagename != "search" and builder != "singlehtml" %}
13+
<div id="searchbox" style="display: none" role="search">
14+
<div class="searchformwrapper">
15+
<form class="search" action="{{ pathto('search') }}" method="get">
16+
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search"/>
17+
<input type="submit" value="{{ _('Go') }}" />
18+
</form>
19+
</div>
20+
</div>
21+
<script>document.getElementById('searchbox').style.display = "block"</script>
22+
{%- endif %}

0 commit comments

Comments
 (0)