styling fixes on description table-view field

This commit is contained in:
Sofia Papacharalampous 2024-05-13 13:51:53 +03:00
parent 26b4e895e1
commit 3e10d92bec
2 changed files with 13 additions and 8 deletions

View File

@ -56,12 +56,14 @@
</ng-container>
</td>
<td class="actions">
<button mat-icon-button type="button" class="deleteBtn btn-sm" (click)="editTableMultiplicityFieldInDialog(j)" [disabled]="fieldSetItemPropertiesControl.disabled">
<mat-icon>edit</mat-icon>
</button>
<button *ngIf="propertiesFormGroup.get('items').length > 1" mat-icon-button type="button" class="deleteBtn" (click)="deleteMultiplicityField(j);" [disabled]="fieldSetItemPropertiesControl.disabled">
<mat-icon>delete</mat-icon>
</button>
<div class="w-100 d-flex justify-content-center">
<button mat-icon-button type="button" class="deleteBtn btn-sm" (click)="editTableMultiplicityFieldInDialog(j)" [disabled]="fieldSetItemPropertiesControl.disabled">
<mat-icon>edit</mat-icon>
</button>
<button *ngIf="propertiesFormGroup.get('items').length > 1" mat-icon-button type="button" class="deleteBtn" (click)="deleteMultiplicityField(j);" [disabled]="fieldSetItemPropertiesControl.disabled">
<mat-icon>delete</mat-icon>
</button>
</div>
</td>
</tr>
</ng-container>

View File

@ -3,8 +3,11 @@
}
.actions {
width: 110px;
display: flex;
@media (min-width: 1300px) {
width: 60px;
}
// display: flex;
}
.annotation-icon{