Skip to content

Commit

Permalink
#724 - reduce row height and do not show label for text input
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlocker8 committed Jan 11, 2023
1 parent 14f4c44 commit 7221c5c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@

.transaction-import-row-skipped {
opacity: 0.5;
}

#table-transaction-rows td {
padding: 5px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit 7221c5c

Please sign in to comment.