Here's a demonstration: http://jsfiddle.net/WpJRk/
I've incorporated a color picker into my webpage using the new input type "color":
<input type="color">
However, I've noticed that there is an unwanted black border within the element that seems impossible to remove.
There appears to be a 1px black box inside the field.
I'm not keen on having this box inside. Even after using:
-webkit-appearance: none;
the issue persists without improvement.
Is there any solution available?