材质UI withStyles连接类

时间:2020-04-18 19:59:29

标签: reactjs material-ui handler react-with-styles

我在MUI中有带有类的withStyles元素。我想在类名中添加处理程序到另一个类。在我的代码中,我标记了这个地方。我希望使处理程序进入tableRow tableCell

这怎么办?

const styles = theme => ({
    table: {
    position: 'absolute',
    overflow: 'auto',
        '&:focus':{
            outline: 'none',
        },

  },
    tableRow: {
        display: 'table-row',
        '&:not(:last-child) ${tableCell}': { // <- I have problem here
            borderBottom: '1px solid rgba(224, 224, 224, 1)'
        }
    },
    tableCell: {
        display: 'table-cell',
        cursor: 'default',
        overflow: 'hidden',
        whiteSpace: 'nowrap',
        textOverflow: 'ellipsis',
        userSelect: 'none',
        '&.select': {
            backgroundColor: '#1A237E',
            color: 'white'
        },
        '&.odd': {
            backgroundColor: '#F5F5F5'
        },
        '&.clickable': {
            cursor: 'pointer'
        }
    },
});

0 个答案:

没有答案