A very simple AutoComplete example shows style errors on Chrome version: 52.0.2743.116 and on Opera version 39.0.2256.48

Caveat: This shows correctly on the latest Firefox and Safari.

import AutoComplete from 'material-ui/AutoComplete';
...
<AutoComplete
hintText="Test"
dataSource={['Pokemon Mini', 'Playstation', 'Playstation 2']}
/>
some issue on:
material-ui 0.15.4
chrome 53.0.2785.101 (64-bit)
button, html [type="button"], [type="reset"], [type="submit"] {
@include appearance(none);
}
^ that resolved it for me.
@ybv I'm using sass on my project, and can't import that appearance mixin to try this out. Any idea what that compiles down into for raw css?
@eudisd I got away with this (raw CSS):
/*Global style*/
[type="button"] {
appearance: none !important;
-webkit-appearance: none !important;
cursor: pointer !important;
}
That worked, thanks @arjshiv! Still think this should be fixed upstream.
@eudisd Agreed (and no problem - you're welcome!)
i 'm also encountering this style issue, the css provided doesnt fix my problem
Closed by #4783