mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 12:38:58 +08:00
3871763950
* feat: steps support cssVars * fix: fix style * Update check-cssinjs.tsx * fix: fix bug * style: code format * fix: fix bug * refactor: wireframe & tailTop * wip: fix taiTop * fix: remove tailTop and use token calc top fix: remove tailTop and use token calc top perf: add annotation --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: lijianan <574980606@qq.com>
77 lines
2.5 KiB
TypeScript
77 lines
2.5 KiB
TypeScript
import { unit, type CSSObject } from '@ant-design/cssinjs';
|
|
import type { StepsToken } from '.';
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
|
|
const genStepsVerticalStyle: GenerateStyle<StepsToken, CSSObject> = (token) => {
|
|
const { componentCls, iconSizeSM, iconSize } = token;
|
|
|
|
return {
|
|
[`&${componentCls}-vertical`]: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
|
|
[`> ${componentCls}-item`]: {
|
|
display: 'block',
|
|
flex: '1 0 auto',
|
|
paddingInlineStart: 0,
|
|
overflow: 'visible',
|
|
|
|
[`${componentCls}-item-icon`]: {
|
|
float: 'left',
|
|
marginInlineEnd: token.margin,
|
|
},
|
|
[`${componentCls}-item-content`]: {
|
|
display: 'block',
|
|
minHeight: token.calc(token.controlHeight).mul(1.5).equal(),
|
|
overflow: 'hidden',
|
|
},
|
|
[`${componentCls}-item-title`]: {
|
|
lineHeight: `${unit(iconSize)}`,
|
|
},
|
|
[`${componentCls}-item-description`]: {
|
|
paddingBottom: token.paddingSM,
|
|
},
|
|
},
|
|
[`> ${componentCls}-item > ${componentCls}-item-container > ${componentCls}-item-tail`]: {
|
|
position: 'absolute',
|
|
top: 0,
|
|
insetInlineStart: token.calc(iconSize).div(2).sub(token.lineWidth).equal(),
|
|
width: token.lineWidth,
|
|
height: '100%',
|
|
padding: `${unit(token.calc(token.marginXXS).mul(1.5).add(iconSize).equal())} 0 ${unit(
|
|
token.calc(token.marginXXS).mul(1.5).equal(),
|
|
)}`,
|
|
|
|
'&::after': {
|
|
width: token.lineWidth,
|
|
height: '100%',
|
|
},
|
|
},
|
|
[`> ${componentCls}-item:not(:last-child) > ${componentCls}-item-container > ${componentCls}-item-tail`]:
|
|
{
|
|
display: 'block',
|
|
},
|
|
[` > ${componentCls}-item > ${componentCls}-item-container > ${componentCls}-item-content > ${componentCls}-item-title`]:
|
|
{
|
|
'&::after': {
|
|
display: 'none',
|
|
},
|
|
},
|
|
[`&${componentCls}-small ${componentCls}-item-container`]: {
|
|
[`${componentCls}-item-tail`]: {
|
|
position: 'absolute',
|
|
top: 0,
|
|
insetInlineStart: token.calc(iconSizeSM).div(2).sub(token.lineWidth).equal(),
|
|
padding: `${unit(token.calc(token.marginXXS).mul(1.5).add(iconSizeSM).equal())} 0 ${unit(
|
|
token.calc(token.marginXXS).mul(1.5).equal(),
|
|
)}`,
|
|
},
|
|
[`${componentCls}-item-title`]: {
|
|
lineHeight: `${unit(iconSizeSM)}`,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
export default genStepsVerticalStyle;
|