It is possible that we can change the behavior of the dropdown in Material UI Select? I want to change the behavior of <ul> where it should not look like a pop-up.
What I want to happen is the <li> will encapsulate the selected <ul>
Just like what the 2nd picture attached below:
This is the current Select Component of Material UI

What I want to achieve is something like this:

This is my code:
<FormControl
variant="outlined"
className={clsx(
classes.formControl,
success && classes.success,
danger && classes.danger
)}
required={isRequired}
>
<InputLabel>{label}</InputLabel>
<Select
value={value}
onChange={e => handleOnChange(e)}
// MenuProps={{ classes: { paper: classes.dropdownPaper }}}
label={label}
name={name}
MenuProps={{
classes: { paper: classes.dropdownPaper },
anchorOrigin: {
vertical: "bottom",
horizontal: "left"
},
getContentAnchorEl: null
}}
>
{options.map((opt, index) => {
return (
<MenuItem value={opt.value} key={index}>
{opt.text}
</MenuItem>
);
})}
</Select>
</FormControl>;
border,font,padding, and theoptions' hover background color? Have you achieved some of them? Can you provide an online demo?