forked from mirror/_s
Merge pull request #280 from jayj/jayj-underscores-url-selector
Add `url` to the list of input selectors.
This commit is contained in:
commit
a462ad5720
|
@ -283,6 +283,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="url"],
|
||||||
input[type="password"],
|
input[type="password"],
|
||||||
input[type="search"],
|
input[type="search"],
|
||||||
textarea {
|
textarea {
|
||||||
|
@ -292,6 +293,7 @@ textarea {
|
||||||
}
|
}
|
||||||
input[type="text"]:focus,
|
input[type="text"]:focus,
|
||||||
input[type="email"]:focus,
|
input[type="email"]:focus,
|
||||||
|
input[type="url"]:focus,
|
||||||
input[type="password"]:focus,
|
input[type="password"]:focus,
|
||||||
input[type="search"]:focus,
|
input[type="search"]:focus,
|
||||||
textarea:focus {
|
textarea:focus {
|
||||||
|
@ -299,6 +301,7 @@ textarea:focus {
|
||||||
}
|
}
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="email"],
|
input[type="email"],
|
||||||
|
input[type="url"],
|
||||||
input[type="password"],
|
input[type="password"],
|
||||||
input[type="search"] {
|
input[type="search"] {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
|
|
Reference in New Issue