style: linkage rule style improve (#1625)
This commit is contained in:
parent
db511a33fa
commit
b015fb769a
@ -30,11 +30,24 @@ export const FormFieldLinkageRuleAction = observer((props: any) => {
|
|||||||
} = useValues(options);
|
} = useValues(options);
|
||||||
return (
|
return (
|
||||||
<LinkageLogicContext.Provider value={uid()}>
|
<LinkageLogicContext.Provider value={uid()}>
|
||||||
<div style={{ marginBottom: 8 }}>
|
<div
|
||||||
|
style={{ marginBottom: 8 }}
|
||||||
|
className={css`
|
||||||
|
.ant-space {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
`}
|
||||||
|
>
|
||||||
<Space
|
<Space
|
||||||
className={css`
|
className={css`
|
||||||
|
.ant-space {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
.ant-space-item {
|
.ant-space-item {
|
||||||
max-width: 95%;
|
max-width: 95%;
|
||||||
|
display: inline-block;
|
||||||
|
margin: 2px;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
|
@ -30,7 +30,7 @@ export const ValueDynamicComponent = (props) => {
|
|||||||
<Option value="empty">{t('Empty')}</Option>
|
<Option value="empty">{t('Empty')}</Option>
|
||||||
</Select>
|
</Select>
|
||||||
{mode === 'constant' ? (
|
{mode === 'constant' ? (
|
||||||
<div style={{ minWidth: 150, maxWidth: 430 }}>
|
<div style={{ minWidth: 150, maxWidth: 430, marginLeft: 5 }}>
|
||||||
{React.createElement(DynamicComponent, {
|
{React.createElement(DynamicComponent, {
|
||||||
value: fieldValue?.value || fieldValue,
|
value: fieldValue?.value || fieldValue,
|
||||||
schema,
|
schema,
|
||||||
|
@ -950,7 +950,7 @@ SchemaSettings.LinkageRules = (props) => {
|
|||||||
<SchemaSettings.ModalItem
|
<SchemaSettings.ModalItem
|
||||||
title={t('Linkage rules')}
|
title={t('Linkage rules')}
|
||||||
components={{ ArrayCollapse, FormLayout }}
|
components={{ ArrayCollapse, FormLayout }}
|
||||||
width={750}
|
width={770}
|
||||||
schema={
|
schema={
|
||||||
{
|
{
|
||||||
type: 'object',
|
type: 'object',
|
||||||
|
Loading…
Reference in New Issue
Block a user