first commit
This commit is contained in:
28
frontend/node_modules/antd/es/table/style/summary.js
generated
vendored
Normal file
28
frontend/node_modules/antd/es/table/style/summary.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import { unit } from '@ant-design/cssinjs';
|
||||
const genSummaryStyle = token => {
|
||||
const {
|
||||
componentCls,
|
||||
lineWidth,
|
||||
tableBorderColor,
|
||||
calc
|
||||
} = token;
|
||||
const tableBorder = `${unit(lineWidth)} ${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 ${unit(calc(lineWidth).mul(-1).equal())} 0 ${tableBorderColor}`
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
export default genSummaryStyle;
|
||||
Reference in New Issue
Block a user