fix(textarea): border-border + bg-input-background voor off-focus zichtbaarheid (#143)

Vervangt border-input door border-border en bg-transparent door
bg-input-background in de gedeelde Textarea-component en de lokale
textareaClass in task-dialog.tsx. Dark mode ongewijzigd via dark:bg-input/30.

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Janpeter Visser 2026-05-07 14:27:11 +02:00 committed by GitHub
parent c6afde0ff6
commit 2d27c41d38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ function CharCount({ value, max }: { value: string; max: number }) {
}
const textareaClass = cn(
'flex w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-sm',
'flex w-full rounded-lg border border-border bg-input-background px-2.5 py-2 text-sm',
'transition-colors outline-none placeholder:text-muted-foreground resize-none',
'focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50',
'overflow-y-auto',