Link: https://material-ui.com/demos/selects/#multiple-select
Please see this using developer's tool with mobile mode.
| Tech | Version |
|--------------|---------|
| Material-UI | v3.1.0 |
| React | v16.4.1 |
| Browser | Google Chrome 69 |
@ryusaka Thank you for reporting the issue! It's a regression introduced by #12602. The following diff fixes the problem.
textAlign: 'left',
paddingTop: 12,
paddingBottom: 12,
- '&$selected': {
+ '&$selected, &$selected:hover': {
backgroundColor: theme.palette.action.selected,
},
},
Do you want to work on it :)?
Most helpful comment
@ryusaka Thank you for reporting the issue! It's a regression introduced by #12602. The following diff fixes the problem.
https://github.com/mui-org/material-ui/blob/2802a1c9c39343e21f6e372c0cf255bc3b82b2f2/packages/material-ui/src/ListItem/ListItem.js#L18-L24
Do you want to work on it :)?