mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
73 lines
2.4 KiB
TypeScript
73 lines
2.4 KiB
TypeScript
// Style as inline component
|
|
import { unit } from '@ant-design/cssinjs';
|
|
|
|
import { genCompactItemStyle } from '../../style/compact-item';
|
|
import { genCompactItemVerticalStyle } from '../../style/compact-item-vertical';
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
import { genSubStyleComponent } from '../../theme/internal';
|
|
import type { ButtonToken } from './token';
|
|
import { prepareComponentToken, prepareToken } from './token';
|
|
|
|
const genButtonCompactStyle: GenerateStyle<ButtonToken> = (token) => {
|
|
const { componentCls, calc } = token;
|
|
|
|
return {
|
|
[componentCls]: {
|
|
// Special styles for Primary Button
|
|
[`&-compact-item${componentCls}-primary`]: {
|
|
[`&:not([disabled]) + ${componentCls}-compact-item${componentCls}-primary:not([disabled])`]:
|
|
{
|
|
position: 'relative',
|
|
|
|
'&:before': {
|
|
position: 'absolute',
|
|
top: calc(token.lineWidth).mul(-1).equal(),
|
|
insetInlineStart: calc(token.lineWidth).mul(-1).equal(),
|
|
display: 'inline-block',
|
|
width: token.lineWidth,
|
|
height: `calc(100% + ${unit(token.lineWidth)} * 2)`,
|
|
backgroundColor: token.colorPrimaryHover,
|
|
content: '""',
|
|
},
|
|
},
|
|
},
|
|
// Special styles for Primary Button
|
|
'&-compact-vertical-item': {
|
|
[`&${componentCls}-primary`]: {
|
|
[`&:not([disabled]) + ${componentCls}-compact-vertical-item${componentCls}-primary:not([disabled])`]:
|
|
{
|
|
position: 'relative',
|
|
|
|
'&:before': {
|
|
position: 'absolute',
|
|
top: calc(token.lineWidth).mul(-1).equal(),
|
|
insetInlineStart: calc(token.lineWidth).mul(-1).equal(),
|
|
display: 'inline-block',
|
|
width: `calc(100% + ${unit(token.lineWidth)} * 2)`,
|
|
height: token.lineWidth,
|
|
backgroundColor: token.colorPrimaryHover,
|
|
content: '""',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Export ==============================
|
|
export default genSubStyleComponent(
|
|
['Button', 'compact'],
|
|
(token) => {
|
|
const buttonToken = prepareToken(token);
|
|
|
|
return [
|
|
// Space Compact
|
|
genCompactItemStyle(buttonToken),
|
|
genCompactItemVerticalStyle(buttonToken),
|
|
genButtonCompactStyle(buttonToken),
|
|
];
|
|
},
|
|
prepareComponentToken,
|
|
);
|