Replace single quote with double quotes for attribute selectors.

This commit is contained in:
Matt Sweeney 2013-06-05 22:47:27 -07:00
parent 01551ea44a
commit 46fb38fab5

View File

@ -1,15 +1,15 @@
@media only screen and (max-width : 480px) { @media only screen and (max-width : 480px) {
.pure-form button[type='submit'] { .pure-form button[type="submit"] {
margin: 0.7em 0 0; margin: 0.7em 0 0;
} }
.pure-form input[type='text'], .pure-form input[type="text"],
.pure-form label { .pure-form label {
margin-bottom: 0.3em; margin-bottom: 0.3em;
display: block; display: block;
} }
.pure-group input[type='text'] { .pure-group input[type="text"] {
margin-bottom: 0; margin-bottom: 0;
} }