{"ast":null,"code":"/*\n.typography-title(@fontSize; @fontWeight; @lineHeight; @headingColor; @headingMarginBottom;) {\n margin-bottom: @headingMarginBottom;\n color: @headingColor;\n font-weight: @fontWeight;\n fontSize: @fontSize;\n line-height: @lineHeight;\n}\n*/\nimport { gold } from '@ant-design/colors';\nimport { operationUnit } from '../../style';\nconst getTitleStyle = (fontSize, lineHeight, color, token) => {\n const {\n titleMarginBottom,\n fontWeightStrong\n } = token;\n return {\n marginBottom: titleMarginBottom,\n color,\n fontWeight: fontWeightStrong,\n fontSize,\n lineHeight\n };\n};\nexport const getTitleStyles = token => {\n const headings = [1, 2, 3, 4, 5];\n const styles = {};\n headings.forEach(headingLevel => {\n styles[`\n h${headingLevel}&,\n div&-h${headingLevel},\n div&-h${headingLevel} > textarea,\n h${headingLevel}\n `] = getTitleStyle(token[`fontSizeHeading${headingLevel}`], token[`lineHeightHeading${headingLevel}`], token.colorTextHeading, token);\n });\n return styles;\n};\nexport const getLinkStyles = token => {\n const {\n componentCls\n } = token;\n return {\n 'a&, a': Object.assign(Object.assign({}, operationUnit(token)), {\n userSelect: 'text',\n [`&[disabled], &${componentCls}-disabled`]: {\n color: token.colorTextDisabled,\n cursor: 'not-allowed',\n '&:active, &:hover': {\n color: token.colorTextDisabled\n },\n '&:active': {\n pointerEvents: 'none'\n }\n }\n })\n };\n};\nexport const getResetStyles = token => ({\n code: {\n margin: '0 0.2em',\n paddingInline: '0.4em',\n paddingBlock: '0.2em 0.1em',\n fontSize: '85%',\n fontFamily: token.fontFamilyCode,\n background: 'rgba(150, 150, 150, 0.1)',\n border: '1px solid rgba(100, 100, 100, 0.2)',\n borderRadius: 3\n },\n kbd: {\n margin: '0 0.2em',\n paddingInline: '0.4em',\n paddingBlock: '0.15em 0.1em',\n fontSize: '90%',\n fontFamily: token.fontFamilyCode,\n background: 'rgba(150, 150, 150, 0.06)',\n border: '1px solid rgba(100, 100, 100, 0.2)',\n borderBottomWidth: 2,\n borderRadius: 3\n },\n mark: {\n padding: 0,\n // FIXME hardcode in v4\n backgroundColor: gold[2]\n },\n 'u, ins': {\n textDecoration: 'underline',\n textDecorationSkipInk: 'auto'\n },\n 's, del': {\n textDecoration: 'line-through'\n },\n strong: {\n fontWeight: token.fontWeightStrong\n },\n // list\n 'ul, ol': {\n marginInline: 0,\n marginBlock: '0 1em',\n padding: 0,\n li: {\n marginInline: '20px 0',\n marginBlock: 0,\n paddingInline: '4px 0',\n paddingBlock: 0\n }\n },\n ul: {\n listStyleType: 'circle',\n ul: {\n listStyleType: 'disc'\n }\n },\n ol: {\n listStyleType: 'decimal'\n },\n // pre & block\n 'pre, blockquote': {\n margin: '1em 0'\n },\n pre: {\n padding: '0.4em 0.6em',\n whiteSpace: 'pre-wrap',\n wordWrap: 'break-word',\n background: 'rgba(150, 150, 150, 0.1)',\n border: '1px solid rgba(100, 100, 100, 0.2)',\n borderRadius: 3,\n fontFamily: token.fontFamilyCode,\n // Compatible for marked\n code: {\n display: 'inline',\n margin: 0,\n padding: 0,\n fontSize: 'inherit',\n fontFamily: 'inherit',\n background: 'transparent',\n border: 0\n }\n },\n blockquote: {\n paddingInline: '0.6em 0',\n paddingBlock: 0,\n borderInlineStart: '4px solid rgba(100, 100, 100, 0.2)',\n opacity: 0.85\n }\n});\nexport const getEditableStyles = token => {\n const {\n componentCls,\n paddingSM\n } = token;\n const inputShift = paddingSM;\n return {\n '&-edit-content': {\n position: 'relative',\n 'div&': {\n insetInlineStart: token.calc(token.paddingSM).mul(-1).equal(),\n insetBlockStart: token.calc(inputShift).div(-2).add(1).equal(),\n marginBottom: token.calc(inputShift).div(2).sub(2).equal()\n },\n [`${componentCls}-edit-content-confirm`]: {\n position: 'absolute',\n insetInlineEnd: token.calc(token.marginXS).add(2).equal(),\n insetBlockEnd: token.marginXS,\n color: token.colorIcon,\n // default style\n fontWeight: 'normal',\n fontSize: token.fontSize,\n fontStyle: 'normal',\n pointerEvents: 'none'\n },\n textarea: {\n margin: '0!important',\n // Fix Editable Textarea flash in Firefox\n MozTransition: 'none',\n height: '1em'\n }\n }\n };\n};\nexport const getCopyableStyles = token => ({\n [`${token.componentCls}-copy-success`]: {\n [`\n &,\n &:hover,\n &:focus`]: {\n color: token.colorSuccess\n }\n },\n [`${token.componentCls}-copy-icon-only`]: {\n marginInlineStart: 0\n }\n});\nexport const getEllipsisStyles = () => ({\n [`\n a&-ellipsis,\n span&-ellipsis\n `]: {\n display: 'inline-block',\n maxWidth: '100%'\n },\n '&-ellipsis-single-line': {\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n // https://blog.csdn.net/iefreer/article/details/50421025\n 'a&, span&': {\n verticalAlign: 'bottom'\n },\n '> code': {\n paddingBlock: 0,\n maxWidth: 'calc(100% - 1.2em)',\n display: 'inline-block',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n verticalAlign: 'bottom',\n // https://github.com/ant-design/ant-design/issues/45953\n boxSizing: 'content-box'\n }\n },\n '&-ellipsis-multiple-line': {\n display: '-webkit-box',\n overflow: 'hidden',\n WebkitLineClamp: 3,\n WebkitBoxOrient: 'vertical'\n }\n});","map":{"version":3,"names":["gold","operationUnit","getTitleStyle","fontSize","lineHeight","color","token","titleMarginBottom","fontWeightStrong","marginBottom","fontWeight","getTitleStyles","headings","styles","forEach","headingLevel","colorTextHeading","getLinkStyles","componentCls","Object","assign","userSelect","colorTextDisabled","cursor","pointerEvents","getResetStyles","code","margin","paddingInline","paddingBlock","fontFamily","fontFamilyCode","background","border","borderRadius","kbd","borderBottomWidth","mark","padding","backgroundColor","textDecoration","textDecorationSkipInk","strong","marginInline","marginBlock","li","ul","listStyleType","ol","pre","whiteSpace","wordWrap","display","blockquote","borderInlineStart","opacity","getEditableStyles","paddingSM","inputShift","position","insetInlineStart","calc","mul","equal","insetBlockStart","div","add","sub","insetInlineEnd","marginXS","insetBlockEnd","colorIcon","fontStyle","textarea","MozTransition","height","getCopyableStyles","colorSuccess","marginInlineStart","getEllipsisStyles","maxWidth","overflow","textOverflow","verticalAlign","boxSizing","WebkitLineClamp","WebkitBoxOrient"],"sources":["/Users/max_liu/max_liu/company/tools_auto_pt/node_modules/antd/es/typography/style/mixins.js"],"sourcesContent":["/*\n.typography-title(@fontSize; @fontWeight; @lineHeight; @headingColor; @headingMarginBottom;) {\n margin-bottom: @headingMarginBottom;\n color: @headingColor;\n font-weight: @fontWeight;\n fontSize: @fontSize;\n line-height: @lineHeight;\n}\n*/\nimport { gold } from '@ant-design/colors';\nimport { operationUnit } from '../../style';\nconst getTitleStyle = (fontSize, lineHeight, color, token) => {\n const {\n titleMarginBottom,\n fontWeightStrong\n } = token;\n return {\n marginBottom: titleMarginBottom,\n color,\n fontWeight: fontWeightStrong,\n fontSize,\n lineHeight\n };\n};\nexport const getTitleStyles = token => {\n const headings = [1, 2, 3, 4, 5];\n const styles = {};\n headings.forEach(headingLevel => {\n styles[`\n h${headingLevel}&,\n div&-h${headingLevel},\n div&-h${headingLevel} > textarea,\n h${headingLevel}\n `] = getTitleStyle(token[`fontSizeHeading${headingLevel}`], token[`lineHeightHeading${headingLevel}`], token.colorTextHeading, token);\n });\n return styles;\n};\nexport const getLinkStyles = token => {\n const {\n componentCls\n } = token;\n return {\n 'a&, a': Object.assign(Object.assign({}, operationUnit(token)), {\n userSelect: 'text',\n [`&[disabled], &${componentCls}-disabled`]: {\n color: token.colorTextDisabled,\n cursor: 'not-allowed',\n '&:active, &:hover': {\n color: token.colorTextDisabled\n },\n '&:active': {\n pointerEvents: 'none'\n }\n }\n })\n };\n};\nexport const getResetStyles = token => ({\n code: {\n margin: '0 0.2em',\n paddingInline: '0.4em',\n paddingBlock: '0.2em 0.1em',\n fontSize: '85%',\n fontFamily: token.fontFamilyCode,\n background: 'rgba(150, 150, 150, 0.1)',\n border: '1px solid rgba(100, 100, 100, 0.2)',\n borderRadius: 3\n },\n kbd: {\n margin: '0 0.2em',\n paddingInline: '0.4em',\n paddingBlock: '0.15em 0.1em',\n fontSize: '90%',\n fontFamily: token.fontFamilyCode,\n background: 'rgba(150, 150, 150, 0.06)',\n border: '1px solid rgba(100, 100, 100, 0.2)',\n borderBottomWidth: 2,\n borderRadius: 3\n },\n mark: {\n padding: 0,\n // FIXME hardcode in v4\n backgroundColor: gold[2]\n },\n 'u, ins': {\n textDecoration: 'underline',\n textDecorationSkipInk: 'auto'\n },\n 's, del': {\n textDecoration: 'line-through'\n },\n strong: {\n fontWeight: token.fontWeightStrong\n },\n // list\n 'ul, ol': {\n marginInline: 0,\n marginBlock: '0 1em',\n padding: 0,\n li: {\n marginInline: '20px 0',\n marginBlock: 0,\n paddingInline: '4px 0',\n paddingBlock: 0\n }\n },\n ul: {\n listStyleType: 'circle',\n ul: {\n listStyleType: 'disc'\n }\n },\n ol: {\n listStyleType: 'decimal'\n },\n // pre & block\n 'pre, blockquote': {\n margin: '1em 0'\n },\n pre: {\n padding: '0.4em 0.6em',\n whiteSpace: 'pre-wrap',\n wordWrap: 'break-word',\n background: 'rgba(150, 150, 150, 0.1)',\n border: '1px solid rgba(100, 100, 100, 0.2)',\n borderRadius: 3,\n fontFamily: token.fontFamilyCode,\n // Compatible for marked\n code: {\n display: 'inline',\n margin: 0,\n padding: 0,\n fontSize: 'inherit',\n fontFamily: 'inherit',\n background: 'transparent',\n border: 0\n }\n },\n blockquote: {\n paddingInline: '0.6em 0',\n paddingBlock: 0,\n borderInlineStart: '4px solid rgba(100, 100, 100, 0.2)',\n opacity: 0.85\n }\n});\nexport const getEditableStyles = token => {\n const {\n componentCls,\n paddingSM\n } = token;\n const inputShift = paddingSM;\n return {\n '&-edit-content': {\n position: 'relative',\n 'div&': {\n insetInlineStart: token.calc(token.paddingSM).mul(-1).equal(),\n insetBlockStart: token.calc(inputShift).div(-2).add(1).equal(),\n marginBottom: token.calc(inputShift).div(2).sub(2).equal()\n },\n [`${componentCls}-edit-content-confirm`]: {\n position: 'absolute',\n insetInlineEnd: token.calc(token.marginXS).add(2).equal(),\n insetBlockEnd: token.marginXS,\n color: token.colorIcon,\n // default style\n fontWeight: 'normal',\n fontSize: token.fontSize,\n fontStyle: 'normal',\n pointerEvents: 'none'\n },\n textarea: {\n margin: '0!important',\n // Fix Editable Textarea flash in Firefox\n MozTransition: 'none',\n height: '1em'\n }\n }\n };\n};\nexport const getCopyableStyles = token => ({\n [`${token.componentCls}-copy-success`]: {\n [`\n &,\n &:hover,\n &:focus`]: {\n color: token.colorSuccess\n }\n },\n [`${token.componentCls}-copy-icon-only`]: {\n marginInlineStart: 0\n }\n});\nexport const getEllipsisStyles = () => ({\n [`\n a&-ellipsis,\n span&-ellipsis\n `]: {\n display: 'inline-block',\n maxWidth: '100%'\n },\n '&-ellipsis-single-line': {\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n // https://blog.csdn.net/iefreer/article/details/50421025\n 'a&, span&': {\n verticalAlign: 'bottom'\n },\n '> code': {\n paddingBlock: 0,\n maxWidth: 'calc(100% - 1.2em)',\n display: 'inline-block',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n verticalAlign: 'bottom',\n // https://github.com/ant-design/ant-design/issues/45953\n boxSizing: 'content-box'\n }\n },\n '&-ellipsis-multiple-line': {\n display: '-webkit-box',\n overflow: 'hidden',\n WebkitLineClamp: 3,\n WebkitBoxOrient: 'vertical'\n }\n});"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}