mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 14:59:35 +08:00
b4730281a9
* chore: init * chore: dropdown style * chore: more style * chore: icon style * chore: more style * chore: diff shows the cache path * chore: motion support * chore: more style * feat: status * chore: sub menu style * chore: all dropdown style * fix: ts * chore: update snapshot * Update components/dropdown/style/index.tsx Co-authored-by: MadCcc <1075746765@qq.com> * chore: update style Co-authored-by: MadCcc <1075746765@qq.com>
82 lines
1.9 KiB
TypeScript
82 lines
1.9 KiB
TypeScript
import type { GenerateStyle } from '../../_util/theme';
|
|
import type { ButtonToken } from '.';
|
|
|
|
const genButtonBorderStyle = (buttonTypeCls: string, borderColor: string) => ({
|
|
// Border
|
|
[`> span, > ${buttonTypeCls}`]: {
|
|
'&:not(:last-child)': {
|
|
[`&, & > ${buttonTypeCls}`]: {
|
|
'&:not(:disabled)': {
|
|
borderInlineEndColor: borderColor,
|
|
},
|
|
},
|
|
},
|
|
|
|
'&:not(:first-child)': {
|
|
[`&, & > ${buttonTypeCls}`]: {
|
|
'&:not(:disabled)': {
|
|
borderInlineStartColor: borderColor,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const genGroupStyle: GenerateStyle<ButtonToken> = token => {
|
|
const { componentCls, fontSizeBase, controlLineWidth, colorPrimaryHover, colorErrorHover } =
|
|
token;
|
|
|
|
return {
|
|
[`${componentCls}-group`]: [
|
|
{
|
|
position: 'relative',
|
|
display: 'inline-flex',
|
|
|
|
// Border
|
|
[`> span, > ${componentCls}`]: {
|
|
'&:not(:last-child)': {
|
|
[`&, & > ${componentCls}`]: {
|
|
borderStartEndRadius: 0,
|
|
borderEndEndRadius: 0,
|
|
},
|
|
},
|
|
|
|
'&:not(:first-child)': {
|
|
marginInlineStart: -controlLineWidth,
|
|
|
|
[`&, & > ${componentCls}`]: {
|
|
borderStartStartRadius: 0,
|
|
borderEndStartRadius: 0,
|
|
},
|
|
},
|
|
},
|
|
|
|
[componentCls]: {
|
|
position: 'relative',
|
|
zIndex: 1,
|
|
|
|
[`&:hover,
|
|
&:focus,
|
|
&:active`]: {
|
|
zIndex: 2,
|
|
},
|
|
|
|
'&[disabled]': {
|
|
zIndex: 0,
|
|
},
|
|
},
|
|
|
|
[`${componentCls}-icon-only`]: {
|
|
fontSize: fontSizeBase,
|
|
},
|
|
},
|
|
|
|
// Border Color
|
|
genButtonBorderStyle(`${componentCls}-primary`, colorPrimaryHover),
|
|
genButtonBorderStyle(`${componentCls}-danger`, colorErrorHover),
|
|
],
|
|
};
|
|
};
|
|
|
|
export default genGroupStyle;
|