SelectField - 更改弹出窗口颜色
SelectField - change popover color
是否可以在 material-ui 中更改 SelectField
的弹出框背景颜色?
我检查了生成的主题,但没有 selectField
或 popover
键。尝试更改 menu
的 backgroundColor
和 containerBackgroundColor
但它对 SelectField
没有影响
是的,这是可能的。在幕后 SelectField
使用 DropDownMenu
组件,你可以看到 here 有一个 属性 menuStyle - 这就是你将用于更改弹出窗口样式。
示例:
<SelectField menuStyle={{background: '#ddd'}} ...otherProps >
是否可以在 material-ui 中更改 SelectField
的弹出框背景颜色?
我检查了生成的主题,但没有 selectField
或 popover
键。尝试更改 menu
的 backgroundColor
和 containerBackgroundColor
但它对 SelectField
是的,这是可能的。在幕后 SelectField
使用 DropDownMenu
组件,你可以看到 here 有一个 属性 menuStyle - 这就是你将用于更改弹出窗口样式。
示例:
<SelectField menuStyle={{background: '#ddd'}} ...otherProps >