diff --git a/rsconcept/frontend/src/app/Navigation/Logo.tsx b/rsconcept/frontend/src/app/Navigation/Logo.tsx index 9077a190..96d9f87f 100644 --- a/rsconcept/frontend/src/app/Navigation/Logo.tsx +++ b/rsconcept/frontend/src/app/Navigation/Logo.tsx @@ -10,9 +10,7 @@ function Logo() { return ( Логотип КонцептПортал ); diff --git a/rsconcept/frontend/src/components/ui/Checkbox.tsx b/rsconcept/frontend/src/components/ui/Checkbox.tsx index 84c93f82..373d831b 100644 --- a/rsconcept/frontend/src/components/ui/Checkbox.tsx +++ b/rsconcept/frontend/src/components/ui/Checkbox.tsx @@ -49,6 +49,7 @@ function Checkbox({ className={clsx( 'flex items-center gap-2', // prettier: split lines 'outline-none', + 'focus-frame', cursor, className )} diff --git a/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx b/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx index 47e7ce2a..83d83823 100644 --- a/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx +++ b/rsconcept/frontend/src/components/ui/CheckboxTristate.tsx @@ -53,6 +53,7 @@ function CheckboxTristate({ className={clsx( 'flex items-center gap-2', // prettier: split lines 'outline-none', + 'focus-frame', cursor, className )} diff --git a/rsconcept/frontend/src/components/ui/SearchBar.tsx b/rsconcept/frontend/src/components/ui/SearchBar.tsx index fbf7e04b..54c573fd 100644 --- a/rsconcept/frontend/src/components/ui/SearchBar.tsx +++ b/rsconcept/frontend/src/components/ui/SearchBar.tsx @@ -21,7 +21,7 @@ function SearchBar({ id, value, onChange, noBorder, ...restProps }: SearchBarPro noOutline placeholder='Поиск' type='search' - className='w-full pl-10' + className='w-full pl-10 outline-none' noBorder={noBorder} value={value} onChange={event => (onChange ? onChange(event.target.value) : undefined)} diff --git a/rsconcept/frontend/src/components/ui/SelectMulti.tsx b/rsconcept/frontend/src/components/ui/SelectMulti.tsx index 275b9f9e..48fe6618 100644 --- a/rsconcept/frontend/src/components/ui/SelectMulti.tsx +++ b/rsconcept/frontend/src/components/ui/SelectMulti.tsx @@ -55,6 +55,10 @@ function SelectMulti = GroupBase