diff --git a/frontend/src/routes/briefwechsel/+page.svelte b/frontend/src/routes/briefwechsel/+page.svelte
index d4383e8f..050d6567 100644
--- a/frontend/src/routes/briefwechsel/+page.svelte
+++ b/frontend/src/routes/briefwechsel/+page.svelte
@@ -99,37 +99,39 @@ function selectPerson(id: string) {
{:else}
-
+
-
-
-
-
- {#if isSinglePerson}
-
+
- {/if}
-
+
+
+ {#if isSinglePerson}
+
+ {/if}
+
+
+
{#if data.documents.length === 0}
-
+
{m.conv_strip_period()}
@@ -43,23 +43,23 @@ let isActive = $derived(!!(fromDate || toDate || sortDir !== 'DESC'));
bind:value={fromDate}
onchange={() => onapplyFilters()}
placeholder={m.conv_strip_from_placeholder()}
- class="h-8 w-[100px] rounded border bg-surface px-2 text-xs text-ink focus:outline-none focus-visible:ring-2 focus-visible:ring-focus-ring {fromDate ? 'border-primary' : 'border-line'}"
+ class="w-[120px] border-line py-2.5 text-sm text-ink shadow-sm focus:outline-none focus-visible:ring-2 focus-visible:ring-focus-ring {fromDate ? 'border-primary' : 'border-line'}"
/>
- –
+ –
onapplyFilters()}
placeholder={m.conv_strip_to_placeholder()}
- class="h-8 w-[100px] rounded border bg-surface px-2 text-xs text-ink focus:outline-none focus-visible:ring-2 focus-visible:ring-focus-ring {toDate ? 'border-primary' : 'border-line'}"
+ class="w-[120px] border-line py-2.5 text-sm text-ink shadow-sm focus:outline-none focus-visible:ring-2 focus-visible:ring-focus-ring {toDate ? 'border-primary' : 'border-line'}"
/>
@@ -73,18 +73,18 @@ let isActive = $derived(!!(fromDate || toDate || sortDir !== 'DESC'));
aria-label="Sortierung umkehren"
aria-pressed={sortDir === 'ASC'}
onclick={ontoggleSort}
- class="flex h-8 min-h-[44px] items-center gap-1 rounded border px-3 text-xs font-bold"
+ class="flex items-center gap-2 border px-4 py-2.5 text-sm font-bold tracking-wide uppercase transition hover:bg-muted hover:text-ink"
class:border-primary={isActive}
class:text-primary={isActive}
class:border-line={!isActive}
- class:text-ink-3={!isActive}
+ class:text-ink-2={!isActive}
>
{#if sortDir === 'ASC'}
{m.conv_strip_sort_oldest()}