mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
Fixed bug that made DataTable background and border dissappear while antd animates dropdowns in Chrome.
This commit is contained in:
parent
102022e7df
commit
58b8c66a89
@ -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;
|
||||
}
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user