UI - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: исправление перекрытия панели фильтров kanban-оверлеем

This commit is contained in:
DCCONSTRUCTIONS 2026-04-21 10:51:16 +03:00
parent e4a59e7a54
commit a5bf967862
3 changed files with 5 additions and 3 deletions

View File

@ -249,9 +249,9 @@ export const BaseKanBanRoot = observer(function BaseKanBanRoot(props: IBaseKanBa
/> />
{/* drag and delete component */} {/* drag and delete component */}
<div <div
className={`fixed left-1/2 -translate-x-1/2 ${ className={`fixed left-1/2 top-3 mx-3 flex w-[min(40rem,calc(100vw-2rem))] -translate-x-1/2 items-center justify-center ${
isDragging ? "z-40" : "" isDragging ? "pointer-events-auto z-40" : "pointer-events-none"
} top-3 mx-3 flex w-[min(40rem,calc(100vw-2rem))] items-center justify-center`} }`}
ref={deleteAreaRef} ref={deleteAreaRef}
> >
<div <div

View File

@ -48,6 +48,7 @@ export const MultiSelectFilterValueInput = observer(function MultiSelectFilterVa
return ( return (
<CustomSearchSelect <CustomSearchSelect
{...getCommonCustomSearchSelectProps(isDisabled)} {...getCommonCustomSearchSelectProps(isDisabled)}
className="min-w-[4.5rem]"
value={toFilterArray(condition.value)} value={toFilterArray(condition.value)}
onChange={handleSelectChange} onChange={handleSelectChange}
options={formattedOptions} options={formattedOptions}

View File

@ -50,6 +50,7 @@ export const SingleSelectFilterValueInput = observer(function SingleSelectFilter
return ( return (
<CustomSearchSelect <CustomSearchSelect
{...getCommonCustomSearchSelectProps(isDisabled)} {...getCommonCustomSearchSelectProps(isDisabled)}
className="min-w-[4.5rem]"
value={condition.value} value={condition.value}
onChange={handleSelectChange} onChange={handleSelectChange}
options={formattedOptions} options={formattedOptions}