style: tweak Table column header move transition (#50605)

pull/50607/head
afc163 5 months ago committed by GitHub
parent 2945441bbe
commit de92a2c363
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -10,7 +10,9 @@ const genSorterStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
[`${componentCls}-thead th${componentCls}-column-has-sorters`]: {
outline: 'none',
cursor: 'pointer',
transition: `all ${token.motionDurationSlow}`,
// why left 0s? Avoid column header move with transition when left is changed
// https://github.com/ant-design/ant-design/issues/50588
transition: `all ${token.motionDurationSlow}, left 0s`,
'&:hover': {
background: token.tableHeaderSortHoverBg,

Loading…
Cancel
Save