mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
fix file padding and help text color
This commit is contained in:
@@ -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>
|
||||
|
@@ -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">
|
||||
|
Reference in New Issue
Block a user