@aplus-frontend/ui
Version:
52 lines (51 loc) • 1.26 kB
JavaScript
import { genComponentStyleHook as i } from "../../../utils/cssinjs/index.mjs";
const l = (e) => {
const { componentCls: n } = e;
return {
[n]: {
width: "100%",
[`${n}-header`]: {
width: "100%",
paddingBlockEnd: e.space,
marginBlockEnd: e.space,
borderBottom: `${e.lineWidth} ${e.lineType} ${e.colorBg1}`
},
[`${n}-body`]: {
width: "100%",
display: "flex",
alignItems: "center",
".selected-desc": {
display: "flex",
alignItems: "center",
marginInlineEnd: e.spaceXL,
flexShrink: "0",
"&-conut": {
display: "flex",
alignItems: "center",
fontSize: e.fontSize,
color: e.textColor3,
span: {
color: e.colorPrimary,
fontWeight: "bold",
minWidth: "10px",
textAlign: "center",
display: "inline-block"
}
},
"&-clean": {
marginInlineStart: e.space,
"& > *": {
padding: 0
}
}
}
}
}
};
}, c = i("ApBatchAction", (e) => [
l(e)
]);
export {
c as default,
l as genApBatchActionStyle
};