mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
f4411d9393
* refactor: Steps cssInJs add basic structure * refactor: change Component Steps less into cssInJs * refactor: ♻️ steps cssInJs code formated * style: 💄 change Steps cssinjs left and right into Logical Properties * style: 💄 steps cssinjs add FIXME for number hardcode * style: 💄 steps cssinjs dismiss useless rtl style * style: 💄 step cssinjs fix the 'not compatible with RTL mode' warning and fix the style in RTL mode * style: code formated for FIXME * style: revert the change about _skip_check_ * style: step cssinjs margin/padding used with Logical properties * ci: fix lint check * style: fix the style on RTL * style: try fix the step subtitle order on RTL mode * style: optimization the style on RTL and dismiss duplicate styles with logical properties
80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../_util/theme';
|
|
import type { StepsToken } from '.';
|
|
|
|
const genStepsVerticalStyle: GenerateStyle<StepsToken, CSSObject> = token => {
|
|
const {
|
|
componentCls,
|
|
stepsSmallIconSize,
|
|
stepsVerticalIconWidth,
|
|
stepsVerticalTailWidth,
|
|
stepsVerticalTailWidthSm,
|
|
stepsIconSize,
|
|
} = token;
|
|
|
|
return {
|
|
[`&${componentCls}-vertical`]: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
|
|
[`> ${componentCls}-item`]: {
|
|
display: 'block',
|
|
flex: '1 0 auto',
|
|
paddingInlineStart: 0, // FIXME: hardcode in v4
|
|
overflow: 'visible',
|
|
|
|
[`${componentCls}-item-icon`]: {
|
|
float: 'left',
|
|
marginInlineEnd: stepsVerticalIconWidth,
|
|
},
|
|
[`${componentCls}-item-content`]: {
|
|
display: 'block',
|
|
minHeight: 48, // FIXME: hardcode in v4
|
|
overflow: 'hidden',
|
|
},
|
|
[`${componentCls}-item-title`]: {
|
|
lineHeight: `${stepsIconSize}px`,
|
|
},
|
|
[`${componentCls}-item-description`]: {
|
|
paddingBottom: 12, // FIXME: hardcode in v4
|
|
},
|
|
},
|
|
[`> ${componentCls}-item > ${componentCls}-item-container > ${componentCls}-item-tail`]: {
|
|
position: 'absolute',
|
|
top: 0, // FIXME: hardcode in v4
|
|
insetInlineStart: stepsVerticalTailWidth,
|
|
width: 1, // FIXME: hardcode in v4
|
|
height: '100%', // FIXME: hardcode in v4
|
|
padding: `${stepsIconSize + 6}px 0 6px`, // FIXME: hardcode in v4
|
|
|
|
'&::after': {
|
|
width: 1, // FIXME: hardcode in v4
|
|
height: '100%', // FIXME: hardcode in v4
|
|
},
|
|
},
|
|
[`> ${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, // FIXME: hardcode in v4
|
|
insetInlineStart: stepsVerticalTailWidthSm,
|
|
padding: `${stepsSmallIconSize + 6}px 0 6px`, // FIXME: hardcode in v4
|
|
},
|
|
[`${componentCls}-item-title`]: {
|
|
lineHeight: `${stepsSmallIconSize}px`,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
export default genStepsVerticalStyle;
|