mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
8e4f1c6836
* refactor: token update * chore: add js doc * test: fix lint * test: update test
23 lines
642 B
TypeScript
23 lines
642 B
TypeScript
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../theme';
|
|
import type { TableToken } from './index';
|
|
|
|
// ========================= Placeholder ==========================
|
|
const genEmptyStyle: GenerateStyle<TableToken, CSSObject> = token => {
|
|
const { componentCls } = token;
|
|
return {
|
|
[`${componentCls}-wrapper`]: {
|
|
[`${componentCls}-tbody > tr${componentCls}-placeholder`]: {
|
|
textAlign: 'center',
|
|
color: token.colorTextDisabled,
|
|
|
|
'&:hover > td': {
|
|
background: token.colorBgContainer,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export default genEmptyStyle;
|