amis-rpc-design/node_modules/antd/es/table/style/summary.js
2023-10-07 19:42:30 +08:00

26 lines
645 B
JavaScript

const genSummaryStyle = token => {
const {
componentCls,
lineWidth,
tableBorderColor
} = token;
const tableBorder = `${lineWidth}px ${token.lineType} ${tableBorderColor}`;
return {
[`${componentCls}-wrapper`]: {
[`${componentCls}-summary`]: {
position: 'relative',
zIndex: token.zIndexTableFixed,
background: token.tableBg,
'> tr': {
'> th, > td': {
borderBottom: tableBorder
}
}
},
[`div${componentCls}-summary`]: {
boxShadow: `0 -${lineWidth}px 0 ${tableBorderColor}`
}
}
};
};
export default genSummaryStyle;