Anthony Short / Notes & Whims
Front-end developer and designer at Newism in Newcastle, Australia.
-
2010-09-10
-
2010-09-04
Anonymous asked: what happened to scaffold?
Scaffold has moved. It’s now located here - http://github.com/anthonyshort/Scaffold
-
2010-08-28
Pixel Patterns
Some really nice pixel patterns. Worth forking over the $4.
-
2010-08-27
Styling the search input in webkit
On a recent project I had to create a search input that looked the same across all browsers. I wanted to use the new HTML 5 search input, but in Safari, it styles the input for you:

To make this render as a normal input you only need a couple of rules:
input[type=search] { -webkit-appearance:textfield; -webkit-box-sizing:content-box; } ::-webkit-search-decoration { display: none; }-webkit-appearancetells the browser to render the search field as it would any other text input field.::-webkit-search-decorationturns off the space that is created on the left of the input where the recent search dropdown normally is.
-
2010-08-26