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

Fixed #370 - new transaction page: repeating option inputs not visible in safari

parent 71986a61
No related branches found
No related tags found
No related merge requests found
Pipeline #341 passed
......@@ -14,3 +14,7 @@
.chips .chip.selected {
background-color: #2E79B9;
}
.input-min-width {
min-width: 100px;
}
\ No newline at end of file
......@@ -14,3 +14,7 @@
.chips .chip.selected {
background-color: #2E79B9;
}
.input-min-width {
min-width: 100px;
}
\ No newline at end of file
......@@ -257,7 +257,7 @@
<td class="cell">${locale.getString("repeating.end.afterXTimes.A")}</td>
<td class="cell input-cell">
<div class="input-field no-margin">
<input class="no-margin" id="transaction-repeating-end-after-x-times-input" type="text" value="<#if checked>${transaction.getRepeatingOption().getEndOption().getValue()}</#if>">
<input class="no-margin input-min-width" id="transaction-repeating-end-after-x-times-input" type="text" value="<#if checked>${transaction.getRepeatingOption().getEndOption().getValue()}</#if>">
<label for="transaction-repeating-end-after-x-times-input"></label>
</div>
</td>
......@@ -280,7 +280,7 @@
<td class="cell">${locale.getString("repeating.end.date")}</td>
<td class="cell input-cell">
<div class="input-field no-margin">
<input class="datepicker no-margin" id="transaction-repeating-end-date-input" type="text" value="<#if checked>${helpers.getLongDateString(transaction.getRepeatingOption().getEndOption().getValue())}<#else>${helpers.getLongDateString(currentDate)}</#if>">
<input class="datepicker no-margin input-min-width" id="transaction-repeating-end-date-input" type="text" value="<#if checked>${helpers.getLongDateString(transaction.getRepeatingOption().getEndOption().getValue())}<#else>${helpers.getLongDateString(currentDate)}</#if>">
<label for="transaction-repeating-end-date-input"></label>
</div>
</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment