mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
|
/* eslint-disable import/prefer-default-export */
|
||
|
import type { CSSObject } from '@ant-design/cssinjs';
|
||
|
import type { DerivativeToken } from '../theme';
|
||
|
|
||
|
function compactItemVerticalBorder(token: DerivativeToken): CSSObject {
|
||
|
return {
|
||
|
// border collapse
|
||
|
'&-item:not(&-last-item)': {
|
||
|
marginBottom: -token.controlLineWidth,
|
||
|
},
|
||
|
|
||
|
'&-item': {
|
||
|
'&:hover,&:focus,&:active': {
|
||
|
zIndex: 2,
|
||
|
},
|
||
|
|
||
|
'&[disabled]': {
|
||
|
zIndex: 0,
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function compactItemBorderVerticalRadius(prefixCls: string): CSSObject {
|
||
|
return {
|
||
|
'&-item:not(&-first-item):not(&-last-item)': {
|
||
|
borderRadius: 0,
|
||
|
},
|
||
|
|
||
|
'&-item&-first-item': {
|
||
|
[`&, &${prefixCls}-sm, &${prefixCls}-lg`]: {
|
||
|
borderEndEndRadius: 0,
|
||
|
borderEndStartRadius: 0,
|
||
|
},
|
||
|
},
|
||
|
|
||
|
'&-item&-last-item': {
|
||
|
[`&, &${prefixCls}-sm, &${prefixCls}-lg`]: {
|
||
|
borderStartStartRadius: 0,
|
||
|
borderStartEndRadius: 0,
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export function genCompactItemVerticalStyle(token: DerivativeToken, prefixCls: string): CSSObject {
|
||
|
return {
|
||
|
'&-compact-vertical': {
|
||
|
...compactItemVerticalBorder(token),
|
||
|
...compactItemBorderVerticalRadius(prefixCls),
|
||
|
},
|
||
|
};
|
||
|
}
|