Reputation: 251
Input type Date and select box not picking its styles on chrome and safari on Iphone 6s Plus/ IOS.
.account_form .form .form-control {
background: rgba(255,255,255,0.3) !important;
border: 0;
border-radius: 0 !important;
color: yellow;
font-weight: bold;
padding-left: 50px;
}
Upvotes: 0
Views: 497
Reputation: 3787
Please try to add:
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
Upvotes: 1