You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
import type { TableToken } from './index';
|
|
|
|
const genStickyStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
|
|
const {
|
|
componentCls,
|
|
opacityLoading,
|
|
tableScrollThumbBg,
|
|
tableScrollThumbBgHover,
|
|
tableScrollThumbSize,
|
|
tableScrollBg,
|
|
zIndexTableSticky,
|
|
} = token;
|
|
const tableBorder = `${token.lineWidth}px ${token.lineType} ${token.tableBorderColor}`;
|
|
return {
|
|
[`${componentCls}-wrapper`]: {
|
|
[`${componentCls}-sticky`]: {
|
|
'&-holder': {
|
|
position: 'sticky',
|
|
zIndex: zIndexTableSticky,
|
|
background: token.colorBgContainer,
|
|
},
|
|
|
|
'&-scroll': {
|
|
position: 'sticky',
|
|
bottom: 0,
|
|
height: `${tableScrollThumbSize}px !important`,
|
|
zIndex: zIndexTableSticky,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
background: tableScrollBg,
|
|
borderTop: tableBorder,
|
|
opacity: opacityLoading,
|
|
|
|
'&:hover': {
|
|
transformOrigin: 'center bottom',
|
|
},
|
|
|
|
// fake scrollbar style of sticky
|
|
'&-bar': {
|
|
height: tableScrollThumbSize,
|
|
backgroundColor: tableScrollThumbBg,
|
|
borderRadius: 100,
|
|
transition: `all ${token.motionDurationSlow}, transform none`,
|
|
position: 'absolute',
|
|
bottom: 0,
|
|
|
|
'&:hover, &-active': {
|
|
backgroundColor: tableScrollThumbBgHover,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export default genStickyStyle;
|
|
|