Material-ui: [AutoComplete] Style Issues

Created on 4 Sep 2016  路  8Comments  路  Source: mui-org/material-ui

Problem description

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

screen shot 2016-09-04 at 3 57 01 pm

Caveat: This shows correctly on the latest Firefox and Safari.
screen shot 2016-09-04 at 4 26 59 pm

Steps to reproduce

        import AutoComplete from 'material-ui/AutoComplete';
        ...
        <AutoComplete
          hintText="Test"
          dataSource={['Pokemon Mini', 'Playstation', 'Playstation 2']}
          />

Versions

  • Material-UI: 0.15.4
  • React: 15.3.1
  • Browser: Chrome version: 52.0.2743.116.
Autocomplete

All 8 comments

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

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ericraffin picture ericraffin  路  3Comments

sys13 picture sys13  路  3Comments

finaiized picture finaiized  路  3Comments

ghost picture ghost  路  3Comments

chris-hinds picture chris-hinds  路  3Comments