Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions grails-app/views/output/_editModeTableFooterActions.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<td colspan="${colCount}" style="text-align:left;">
<button type="button" class="btn btn-primary-dark btn-sm" data-bind="visible:${property}.allowUserAddedRows, click:${property}.addRow"><i class="fa fa-plus"></i> ${addRowText ?: "Add a row"} </button>
<g:if test="${!disableTableUpload}">
<button type="button" class="btn btn-sm" data-bind="click:${property}.showTableDataUpload"><i class="fa fa-upload"></i> ${uploadDataText ?: "Upload data for this table"} </button>
<button type="button" class="btn btn-sm btn-outline-secondary" data-bind="click:${property}.showTableDataUpload"><i class="fa fa-upload"></i> ${uploadDataText ?: "Upload data for this table"} </button>
</g:if>
</td>
</tr>
Expand All @@ -22,10 +22,10 @@
</div>

<div class="text-left" style="margin:5px">
<a data-bind="click:${property}.downloadTemplate" target="${name}TemplateDownload" class="btn">Step 1 - Download template (.xlsx)</a>
<a data-bind="click:${property}.downloadTemplate" target="${name}TemplateDownload" class="btn btn-sm btn-outline-secondary">Step 1 - Download template (.xlsx)</a>
</div>

<div class="btn fileinput-button" style="margin-left:5px">
<div class="btn fileinput-button btn-sm btn-outline-secondary" style="margin-left:5px">
<input type="file" name="data" data-bind="fileUploadNoImage:${property}.tableDataUploadOptions">
Step 2 - Upload populated template
</div>
Expand Down
Loading