Open james2doyle opened 7 years ago
Ahh yes. The problem is that using appearance: none;
will require an arrow SVG to be included with Wing (increasing the size by a significant amount as different colors will need to be used as well). Border radius is already set on select elements, but it doesn't effect them.
Well, you can build an arrow in CSS or you can also use an arrow character ala ▼ or ▲
You can see how round this is on OSX (and probably on iOS as well). You can remove this using
-webkit-border-radius: 0;
or using-webkit-appearance: none;
and rebuilding a select from "scratch"