mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
8f5b9b5f84
* chore: more * chore: more * refactor: full token
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../_util/theme';
|
|
import type { TableToken } from './index';
|
|
|
|
const genRadiusStyle: GenerateStyle<TableToken, CSSObject> = token => {
|
|
const { componentCls, tableRadius } = token;
|
|
return {
|
|
[`${componentCls}-wrapper`]: {
|
|
[componentCls]: {
|
|
'&-title': {
|
|
borderRadius: `${tableRadius}px ${tableRadius}px 0 0`,
|
|
},
|
|
|
|
'&-title + &-container': {
|
|
borderStartStartRadius: 0,
|
|
borderStartEndRadius: 0,
|
|
|
|
'table > thead > tr:first-child': {
|
|
'th:first-child': {
|
|
borderRadius: 0,
|
|
},
|
|
|
|
'th:last-child': {
|
|
borderRadius: 0,
|
|
},
|
|
},
|
|
},
|
|
|
|
'&-container': {
|
|
borderStartStartRadius: tableRadius,
|
|
borderStartEndRadius: tableRadius,
|
|
|
|
'table > thead > tr:first-child': {
|
|
'th:first-child': {
|
|
borderStartStartRadius: tableRadius,
|
|
},
|
|
|
|
'th:last-child': {
|
|
borderStartEndRadius: tableRadius,
|
|
},
|
|
},
|
|
},
|
|
|
|
'&-footer': {
|
|
borderRadius: `0 0 ${tableRadius}px ${tableRadius}px`,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export default genRadiusStyle;
|