Browse Source

fix: when table filter, the border will be black (#39938)

pull/39945/head
JarvisArt 2 years ago
committed by GitHub
parent
commit
06e0b35b6e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/table/style/index.tsx

2
components/table/style/index.tsx

@ -176,6 +176,7 @@ const genTableStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
'> tr': {
'> td': {
borderTop: tableBorder,
borderBottom: 'transparent',
},
'&:last-child > td': {
@ -185,6 +186,7 @@ const genTableStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
[`&:first-child > td,
&${componentCls}-measure-row + tr > td`]: {
borderTop: 'none',
borderTopColor: 'transparent',
},
},
},

Loading…
Cancel
Save