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">
{{'process.new.parameter.file.upload-button' | translate}}
</span>

View File

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