timmse
2
Hi Stein,
Thanks so much for your report!
I can’t find any problem with the number fields. The date picker problem is a known flatpicker (the JS library we use for the date picker) problem:
In the GitHub report, you’ll find some custom CSS that might fix the issue:
.flatpickr-mobile:before {
content: attr(placeholder);
color: gray;
}
.flatpickr-mobile:focus[value]:not([value=""]):before {
display: none;
}
input[type="hidden"][value]:not([value=""]) + .flatpickr-mobile:before {
display: none;
}
Best regards,
timmse