mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
de2992f96f
* chore: base move * chore: all path * chore: fix script
84 lines
1.8 KiB
TypeScript
84 lines
1.8 KiB
TypeScript
// deps-lint-skip-all
|
|
import type { FullToken, GenerateStyle } from '../../theme';
|
|
import { genComponentStyleHook } from '../../theme';
|
|
|
|
export interface ComponentToken {
|
|
zIndexPopup: number;
|
|
}
|
|
|
|
export interface PopconfirmToken extends FullToken<'Popconfirm'> {}
|
|
|
|
// =============================== Base ===============================
|
|
const genBaseStyle: GenerateStyle<PopconfirmToken> = token => {
|
|
const {
|
|
componentCls,
|
|
paddingSM,
|
|
padding,
|
|
paddingXXS,
|
|
iconCls,
|
|
zIndexPopup,
|
|
colorText,
|
|
colorWarning,
|
|
marginXS,
|
|
marginXXS,
|
|
fontSize,
|
|
lineHeight,
|
|
} = token;
|
|
|
|
return {
|
|
[componentCls]: {
|
|
zIndex: zIndexPopup,
|
|
|
|
[`${componentCls}-inner-content`]: {
|
|
padding: `${paddingSM}px ${padding}px`,
|
|
color: colorText,
|
|
},
|
|
|
|
[`${componentCls}-message`]: {
|
|
position: 'relative',
|
|
padding: `${paddingXXS}px 0 ${paddingSM}px`,
|
|
color: colorText,
|
|
fontSize,
|
|
display: 'flex',
|
|
flexWrap: 'nowrap',
|
|
alignItems: 'start',
|
|
|
|
[`> ${iconCls}`]: {
|
|
color: colorWarning,
|
|
fontSize,
|
|
flex: 'none',
|
|
lineHeight: 1,
|
|
paddingTop: (Math.round(fontSize * lineHeight) - fontSize) / 2,
|
|
},
|
|
|
|
'&-title': {
|
|
flex: 'auto',
|
|
marginInlineStart: marginXS,
|
|
},
|
|
},
|
|
|
|
[`${componentCls}-buttons`]: {
|
|
marginBottom: marginXXS,
|
|
textAlign: 'end',
|
|
|
|
button: {
|
|
marginInlineStart: marginXS,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Export ==============================
|
|
export default genComponentStyleHook(
|
|
'Popconfirm',
|
|
token => genBaseStyle(token),
|
|
token => {
|
|
const { zIndexPopupBase } = token;
|
|
|
|
return {
|
|
zIndexPopup: zIndexPopupBase + 60,
|
|
};
|
|
},
|
|
);
|