[ACS-8452] Fixed UI for folder select input fields in create/edit rules (#10017)

This commit is contained in:
swapnil-verma-gl 2024-08-02 13:31:14 +05:30 committed by GitHub
parent 0712edd79f
commit 394d064f37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 3 deletions

View File

@ -111,11 +111,12 @@
(keyup.enter)="clicked()" (keyup.enter)="clicked()"
(click)="clicked()" (click)="clicked()"
> >
<mat-form-field class="adf-property-field adf-card-textitem-field"> <mat-form-field class="adf-property-field adf-card-textitem-field" [floatLabel]="'always'">
<mat-label <mat-label
*ngIf="showProperty || isEditable" *ngIf="showProperty || isEditable"
[attr.data-automation-id]="'card-textitem-label-' + property.key" [attr.data-automation-id]="'card-textitem-label-' + property.key"
class="adf-property-label" class="adf-property-label"
[ngClass]="{ 'adf-property-value-editable': editable }"
> >
{{ property.label | translate }} {{ property.label | translate }}
</mat-label> </mat-label>

View File

@ -18,8 +18,9 @@
} }
.adf-textitem-action { .adf-textitem-action {
width: 20px; width: 30px;
height: 20px; height: 30px;
padding: 0;
line-height: 20px; line-height: 20px;
color: var(--adf-theme-foreground-text-color-025); color: var(--adf-theme-foreground-text-color-025);
@ -27,6 +28,15 @@
&:focus { &:focus {
color: var(--adf-theme-foreground-text-color); color: var(--adf-theme-foreground-text-color);
} }
#{$mat-button-touch-target} {
width: 30px;
height: 30px;
}
}
#{$mat-form-field-icon-suffix} {
align-self: baseline;
} }
.adf-textitem-chip-list-container { .adf-textitem-chip-list-container {