1
mirror of https://github.com/pure-css/pure synced 2024-11-22 05:32:20 +01:00

Merge pull request #263 from funkyvisions/noinput

Added styling for input tag without type
This commit is contained in:
Tilo 2013-12-18 08:41:20 -08:00
commit b83a8208bd
2 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,7 @@
margin: 0.7em 0 0;
}
.pure-form input:not([type]),
.pure-form input[type="text"],
.pure-form input[type="password"],
.pure-form input[type="email"],
@ -22,6 +23,7 @@
display: block;
}
.pure-group input:not([type]),
.pure-group input[type="text"],
.pure-group input[type="password"],
.pure-group input[type="email"],

View File

@ -1,3 +1,4 @@
.pure-form input:not([type]),
.pure-form input[type="text"],
.pure-form input[type="password"],
.pure-form input[type="email"],
@ -30,6 +31,7 @@
box-sizing: border-box;
}
.pure-form input:not([type]):focus,
.pure-form input[type="text"]:focus,
.pure-form input[type="password"]:focus,
.pure-form input[type="email"]:focus,
@ -62,6 +64,7 @@
margin: 0.5em 0;
display: block;
}
.pure-form input:not([type])[disabled],
.pure-form input[type="text"][disabled],
.pure-form input[type="password"][disabled],
.pure-form input[type="email"][disabled],
@ -132,6 +135,7 @@
border-bottom: 1px solid #e5e5e5;
}
.pure-form-stacked input:not([type]),
.pure-form-stacked input[type="text"],
.pure-form-stacked input[type="password"],
.pure-form-stacked input[type="email"],