Get Next button Unreadable in safari
Summary
The Get Next button in safari looks not the same as in other browsers, which makes it unreadable.
Steps to reproduce
- Use Safari on a Mac
- Go to the Request page
Possible Fix
The CSS in Bootstrap v4.3.1 that does this is:
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
This could be fixed by upgrading bootstrap, but I heard that breaks other things.
Another way could be overwriting -webkit-appearance
to none
.
So adding
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: none;
}