UI - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: исправление перекрытия панели фильтров kanban-оверлеем
This commit is contained in:
@@ -249,9 +249,9 @@ export const BaseKanBanRoot = observer(function BaseKanBanRoot(props: IBaseKanBa
|
||||
/>
|
||||
{/* drag and delete component */}
|
||||
<div
|
||||
className={`fixed left-1/2 -translate-x-1/2 ${
|
||||
isDragging ? "z-40" : ""
|
||||
} top-3 mx-3 flex w-[min(40rem,calc(100vw-2rem))] items-center justify-center`}
|
||||
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 ? "pointer-events-auto z-40" : "pointer-events-none"
|
||||
}`}
|
||||
ref={deleteAreaRef}
|
||||
>
|
||||
<div
|
||||
|
||||
@@ -48,6 +48,7 @@ export const MultiSelectFilterValueInput = observer(function MultiSelectFilterVa
|
||||
return (
|
||||
<CustomSearchSelect
|
||||
{...getCommonCustomSearchSelectProps(isDisabled)}
|
||||
className="min-w-[4.5rem]"
|
||||
value={toFilterArray(condition.value)}
|
||||
onChange={handleSelectChange}
|
||||
options={formattedOptions}
|
||||
|
||||
@@ -50,6 +50,7 @@ export const SingleSelectFilterValueInput = observer(function SingleSelectFilter
|
||||
return (
|
||||
<CustomSearchSelect
|
||||
{...getCommonCustomSearchSelectProps(isDisabled)}
|
||||
className="min-w-[4.5rem]"
|
||||
value={condition.value}
|
||||
onChange={handleSelectChange}
|
||||
options={formattedOptions}
|
||||
|
||||
Reference in New Issue
Block a user