mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
fix: reach acceptable border outline contrast threshold on My Files search input when focused
This commit is contained in:
parent
31bb9d255f
commit
641ad54800
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ export default function DataTable<TData, TValue>({ columns, data }: DataTablePro
|
|||
placeholder=" "
|
||||
value={(table.getColumn('filename')?.getFilterValue() as string | undefined) ?? ''}
|
||||
onChange={(event) => table.getColumn('filename')?.setFilterValue(event.target.value)}
|
||||
className="peer w-full text-sm"
|
||||
className="peer w-full text-sm focus-visible:border-ring"
|
||||
aria-label={localize('com_files_filter_input')}
|
||||
/>
|
||||
<label className="absolute left-2 top-1/2 -translate-y-1/2 text-sm text-text-primary transition-all duration-200 peer-focus:-top-2 peer-focus:text-xs peer-focus:text-text-primary peer-[:not(:placeholder-shown)]:-top-2 peer-[:not(:placeholder-shown)]:text-xs">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue