Refactor terminology in dialogs and tables for consistency; update styles for number inputs and footer links

This commit is contained in:
2026-04-03 09:32:14 +02:00
parent 719b33bb71
commit 0923c037eb
7 changed files with 56 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
<div class="dialog-backdrop" @onclick="Cancel">
<div class="dialog-content" @onclick:stopPropagation="true">
<h5>@(EditEntry != null ? "Eintrag bearbeiten" : "Neuer Eintrag")</h5>
<h5>@(EditEntry != null ? "Buchung bearbeiten" : "Neue Buchung")</h5>
<div class="form-container">
@if (EditEntry == null)
@@ -21,7 +21,7 @@
<input type="text" class="form-control" @bind="title" placeholder="Beschreibung" />
<label class="form-label">Betrag (€)</label>
<input type="number" class="form-control" @bind="amount" step="0.01" min="0.01" />
<input type="number" class="form-control no-spinner" @bind="amount" step="0.01" min="0.01" />
</div>
<div class="d-flex justify-content-end gap-2">