style: import input style from wcs

This commit is contained in:
Frédéric Péters 2014-01-21 14:01:42 +01:00
parent cb39514d22
commit c8013aa2cf
1 changed files with 18 additions and 0 deletions

View File

@ -938,3 +938,21 @@ div.block {
-moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, .4);
-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, .4);
}
input[type="text"],
input[type="password"] {
border: 1px solid #aaa;
background: white url(field-shade.png) top left repeat-x;
padding: 1px;
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
color: black;
-webkit-transition: background 200ms ease-out;
}
input[type="text"]:focus,
input[type="password"]:focus {
border: 1px solid #888;
background: white;
}