在我的ReactJS应用程序中,我使用Material UI和React引导表。
在一个单元格中,我使用材质用户界面
IconButton
这样地:
<IconButton tooltip={t('tooltips:editRegulation')} tooltipPosition={'left'}
onClick={() => this.props.history.push("/pms-records/edit/" + row.pmsFindingId)}>{cell}}>
<FontIcon className="fa fa-pencil" aria-hidden="true"/>
</IconButton>
结果是:
工具提示由表格单元格边框剪切。我试图改变
z-index
读下面这个:
https://github.com/mui-org/material-ui/issues/5912
但没有解决办法。
有什么提示吗?
提前谢谢