forked from mirror/_s
Password Inputs
Adds password input types to styles for text and email inputs.
This commit is contained in:
parent
a395e1f7a3
commit
2f0cd22d5b
|
@ -281,6 +281,7 @@ input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly i
|
||||||
}
|
}
|
||||||
input[type=text],
|
input[type=text],
|
||||||
input[type=email],
|
input[type=email],
|
||||||
|
input[type=password],
|
||||||
textarea {
|
textarea {
|
||||||
color: #666;
|
color: #666;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
|
@ -288,11 +289,13 @@ textarea {
|
||||||
}
|
}
|
||||||
input[type=text]:focus,
|
input[type=text]:focus,
|
||||||
input[type=email]:focus,
|
input[type=email]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
textarea:focus {
|
textarea:focus {
|
||||||
color: #111;
|
color: #111;
|
||||||
}
|
}
|
||||||
input[type=text],
|
input[type=text],
|
||||||
input[type=email] {
|
input[type=email],
|
||||||
|
input[type=password] {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
|
|
Reference in New Issue