Match price filter inputs to search bar style
Same padding, rounded-lg, text-sm, focus ring as the filter input. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -322,10 +322,10 @@
|
||||
<div class="flex items-center gap-1.5 whitespace-nowrap">
|
||||
<span class="text-2xs text-text-tertiary">Price:</span>
|
||||
<input type="number" bind:value={priceMin} placeholder="Min" step="0.01" min="0"
|
||||
class="w-20 px-2 py-1.5 bg-surface-raised border border-surface-border rounded text-xs text-text-primary placeholder-text-tertiary focus:border-accent/50 focus:outline-none" />
|
||||
class="w-24 px-3 py-2.5 bg-surface-raised border border-surface-border rounded-lg text-sm text-text-primary placeholder-text-tertiary focus:border-accent/50 focus:ring-1 focus:ring-accent/20 focus:outline-none transition-all" />
|
||||
<span class="text-text-tertiary">–</span>
|
||||
<input type="number" bind:value={priceMax} placeholder="Max" step="0.01" min="0"
|
||||
class="w-20 px-2 py-1.5 bg-surface-raised border border-surface-border rounded text-xs text-text-primary placeholder-text-tertiary focus:border-accent/50 focus:outline-none" />
|
||||
class="w-24 px-3 py-2.5 bg-surface-raised border border-surface-border rounded-lg text-sm text-text-primary placeholder-text-tertiary focus:border-accent/50 focus:ring-1 focus:ring-accent/20 focus:outline-none transition-all" />
|
||||
</div>
|
||||
<span class="text-xs text-text-tertiary whitespace-nowrap">
|
||||
{filteredAndSorted().length} of {results.length}
|
||||
|
||||
Reference in New Issue
Block a user