diff --git a/src/ui/dataTable.less b/src/ui/dataTable.less index 4c7c1ae3..93335a38 100644 --- a/src/ui/dataTable.less +++ b/src/ui/dataTable.less @@ -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; } diff --git a/src/ui/dataTable.tsx b/src/ui/dataTable.tsx index 28b4efe3..21a50571 100644 --- a/src/ui/dataTable.tsx +++ b/src/ui/dataTable.tsx @@ -36,7 +36,10 @@ export class DataTable extends React.Component<{ }> { render() { return ( -
+