如何更改“在材质UI中选择”的文本,图标和下划线颜色

问题描述 投票:0回答:1

所以我想将Material UI Select组件的文本,图标和下划线颜色从黑色更改为白色,如下所示:

enter image description here

由MenuItem实现的选项文本颜色默认情况下看起来很好,因为它们在白色上是灰色的:

enter image description here

我原来的documentation of Select没有多大帮助,因为它没有说我应该在类中覆盖哪个CSS类。

import React from "react";
import ReactDOM from "react-dom";
import { withStyles } from "@material-ui/core/styles";
import FormControl from "@material-ui/core/FormControl";
import Select from "@material-ui/core/Select";
import MenuItem from "@material-ui/core/MenuItem";

const styles = theme => ({
  root: {
    background: "blue",
    backgroundColor: "blue"
  }
});

const OPTIONS = {
  A: "Option A",
  B: "Option B"
};

class App extends React.Component {
  state = {
    option: OPTIONS.A
  };
  handleOptionChange = event => {
    return this.setState({ option: event.target.value });
  };

  render() {
    const { classes } = this.props;
    return (
      <div className={classes.root}>
        <FormControl variant="outlined">
          <Select
            value={this.state.option}
            onChange={this.handleOptionChange}
            name="optionsDropdown"
          >
            <MenuItem value={OPTIONS.A}>{OPTIONS.A}</MenuItem>
            <MenuItem value={OPTIONS.B}>{OPTIONS.B}</MenuItem>
          </Select>
        </FormControl>
      </div>
    );
  }
}
const DemoApp = withStyles(styles)(App);
const rootElement = document.getElementById("root");
ReactDOM.render(<DemoApp />, rootElement);
reactjs material-ui
1个回答
0
投票

通过覆盖root和icon类找到了一种方法:

const styles = theme => ({
  root: {
    background: "blue",
  },
  whiteColor: {
    color: "white"
  }
});

 ... 

<Select
  classes={{
    root: classes.whiteColor,
    icon: classes.whiteColor
  }} 
/> 

https://codesandbox.io/s/x3j9lz9z2o

enter image description here

唯一要改变的是下划线颜色。

© www.soinside.com 2019 - 2024. All rights reserved.