antd
Version:
An enterprise-class UI design language and React components implementation
53 lines (49 loc) • 2.03 kB
JavaScript
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
var genButtonBorderStyle = function genButtonBorderStyle(buttonTypeCls, borderColor) {
return _defineProperty({}, "> span, > ".concat(buttonTypeCls), {
'&:not(:last-child)': _defineProperty({}, "&, & > ".concat(buttonTypeCls), {
'&:not(:disabled)': {
borderInlineEndColor: borderColor
}
}),
'&:not(:first-child)': _defineProperty({}, "&, & > ".concat(buttonTypeCls), {
'&:not(:disabled)': {
borderInlineStartColor: borderColor
}
})
});
};
var genGroupStyle = function genGroupStyle(token) {
var _componentCls, _ref2;
var componentCls = token.componentCls,
fontSizeBase = token.fontSizeBase,
controlLineWidth = token.controlLineWidth,
colorPrimaryHover = token.colorPrimaryHover,
colorErrorHover = token.colorErrorHover;
return _defineProperty({}, "".concat(componentCls, "-group"), [(_ref2 = {
position: 'relative',
display: 'inline-flex'
}, _defineProperty(_ref2, "> span, > ".concat(componentCls), {
'&:not(:last-child)': _defineProperty({}, "&, & > ".concat(componentCls), {
borderStartEndRadius: 0,
borderEndEndRadius: 0
}),
'&:not(:first-child)': _defineProperty({
marginInlineStart: -controlLineWidth
}, "&, & > ".concat(componentCls), {
borderStartStartRadius: 0,
borderEndStartRadius: 0
})
}), _defineProperty(_ref2, componentCls, (_componentCls = {
position: 'relative',
zIndex: 1
}, _defineProperty(_componentCls, "&:hover,\n &:focus,\n &:active", {
zIndex: 2
}), _defineProperty(_componentCls, '&[disabled]', {
zIndex: 0
}), _componentCls)), _defineProperty(_ref2, "".concat(componentCls, "-icon-only"), {
fontSize: fontSizeBase
}), _ref2), // Border Color
genButtonBorderStyle("".concat(componentCls, "-primary"), colorPrimaryHover), genButtonBorderStyle("".concat(componentCls, "-danger"), colorErrorHover)]);
};
export default genGroupStyle;