list all html5 input types. fixes #885

This commit is contained in:
mrwweb 2015-12-08 08:28:48 -08:00
parent e57d8c38b4
commit 309037e2ad
2 changed files with 61 additions and 3 deletions

View file

@ -3,6 +3,16 @@ input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
color: $color__text-input;
border: 1px solid $color__border-input;
@ -13,11 +23,25 @@ textarea {
}
}
select {
border: 1px solid #ccc;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
padding: 3px;
}