Skip to content

Commit 0bb9a7f

Browse files
committed
js/search.js: rewrite local search autocomplete and update styling
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 0f3920d commit 0bb9a7f

8 files changed

+184
-272
lines changed

_includes/body-landing.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2>What can we help you find?</h2>
3434
</div>
3535
</div>
3636
<div class="row justify-content-center">
37-
<form action="/search/" method="GET" class="col-xs-12 col-sm-offset-2 col-sm-8 col-md-offset-2 col-md-8 col-lg-offset-3 col-lg-6">
37+
<form action="/search/" method="get" class="col-xs-12 col-sm-offset-2 col-sm-8 col-md-offset-2 col-md-8 col-lg-offset-3 col-lg-6">
3838
<label class="sr-only" for="st-search-input">Search</label>
3939
<input
4040
id="st-search-input"
@@ -47,9 +47,7 @@ <h2>What can we help you find?</h2>
4747
dir="auto"
4848
autofocus
4949
/>
50-
<div id="autocompleteContainer">
51-
<div id="autocompleteResults"></div>
52-
</div>
50+
<div id="autocompleteResults"></div>
5351
</form>
5452
</div>
5553
</section>

_includes/navigation.html

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@
44
</a>
55
</div>
66
<div class="search-form" id="search-div">
7-
<form class="search-form form-inline" id="searchForm" action="/search/">
7+
<form class="search-form form-inline" id="searchForm" action="/search/" method="get">
88
<label for="st-search-input" class="sr-only">Search</label>
9-
<input class="search-field form-control ds-input" id="st-search-input" value="" name="q" placeholder="Search the docs" type="search" autocomplete="off" spellcheck="false" dir="auto" style="position: relative; vertical-align: top;">
10-
<div id="autocompleteContainer">
11-
<div id="autocompleteResults"></div>
12-
</div>
9+
<input class="search-field form-control ds-input" id="st-search-input" name="q" placeholder="Search the docs" type="search" autocomplete="off" spellcheck="false" dir="auto" style="position: relative; vertical-align: top;">
10+
<div id="autocompleteResults"></div>
1311
<!-- <button type="submit" class="search-submit btn btn-default">Search</button> -->
1412
</form>
1513
</div>

_scss/_landing.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ body.landing {
9999
}
100100

101101
#autocompleteResults {
102-
left: 10px;
103-
right: 10px;
102+
left: 14px;
103+
right: 14px;
104104
width: unset;
105105

106106
@include before-lg-width {

_scss/_night-mode.scss

+12-7
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,21 @@ body.night {
8989
.toc-nav i.fa {
9090
color: $body-text-night;
9191
}
92-
div#autocompleteResults {
92+
#autocompleteResults {
9393
background: $bg-search-results-night;
9494
border: 1px solid $black;
95-
color: $white;
96-
}
97-
.autocompleteList li {
98-
color: #b4c3d2;
95+
//color: $white;
9996
}
100-
div#autocompleteResults span {
101-
color: #b7a4de;
97+
.autocompleteResult {
98+
&.selected {
99+
background-color: #1f262e;
100+
}
101+
li {
102+
color: #b4c3d2;
103+
}
104+
span {
105+
color: #b7a4de;
106+
}
102107
}
103108

104109
/* for google results styles - forgive us css gods */

_scss/_utilities.scss

+34-48
Original file line numberDiff line numberDiff line change
@@ -135,73 +135,59 @@ input[type=text] {
135135
* autocompleteResults *********************************************************
136136
*/
137137

138-
div#autocompleteResults {
138+
#autocompleteResults {
139139
display: none; /* toggled through javascript */
140140

141141
background: #E6F5FD;
142142
border: 1px solid #eee;
143143
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.28);
144-
padding: 20px 0 15px 0;
145144
margin: 10px 0 0 0;
146145
position: absolute;
147146
width: 600px;
148147
z-index: 9999;
149148
}
150149

151-
ul.autocompleteList {
152-
list-style: none;
153-
max-width: 100%;
154-
155-
@include before-lg-width {
156-
padding: 0;
150+
.autocompleteResult {
151+
border-bottom: 1px solid rgba(203, 205, 209, 0.4);
152+
cursor: pointer;
153+
padding: 15px;
154+
&.selected {
155+
background-color: #f5f5f5;
157156
}
158-
}
159-
160-
.autocompleteList li {
161-
padding: 5px 0 7px 0;
162-
max-width: 100%;
163-
}
164-
165-
div#autocompleteResults span {
166-
background: transparent!important;
167-
color: #518cad;
168-
}
169157

170-
.autocompleteTitle {
171-
font-weight: bold;
172-
font-size: large;
173-
}
158+
ul {
159+
list-style: none;
160+
margin: 0 5px 0 5px;
161+
padding-inline-start: 0;
174162

175-
.autocompleteSelected {
176-
background-color: #f5f5f5;
177-
}
178-
179-
.autocompleteList {
180-
list-style-type: none;
181-
width: 400px;
182-
/* commented out 0 padding to allow inherit padding, search results on autocompleteList were getting smashed up against left margin due to this */
183-
/* padding: 0; */
184-
margin-bottom: 0;
185-
}
163+
@include before-lg-width {
164+
padding: 0;
165+
}
166+
}
186167

187-
.autoCompleteResult {
188-
border-bottom: 1px solid rgba(203, 205, 209, 0.4);
189-
padding: 15px;
168+
li {
169+
border: 0;
170+
margin: 0;
171+
max-width: 100%;
172+
padding: 5px 0 7px 0;
173+
line-height: normal;
174+
}
190175

191-
&:hover {
192-
cursor: pointer;
176+
.title {
177+
font-weight: bold;
193178
}
194-
}
195179

196-
#autocompleteShowAll {
197-
padding: 20px 15px;
198-
}
180+
.keywords {
181+
font-size: 12px;
182+
.glyphicon {
183+
padding-right: 10px
184+
}
185+
}
199186

200-
.autocompleteList li {
201-
width: 380px;
202-
border: 0;
203-
padding-right: 20px;
204-
margin: 0;
187+
span {
188+
background: transparent;
189+
color: #518cad;
190+
}
205191
}
206192

207193
@media print {

0 commit comments

Comments
 (0)