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

Fixed #386 - limit description text on transaction page

parent 884559a4
No related branches found
No related tags found
No related merge requests found
Pipeline #376 passed
...@@ -502,6 +502,10 @@ input[type="radio"]:not(:checked) + label::before, [type="radio"]:not(:checked) ...@@ -502,6 +502,10 @@ input[type="radio"]:not(:checked) + label::before, [type="radio"]:not(:checked)
width: 30%; width: 30%;
} }
.transaction-name {
width: 50%;
}
.hidden { .hidden {
display: none; display: none;
} }
......
...@@ -422,6 +422,10 @@ input[type="radio"]:checked + label::after, [type="radio"].with-gap:checked + la ...@@ -422,6 +422,10 @@ input[type="radio"]:checked + label::after, [type="radio"].with-gap:checked + la
width: 30%; width: 30%;
} }
.transaction-name {
width: 50%;
}
.hidden { .hidden {
display: none; display: none;
} }
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
</span> </span>
</div> </div>
</td> </td>
<td> <td class="transaction-name">
<div>${transaction.name}</div> <div>${transaction.name}</div>
<#if transaction.description??> <#if transaction.description??>
<div class="italic">${transaction.description}</div> <div class="italic">${transaction.description}</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment