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

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:
Scrum4Me Agent 2026-05-07 14:13:28 +02:00
parent c6afde0ff6
commit d95a7e699d
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',