
// 1. Addresses `appearance` set to `searchfield` in S5, Chrome.
// 2. Addresses `box-sizing` set to `border-box` in S5, Chrome (include `-moz`
//    to future-proof).

input[type="search"]
  -webkit-appearance: textfield // 1
  -moz-box-sizing: content-box
  -webkit-box-sizing: content-box // 2
  box-sizing: content-box

// Removes inner padding and search cancel button in S5, Chrome on OS X.

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration
  -webkit-appearance: none
