I've been working with reactjs and material ui, but I'm having trouble changing the background color of selected items in various components, like in the SelectField.
<SelectField
floatingLabelText="Choose a sport"
value={this.state.value}
onChange={this.handleChange.bind(this)}
menuStyle={{color:'red'}}
menuItemStyle={{color:'black', borderBottom:'1px solid white'}}
listStyle={{backgroundColor:'rgb(0, 188, 212)'}}
labelStyle={{color:'black'}}
I'm not sure how to implement hover functionality or adjust the selected item's color. Has anyone encountered this issue before?
Thanks for any insights!