In its natural state, the submit button appears in the default color, lacking any specific style when viewed in Chrome.
Once the CSS rule
input[type="submit"]{border-radius: 2px;}
is applied, the button transforms, suddenly changing color and showing a shadow on the right and bottom edges of the border. This occurs even in the case of body{direction:rtl;}
.
What is causing this sudden change? I simply desire the default button with a slightly rounded border - nothing more. Is there a solution to this issue, or must I resort to using an image instead?