Skip to content
10 changes: 9 additions & 1 deletion modules/search/instant-search/components/search-box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ input.jetpack-instant-search__box-input.search-field {
.jetpack-instant-search__box input,
.jetpack-instant-search__box input[type='search'].jetpack-instant-search__box-input {
width: 100%;
height: 52px;
height: 52px;
transition: color, border-color 0.25s ease-in-out;

&::-webkit-search-decoration,
&::-webkit-search-cancel-button,
&::-webkit-search-results-button,
&::-webkit-search-results-decoration {
display: initial;
-webkit-appearance: searchfield;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
-webkit-appearance: searchfield;
-webkit-appearance: searchfield;
display: initial;

This should fix the issue with 2020. These elements were being set to display: none.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Brilliant @jsnmoon ! Thanks for figuring that out. Added in 9d6d6b2

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
}

.jetpack-instant-search__search-results-real-query {
font-size: 1.5em;
font-size: 1em;
font-weight: bold;
}

Expand Down