[ACS-5551] margin issue fixed

This commit is contained in:
Anukriti Singh
2023-10-13 16:29:42 +05:30
parent 3c61188ccb
commit 4feef96818
3 changed files with 7 additions and 8 deletions
@@ -68,6 +68,7 @@ $panel-properties-height: 56px !default;
word-break: break-all;
font-size: 15px;
padding-top: 16px;
text-align: center;
}
&-tags {
@@ -127,12 +128,6 @@ $panel-properties-height: 56px !default;
}
}
.adf-metadata-properties .adf-metadata-grouped-properties-container .mat-expansion-panel {
.mat-expansion-panel-body {
padding: 0 24px;
}
}
.adf-info-drawer-layout-content .adf-content-metadata-card .adf-metadata-properties .mat-expansion-panel {
border: 1px solid var(--theme-metadata-property-panel-border-color);
border-radius: 12px;
@@ -6,7 +6,7 @@
{{ property.label | translate }}
</label>
<div class="adf-property-value adf-property-value-padding-top"
[ngClass]="{'adf-property-dateitem-edit-mode' : editable, 'adf-property-label-not-editable' : isNonEditableField}">
[ngClass]="{'adf-property-dateitem-edit-mode' : editable, 'adf-property-label-not-editable' : isNonEditableField, 'adf-empty-field' : !showProperty()}">
<span *ngIf="!isEditable() && !property.multivalued"
[attr.data-automation-id]="'card-' + property.type + '-value-' + property.key">
<span *ngIf="showProperty()"
@@ -14,6 +14,10 @@
line-height: 20px;
}
.adf-empty-field {
padding: 0;
}
.adf-property-label-not-editable {
color: var(--theme-metadata-property-panel-label-color);
@@ -40,7 +44,7 @@
}
.mat-form-field-wrapper {
padding-bottom: 0 ;
padding-bottom: 0;
}
.mat-form-field-label {