styling fixes on description table-view field
This commit is contained in:
parent
26b4e895e1
commit
3e10d92bec
|
@ -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>
|
||||
|
|
|
@ -3,8 +3,11 @@
|
|||
}
|
||||
|
||||
.actions {
|
||||
width: 110px;
|
||||
display: flex;
|
||||
|
||||
@media (min-width: 1300px) {
|
||||
width: 60px;
|
||||
}
|
||||
// display: flex;
|
||||
}
|
||||
|
||||
.annotation-icon{
|
||||
|
|
Loading…
Reference in New Issue