|
import { unit } from '@ant-design/cssinjs'; |
|
import type { CSSInterpolation } from '@ant-design/cssinjs'; |
|
|
|
import type { CascaderToken } from '.'; |
|
import { getStyle as getCheckboxStyle } from '../../checkbox/style'; |
|
import { textEllipsis } from '../../style'; |
|
import type { GenerateStyle } from '../../theme/internal'; |
|
|
|
const getColumnsStyle: GenerateStyle<CascaderToken> = (token: CascaderToken): CSSInterpolation => { |
|
const { prefixCls, componentCls } = token; |
|
|
|
const cascaderMenuItemCls = `${componentCls}-menu-item`; |
|
const iconCls = ` |
|
&${cascaderMenuItemCls}-expand ${cascaderMenuItemCls}-expand-icon, |
|
${cascaderMenuItemCls}-loading-icon |
|
`; |
|
|
|
return [ |
|
|
|
getCheckboxStyle(`${prefixCls}-checkbox`, token), |
|
|
|
{ |
|
[componentCls]: { |
|
|
|
'&-checkbox': { |
|
top: 0, |
|
marginInlineEnd: token.paddingXS, |
|
pointerEvents: 'unset', |
|
}, |
|
|
|
|
|
|
|
'&-menus': { |
|
display: 'flex', |
|
flexWrap: 'nowrap', |
|
alignItems: 'flex-start', |
|
|
|
[`&${componentCls}-menu-empty`]: { |
|
[`${componentCls}-menu`]: { |
|
width: '100%', |
|
height: 'auto', |
|
|
|
[cascaderMenuItemCls]: { |
|
color: token.colorTextDisabled, |
|
}, |
|
}, |
|
}, |
|
}, |
|
|
|
|
|
'&-menu': { |
|
flexGrow: 1, |
|
flexShrink: 0, |
|
minWidth: token.controlItemWidth, |
|
height: token.dropdownHeight, |
|
margin: 0, |
|
padding: token.menuPadding, |
|
overflow: 'auto', |
|
verticalAlign: 'top', |
|
listStyle: 'none', |
|
'-ms-overflow-style': '-ms-autohiding-scrollbar', |
|
|
|
'&:not(:last-child)': { |
|
borderInlineEnd: `${unit(token.lineWidth)} ${token.lineType} ${token.colorSplit}`, |
|
}, |
|
|
|
'&-item': { |
|
...textEllipsis, |
|
display: 'flex', |
|
flexWrap: 'nowrap', |
|
alignItems: 'center', |
|
padding: token.optionPadding, |
|
lineHeight: token.lineHeight, |
|
cursor: 'pointer', |
|
transition: `all ${token.motionDurationMid}`, |
|
borderRadius: token.borderRadiusSM, |
|
|
|
'&:hover': { |
|
background: token.controlItemBgHover, |
|
}, |
|
'&-disabled': { |
|
color: token.colorTextDisabled, |
|
cursor: 'not-allowed', |
|
|
|
'&:hover': { |
|
background: 'transparent', |
|
}, |
|
|
|
[iconCls]: { |
|
color: token.colorTextDisabled, |
|
}, |
|
}, |
|
|
|
[`&-active:not(${cascaderMenuItemCls}-disabled)`]: { |
|
'&, &:hover': { |
|
color: token.optionSelectedColor, |
|
fontWeight: token.optionSelectedFontWeight, |
|
backgroundColor: token.optionSelectedBg, |
|
}, |
|
}, |
|
|
|
'&-content': { |
|
flex: 'auto', |
|
}, |
|
|
|
[iconCls]: { |
|
marginInlineStart: token.paddingXXS, |
|
color: token.colorIcon, |
|
fontSize: token.fontSizeIcon, |
|
}, |
|
|
|
'&-keyword': { |
|
color: token.colorHighlight, |
|
}, |
|
}, |
|
}, |
|
}, |
|
}, |
|
]; |
|
}; |
|
|
|
export default getColumnsStyle; |
|
|