【发布时间】:2019-06-06 11:26:00
【问题描述】:
在我的 reactJS 应用程序中,我使用 Material UI 和 react-bootstrap-table。
在一个单元格中,我使用 Material UI 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
但没有解决办法。
对我有什么提示吗?
提前致谢
【问题讨论】:
-
你能提供一个可重现的 stackblitz 链接吗?
标签: css reactjs material-ui