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.
54 lines
1.6 KiB
54 lines
1.6 KiB
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
import type { TableToken } from './index';
|
|
|
|
const genRadiusStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
|
|
const { componentCls, tableRadius } = token;
|
|
return {
|
|
[`${componentCls}-wrapper`]: {
|
|
[componentCls]: {
|
|
// https://github.com/ant-design/ant-design/issues/39115#issuecomment-1362314574
|
|
[`${componentCls}-title, ${componentCls}-header`]: {
|
|
borderRadius: `${tableRadius}px ${tableRadius}px 0 0`,
|
|
},
|
|
|
|
[`${componentCls}-title + ${componentCls}-container`]: {
|
|
borderStartStartRadius: 0,
|
|
borderStartEndRadius: 0,
|
|
|
|
// https://github.com/ant-design/ant-design/issues/41975
|
|
[`${componentCls}-header, table`]: {
|
|
borderRadius: 0,
|
|
},
|
|
|
|
'table > thead > tr:first-child': {
|
|
'th:first-child, th:last-child, td:first-child, td:last-child': {
|
|
borderRadius: 0,
|
|
},
|
|
},
|
|
},
|
|
|
|
'&-container': {
|
|
borderStartStartRadius: tableRadius,
|
|
borderStartEndRadius: tableRadius,
|
|
|
|
'table > thead > tr:first-child': {
|
|
'> *:first-child': {
|
|
borderStartStartRadius: tableRadius,
|
|
},
|
|
|
|
'> *:last-child': {
|
|
borderStartEndRadius: tableRadius,
|
|
},
|
|
},
|
|
},
|
|
|
|
'&-footer': {
|
|
borderRadius: `0 0 ${tableRadius}px ${tableRadius}px`,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export default genRadiusStyle;
|
|
|