Fixed bug that made DataTable background and border dissappear while antd animates dropdowns in Chrome.

This commit is contained in:
Daan Vanden Bosch 2019-06-13 13:41:15 +02:00
parent 102022e7df
commit 58b8c66a89
2 changed files with 9 additions and 3 deletions

View File

@ -1,9 +1,12 @@
@import "./theme.less";
.DataTable > * {
.DataTable {
// position: relative; necessary to avoid background and border dissappearing while antd
// animates dropdowns in Chrome. No idea why this prevents it...
position: relative;
border: solid 1px @border-color-base;
background-color: lighten(@component-background, 3%);
& * {
scrollbar-color: @table-scrollbar-thumb-color @table-scrollbar-color;
}

View File

@ -36,7 +36,10 @@ export class DataTable<T> extends React.Component<{
}> {
render() {
return (
<div className="DataTable">
<div
className="DataTable"
style={{ width: this.props.width, height: this.props.height }}
>
<MultiGrid
width={this.props.width}
height={this.props.height}