Skip to content
Snippets Groups Projects
Commit 7221c5c2 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#724 - reduce row height and do not show label for text input

parent 14f4c44a
Branches
Tags
No related merge requests found
......@@ -16,3 +16,7 @@
.transaction-import-row-skipped {
opacity: 0.5;
}
#table-transaction-rows td {
padding: 5px;
}
\ No newline at end of file
......@@ -188,7 +188,7 @@
<#macro renderCsvTransactions>
<div class="container" id="transaction-import-list">
<table class="bordered centered">
<table class="bordered centered" id="table-transaction-rows">
<tr>
<td class="bold">${locale.getString("transactions.import.status")}</td>
<td class="bold">${locale.getString("transaction.new.label.date")}</td>
......@@ -211,9 +211,8 @@
<td><@statusBanner csvTransaction.getStatus()/></td>
<td>${csvTransaction.getDate()}</td>
<td>
<div class="input-field">
<input id="name-${index}" type="text" name="name" required value="${csvTransaction.getName()}">
<label class="input-label" for="name-${index}">${locale.getString("transaction.new.label.name")}</label>
<div class="input-field no-margin-top no-margin-bottom">
<input class="no-margin-bottom" type="text" name="name" required value="${csvTransaction.getName()}">
</div>
</td>
<td>${csvTransaction.getAmount()}</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment