styling changes

This commit is contained in:
Sofia Papacharalampous 2024-05-15 13:56:18 +03:00
parent 64151ea05b
commit f82569f5ee
2 changed files with 6 additions and 2 deletions

View File

@ -45,7 +45,7 @@
<div *ngIf="fieldSet.hasMultiplicity && fieldSet?.multiplicity?.tableView" class="col-12">
<table class="table table-bordered" style="table-layout: fixed">
<tr>
<th *ngFor="let field of fieldSet.fields; let i = index;" class="text-wrap">{{field.data?.label}}</th>
<th *ngFor="let field of fieldSet.fields; let i = index;" class="text-truncated">{{field.data?.label}}</th>
<th class="actions"></th>
</tr>
<ng-container *ngFor="let fieldSetItemPropertiesControl of propertiesFormGroup?.get('items')?.controls; let j = index">

View File

@ -14,4 +14,8 @@
margin-top: 1.625rem;
width: auto;
height: auto;
}
}
.text-truncated {
overflow: hidden;
text-overflow: ellipsis;
}