mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
a1f77f3694
* feat: Table support cssVar * fix: fix * fix: fix * Update check-cssinjs.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/table/style/fixed.ts Co-authored-by: MadCcc <madccc@foxmail.com> Signed-off-by: lijianan <574980606@qq.com> * fix: fix * fix: fix * fix: fix * fix: fix * fix: fix * fix: fix * fix: fix * fix: fix * feat: optimize token * chore: update --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: MadCcc <madccc@foxmail.com> Co-authored-by: MadCcc <1075746765@qq.com>
174 lines
5.3 KiB
TypeScript
174 lines
5.3 KiB
TypeScript
import { unit, type CSSObject } from '@ant-design/cssinjs';
|
|
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
import type { TableToken } from './index';
|
|
|
|
const genBorderedStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
|
|
const {
|
|
componentCls,
|
|
lineWidth,
|
|
lineType,
|
|
tableBorderColor,
|
|
tableHeaderBg,
|
|
tablePaddingVertical,
|
|
tablePaddingHorizontal,
|
|
calc,
|
|
} = token;
|
|
const tableBorder = `${unit(lineWidth)} ${lineType} ${tableBorderColor}`;
|
|
|
|
const getSizeBorderStyle = (
|
|
size: 'small' | 'middle',
|
|
paddingVertical: number,
|
|
paddingHorizontal: number,
|
|
) => ({
|
|
[`&${componentCls}-${size}`]: {
|
|
[`> ${componentCls}-container`]: {
|
|
[`> ${componentCls}-content, > ${componentCls}-body`]: {
|
|
[`
|
|
> table > tbody > tr > th,
|
|
> table > tbody > tr > td
|
|
`]: {
|
|
[`> ${componentCls}-expanded-row-fixed`]: {
|
|
margin: `${unit(calc(paddingVertical).mul(-1).equal())}
|
|
${unit(calc(calc(paddingHorizontal).add(lineWidth)).mul(-1).equal())}`,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
return {
|
|
[`${componentCls}-wrapper`]: {
|
|
[`${componentCls}${componentCls}-bordered`]: {
|
|
// ============================ Title =============================
|
|
[`> ${componentCls}-title`]: {
|
|
border: tableBorder,
|
|
borderBottom: 0,
|
|
},
|
|
|
|
// ============================ Content ============================
|
|
[`> ${componentCls}-container`]: {
|
|
borderInlineStart: tableBorder,
|
|
borderTop: tableBorder,
|
|
|
|
[`
|
|
> ${componentCls}-content,
|
|
> ${componentCls}-header,
|
|
> ${componentCls}-body,
|
|
> ${componentCls}-summary
|
|
`]: {
|
|
'> table': {
|
|
// ============================= Cell =============================
|
|
[`
|
|
> thead > tr > th,
|
|
> thead > tr > td,
|
|
> tbody > tr > th,
|
|
> tbody > tr > td,
|
|
> tfoot > tr > th,
|
|
> tfoot > tr > td
|
|
`]: {
|
|
borderInlineEnd: tableBorder,
|
|
},
|
|
|
|
// ============================ Header ============================
|
|
'> thead': {
|
|
'> tr:not(:last-child) > th': {
|
|
borderBottom: tableBorder,
|
|
},
|
|
|
|
'> tr > th::before': {
|
|
backgroundColor: 'transparent !important',
|
|
},
|
|
},
|
|
|
|
// Fixed right should provides additional border
|
|
[`
|
|
> thead > tr,
|
|
> tbody > tr,
|
|
> tfoot > tr
|
|
`]: {
|
|
[`> ${componentCls}-cell-fix-right-first::after`]: {
|
|
borderInlineEnd: tableBorder,
|
|
},
|
|
},
|
|
|
|
// ========================== Expandable ==========================
|
|
[`
|
|
> tbody > tr > th,
|
|
> tbody > tr > td
|
|
`]: {
|
|
[`> ${componentCls}-expanded-row-fixed`]: {
|
|
margin: `${unit(calc(tablePaddingVertical).mul(-1).equal())} ${unit(
|
|
calc(calc(tablePaddingHorizontal).add(lineWidth)).mul(-1).equal(),
|
|
)}`,
|
|
'&::after': {
|
|
position: 'absolute',
|
|
top: 0,
|
|
insetInlineEnd: lineWidth,
|
|
bottom: 0,
|
|
borderInlineEnd: tableBorder,
|
|
content: '""',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
// ============================ Scroll ============================
|
|
[`&${componentCls}-scroll-horizontal`]: {
|
|
[`> ${componentCls}-container > ${componentCls}-body`]: {
|
|
'> table > tbody': {
|
|
[`
|
|
> tr${componentCls}-expanded-row,
|
|
> tr${componentCls}-placeholder
|
|
`]: {
|
|
[`> th, > td`]: {
|
|
borderInlineEnd: 0,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
// ============================ Size ============================
|
|
...getSizeBorderStyle(
|
|
'middle',
|
|
token.tablePaddingVerticalMiddle,
|
|
token.tablePaddingHorizontalMiddle,
|
|
),
|
|
...getSizeBorderStyle(
|
|
'small',
|
|
token.tablePaddingVerticalSmall,
|
|
token.tablePaddingHorizontalSmall,
|
|
),
|
|
|
|
// ============================ Footer ============================
|
|
[`> ${componentCls}-footer`]: {
|
|
border: tableBorder,
|
|
borderTop: 0,
|
|
},
|
|
},
|
|
|
|
// ============================ Nested ============================
|
|
[`${componentCls}-cell`]: {
|
|
[`${componentCls}-container:first-child`]: {
|
|
// :first-child to avoid the case when bordered and title is set
|
|
borderTop: 0,
|
|
},
|
|
// https://github.com/ant-design/ant-design/issues/35577
|
|
'&-scrollbar:not([rowspan])': {
|
|
boxShadow: `0 ${unit(lineWidth)} 0 ${unit(lineWidth)} ${tableHeaderBg}`,
|
|
},
|
|
},
|
|
|
|
[`${componentCls}-bordered ${componentCls}-cell-scrollbar`]: {
|
|
borderInlineEnd: tableBorder,
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export default genBorderedStyle;
|