UI - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: исправление перекрытия панели фильтров kanban-оверлеем
This commit is contained in:
parent
e4a59e7a54
commit
a5bf967862
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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}
|
||||||
|
|
|
||||||
|
|
@ -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}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue