mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +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,6 +1,9 @@
|
|||||||
@import "./theme.less";
|
@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;
|
border: solid 1px @border-color-base;
|
||||||
background-color: lighten(@component-background, 3%);
|
background-color: lighten(@component-background, 3%);
|
||||||
|
|
||||||
|
@ -36,7 +36,10 @@ export class DataTable<T> extends React.Component<{
|
|||||||
}> {
|
}> {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className="DataTable">
|
<div
|
||||||
|
className="DataTable"
|
||||||
|
style={{ width: this.props.width, height: this.props.height }}
|
||||||
|
>
|
||||||
<MultiGrid
|
<MultiGrid
|
||||||
width={this.props.width}
|
width={this.props.width}
|
||||||
height={this.props.height}
|
height={this.props.height}
|
||||||
|
Loading…
Reference in New Issue
Block a user