Howto style date input on iOS

I have this in my template:

    <div class="item timesheet-detail-label-color">
      Date
      <span class="timesheet-detail-right">
        <input type="date" ng-model="timesheet.currentDate" class="timesheet-detail-right-input">
      </span>
    </div>

I’m now getting a completely different style for the date selector. Is it possible to have the same dropdown icon like start time and end time, while keeping the integrated iOS date editor when it’s clicked?

1 Like

Found a solution for this?

My date input also looks like that on IOS and i hate it.

Try this (css):

input[type=date] {  // or use a class
    -webkit-appearance: inherit !important;
}