Fixes RDACommonStandards select panel width

This commit is contained in:
apapachristou 2019-10-29 10:19:01 +02:00
parent f868eae309
commit c0df37e996
2 changed files with 8 additions and 4 deletions

View File

@ -43,7 +43,7 @@
<mat-form-field class="col"> <mat-form-field class="col">
<mat-label>{{'DATASET-PROFILE-EDITOR.STEPS.FORM.COMPOSITE-FIELD.FIELDS.RDA-COMMON-STANDARDS' | translate}}</mat-label> <mat-label>{{'DATASET-PROFILE-EDITOR.STEPS.FORM.COMPOSITE-FIELD.FIELDS.RDA-COMMON-STANDARDS' | translate}}</mat-label>
<mat-select [formControl]="this.form.get('rdaCommonStandard')"> <mat-select class="rda-cs" [formControl]="this.form.get('rdaCommonStandard')">
<mat-option>--</mat-option> <mat-option>--</mat-option>
<mat-option *ngFor="let property of datasetProfileService.getRDACommonStandards()" [value]="property"> <mat-option *ngFor="let property of datasetProfileService.getRDACommonStandards()" [value]="property">
{{property}} {{property}}

View File

@ -1,3 +1,7 @@
.full-width{ .full-width {
width: 100%; width: 100%;
} }
.rda-cs {
min-width: 17vw;
}