Skip to content

Commit

Permalink
#724 - reduce opacity of skipped rows
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlocker8 committed Jan 11, 2023
1 parent 3cd7bfa commit 14f4c44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@

.transaction-import-text-with-icon i {
margin-right: 1.3rem;
}

.transaction-import-row-skipped {
opacity: 0.5;
}
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
</#macro>

<#macro renderCsvRow csvTransaction index>
<tr>
<tr class="<#if csvTransaction.getStatus().name() == 'SKIPPED'>transaction-import-row-skipped</#if>">
<form name="NewTransactionInPlace" method="POST" action="<@s.url '/transactionImport/' + index + '/newTransactionInPlace'/>">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
<td><@statusBanner csvTransaction.getStatus()/></td>
Expand Down

0 comments on commit 14f4c44

Please sign in to comment.