forked from mirror/_s
_s: add styling for HTML5 email inputs; See #1286
git-svn-id: https://wpcom-themes.svn.automattic.com/_s/@9628 d957f892-c61d-0410-b221-f235e6eecf30
This commit is contained in:
parent
2997c2c59e
commit
7484b4cf6b
|
@ -288,16 +288,19 @@ input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly i
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
input[type=text],
|
input[type=text],
|
||||||
|
input[type=email],
|
||||||
textarea {
|
textarea {
|
||||||
color: #666;
|
color: #666;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
textarea:focus {
|
textarea:focus {
|
||||||
color: #111;
|
color: #111;
|
||||||
}
|
}
|
||||||
input[type=text] {
|
input[type=text],
|
||||||
|
input[type=email] {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
|
|
Reference in New Issue