Add -webkit-appearance: none to search input

This fixes an issue when displaying on iPad, where the search box had no
borders.
This commit is contained in:
Jacob Hoffman-Andrews 2021-12-08 23:39:42 -08:00
parent efec545293
commit da472a5a84

View File

@ -836,6 +836,10 @@ h2.small-section-header > .anchor {
top: 10px;
}
.search-input {
/* Override Normalize.css: it has a rule that sets
-webkit-appearance: textfield for search inputs. That
causes rounded corners and no border on iOS Safari. */
-webkit-appearance: none;
/* Override Normalize.css: we have margins and do
not want to overflow - the `moz` attribute is necessary
until Firefox 29, too early to drop at this point */