代码之家  ›  专栏  ›  技术社区  ›  KiwiCoder

如何在不使用muithemeProvider的情况下覆盖MaterialUI文本字段组件的样式?

  •  3
  • KiwiCoder  · 技术社区  · 6 年前

    如何隐藏/删除textfield组件中的下划线 没有 使用以下代码:

    const theme = createMuiTheme({
      overrides: {
        MuiInput: {
          underline: {
            '&:hover:not($disabled):before': {
              backgroundColor: 'rgba(0, 188, 212, 0.7)',
            },
          },
        },
      },
    });
    

    我想用道具,根据文件: https://material-ui.com/api/input/

    我应该可以改变下划线道具,但它不起作用。

    3 回复  |  直到 6 年前
        1
  •  12
  •   thirtydot    6 年前

    你就是这样做的:

    <TextField
        id="name"
        label="Name"
        value={this.state.name}
        margin="normal"
        InputProps={{disableUnderline: true}}
    />
    

    我是怎么想出来的?

    您已链接到 Input documentation 它确实有一个 disableUnderline 支柱。

    但是,您使用的是 TextField component :

    重要的是要理解文本字段是一个简单的 以下组件之上的抽象:

    • 窗体控件
    • 输入标签
    • 输入
    • 表单帮助文本

    如果您查看可用的道具列表 文本字段 :

    inputprops-对象-应用于输入元素的属性。

        2
  •  2
  •   Jonghee Park    6 年前

    我找到了解决这个问题的方法。

    <TextField InputProps={{classes: {underline: classes.underline}}} />
    
    const styles = theme => ({
      underline: {
        '&:hover': {
          '&:before': {
            borderBottom: ['rgba(0, 188, 212, 0.7)', '!important'],
          }
        },
        '&:before': {
          borderBottom: 'rgba(0, 188, 212, 0.7)',
        }
      }
    })
    
        3
  •  1
  •   juank11memphis    6 年前

    使用最新版本的Material UI,这是我实现此功能的唯一方法:

    <TextField InputProps={{classes: {underline: classes.underline}}} />
    
    const styles = theme => ({
      underline: {
        '&:before': {
          borderBottomColor: colors.white,
        },
        '&:after': {
          borderBottomColor: colors.white,
        },
        '&:hover:before': {
          borderBottomColor: [colors.white, '!important'],
        },
      },
    })