I have input[type=search]and gave him a few padding.
In Safari 7 (at least the mavericks), the cancel search button gets trimmed. How can i fix this?
I tried with a selector ::-webkit-search-cancel-buttonand window size, but no luck.

jsFiddle: http://jsfiddle.net/hjtkarLc/
JsFiddle setting:
CSS
input {
float: left;
clear: both;
margin: 1em;
}
input[type="search"] {
-webkit-appearance: none;
}
#withPadding {
padding: 0.7em;
}
HTML
<input type="search" value="I'm ok" />
<input type="search" id="withPadding" value="I'm cutoff" />
source
share