mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
27 lines
704 B
TypeScript
27 lines
704 B
TypeScript
|
import type { GenerateStyle } from '../../_util/theme';
|
||
|
import type { DropdownToken } from '.';
|
||
|
|
||
|
const genButtonStyle: GenerateStyle<DropdownToken> = token => {
|
||
|
const { componentCls, antCls, paddingXS, colorLoadingOpacity } = token;
|
||
|
|
||
|
return {
|
||
|
[`${componentCls}-button`]: {
|
||
|
whiteSpace: 'nowrap',
|
||
|
|
||
|
[`&${antCls}-btn-group > ${antCls}-btn`]: {
|
||
|
[`&-loading, &-loading + ${antCls}-btn`]: {
|
||
|
cursor: 'default',
|
||
|
pointerEvents: 'none',
|
||
|
opacity: colorLoadingOpacity,
|
||
|
},
|
||
|
|
||
|
[`&:last-child:not(:first-child):not(${antCls}-btn-icon-only)`]: {
|
||
|
paddingInline: paddingXS,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default genButtonStyle;
|