如何覆盖已编译的类?

时间:2018-07-26 14:27:34

标签: reactjs material-ui jss

我试图将重写样式应用于已编译的类名。我的编译代码就像...

onLoadStart

我希望能够定位到像这样的特定项目

<div class="MuiListItemText-root-262" >

在普通CSS中,我可以做const styles = () => { MultiListItemText-root-262: { color: red; } }

如何在JSS中做等效的事情?

1 个答案:

答案 0 :(得分:1)

您不能以这种方式这样做。 类名“ MuiListItemText-root-262”是动态的,并且标识“ 262”不可靠并且可能会更改。

请查看Material UI有关使用JSS覆盖的官方文档:https://material-ui.com/customization/overrides/

根据您想要达到的变化水平,有几种可用的技术。

有关典型的“一次性”替代,请参阅第一个使用withStyles HOC的示例代码

import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import Button from '@material-ui/core/Button';

// We can inject some CSS into the DOM.
const styles = {
  button: {
    background: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
    borderRadius: 3,
    border: 0,
    color: 'white',
    height: 48,
    padding: '0 30px',
    boxShadow: '0 3px 5px 2px rgba(255, 105, 135, .3)',
  },
};

function ClassNames(props) {
  return (
    <Button className={props.classes.button}>
      {props.children ? props.children : 'class names'}
    </Button>
  );
}

ClassNames.propTypes = {
  children: PropTypes.node,
  classes: PropTypes.object.isRequired,
};

export default withStyles(styles)(ClassNames);