fix file padding and help text color

This commit is contained in:
Art Lowel
2020-03-26 11:39:27 +01:00
parent e7a5daad18
commit 428abc8282
2 changed files with 11 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
<label for="file-upload-{{index}}" class="d-flex align-items-center"> <label for="file-upload-{{index}}" class="d-flex align-items-center m-0">
<span class="btn btn-light"> <span class="btn btn-light">
{{'process.new.parameter.file.upload-button' | translate}} {{'process.new.parameter.file.upload-button' | translate}}
</span> </span>

View File

@@ -1,12 +1,16 @@
<h3>{{script?.name}}</h3> <div class="text-secondary">
<span>{{script?.description}}</span> <h3>{{script?.name}}</h3>
<span>{{script?.description}}</span>
<table class="table-borderless mt-3 text-secondary"> <table class="table-borderless mt-3">
<tr *ngFor="let param of script?.parameters"> <tr *ngFor="let param of script?.parameters">
<td class="align-top text-nowrap">{{param.name}} {{param.nameLong}} <ng-container *ngTemplateOutlet="type; context: param"></ng-container></td> <td class="align-top text-nowrap">{{param.name}} {{param.nameLong}}
<td>{{param.description}}</td> <ng-container *ngTemplateOutlet="type; context: param"></ng-container>
</td>
<td>{{param.description}}</td>
</tr> </tr>
</table> </table>
</div>
<ng-template #type let-type="type"> <ng-template #type let-type="type">
<ng-container [ngSwitch]="type"> <ng-container [ngSwitch]="type">