fix: 修复condition-builder的下拉icon和select不统一 (#7295)

This commit is contained in:
sqzhou 2023-06-28 20:53:19 +08:00 committed by GitHub
parent 8aacd4361e
commit cfb6a26ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 3 deletions

View File

@ -198,6 +198,7 @@
width: px2rem(10px); width: px2rem(10px);
height: px2rem(10px); height: px2rem(10px);
top: 0; top: 0;
transform: rotate(90deg);
} }
} }

View File

@ -445,6 +445,7 @@
width: px2rem(10px); width: px2rem(10px);
height: px2rem(10px); height: px2rem(10px);
top: 0; top: 0;
transform: rotate(90deg);
} }
} }

View File

@ -158,7 +158,7 @@ class DropDownSelection extends BaseSelection<
> >
{!isMobile() ? ( {!isMobile() ? (
<span className={cx('DropDownSelection-caret')}> <span className={cx('DropDownSelection-caret')}>
<Icon icon="caret" className="icon" /> <Icon icon="right-arrow-bold" className="icon" />
</span> </span>
) : null} ) : null}
</ResultBox> </ResultBox>

View File

@ -127,7 +127,7 @@ export class ConditionFunc extends React.Component<ConditionFuncProps> {
disabled={disabled} disabled={disabled}
> >
<span className={cx('CBGroup-fieldCaret')}> <span className={cx('CBGroup-fieldCaret')}>
<Icon icon="caret" className="icon" /> <Icon icon="right-arrow-bold" className="icon" />
</span> </span>
</ResultBox> </ResultBox>
</div> </div>

View File

@ -248,7 +248,7 @@ export class ConditionItem extends React.Component<ConditionItemProps> {
> >
{!isMobile() ? ( {!isMobile() ? (
<span className={cx('CBGroup-operatorCaret')}> <span className={cx('CBGroup-operatorCaret')}>
<Icon icon="caret" className="icon" /> <Icon icon="right-arrow-bold" className="icon" />
</span> </span>
) : null} ) : null}
</ResultBox> </ResultBox>