4
Vista-like styled input fields through CSS
Feb 11, 2008
In every type of browser input fields (text boxes, text areas, selects etc.) look different, which is quite annoying for designers. You could just style the input components, but styling is usually limited on most input fields.
If you like the Vista input field designs, then why not append this look in your design? Here's the CSS to make input fiels look the same as in IE on a Vista machine...
input[type=text], textarea, select {
padding: 2px;
border: 1px solid;
border-color: #abadb3 #dbdfe6 #e3e9ef #e2e3ea;
-moz-border-radius: 1px;
}
input[type=text]:focus, input[type=text]:hover, textarea:focus, textarea:hover, select:focus, select:hover {
border-color: #5794bf #b7d5ea #c7e2f1 #c5daed;
}
The CSS code works in any browser, but partially in IE6 and border radius only works in Firefox.
End result in Firefox:

