Merge pull request #28 from Ontraport/OPAGEZ-49

OPAGEZ-49
This commit is contained in:
jonpreston 2015-11-05 14:04:30 -08:00
commit 2a7fc97d7f

View File

@ -212,8 +212,26 @@ input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="password"],
textarea,
select {
font-size: 15px;
}
input[type="date"] {
height: 38px;
padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
background-color: #fff;
border: 1px solid #D1D1D1;
border-radius: 4px;
box-shadow: none;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type="date"]:focus {
border: 1px solid #33C3F0;
outline: 0;
}