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.
51 lines
1.1 KiB
51 lines
1.1 KiB
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
import type { TableToken } from './index';
|
|
|
|
const genStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
|
|
const { componentCls } = token;
|
|
return {
|
|
[`${componentCls}-wrapper-rtl`]: {
|
|
direction: 'rtl',
|
|
table: {
|
|
direction: 'rtl',
|
|
},
|
|
|
|
[`${componentCls}-pagination-left`]: {
|
|
justifyContent: 'flex-end',
|
|
},
|
|
|
|
[`${componentCls}-pagination-right`]: {
|
|
justifyContent: 'flex-start',
|
|
},
|
|
|
|
[`${componentCls}-row-expand-icon`]: {
|
|
'&::after': {
|
|
transform: 'rotate(-90deg)',
|
|
},
|
|
|
|
'&-collapsed::before': {
|
|
transform: 'rotate(180deg)',
|
|
},
|
|
|
|
'&-collapsed::after': {
|
|
transform: 'rotate(0deg)',
|
|
},
|
|
},
|
|
|
|
[`${componentCls}-container`]: {
|
|
'&::before': {
|
|
insetInlineStart: 'unset',
|
|
insetInlineEnd: 0,
|
|
},
|
|
|
|
'&::after': {
|
|
insetInlineStart: 0,
|
|
insetInlineEnd: 'unset',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export default genStyle;
|
|
|