forked from mirror/_s
Add `url` to the list of input selectors
This commit is contained in:
parent
c3901be10c
commit
1108a8a582
|
@ -282,6 +282,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 {
|
||||||
|
@ -291,6 +292,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 {
|
||||||
|
@ -298,6 +300,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