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

#724 - reduce opacity of skipped rows

parent 3cd7bfa8
Branches
Tags
No related merge requests found
...@@ -12,3 +12,7 @@ ...@@ -12,3 +12,7 @@
.transaction-import-text-with-icon i { .transaction-import-text-with-icon i {
margin-right: 1.3rem; margin-right: 1.3rem;
} }
.transaction-import-row-skipped {
opacity: 0.5;
}
\ No newline at end of file
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
</#macro> </#macro>
<#macro renderCsvRow csvTransaction index> <#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'/>"> <form name="NewTransactionInPlace" method="POST" action="<@s.url '/transactionImport/' + index + '/newTransactionInPlace'/>">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/> <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
<td><@statusBanner csvTransaction.getStatus()/></td> <td><@statusBanner csvTransaction.getStatus()/></td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment