From d595e43fb898b05382573625a2bba7a3a32c00f1 Mon Sep 17 00:00:00 2001 From: DCCONSTRUCTIONS Date: Thu, 6 Aug 2026 17:58:45 +0300 Subject: [PATCH] =?UTF-8?q?FIX=20-=20TASKER=20UI:=20=D0=BE=D0=B4=D0=BD?= =?UTF-8?q?=D0=BE=D1=81=D1=82=D1=80=D0=BE=D1=87=D0=BD=D1=8B=D0=B5=20=D1=81?= =?UTF-8?q?=D0=B2=D0=BE=D0=B9=D1=81=D1=82=D0=B2=D0=B0=20=D0=B8=20popover?= =?UTF-8?q?=20=D0=BF=D0=BE=D0=B2=D0=B5=D1=80=D1=85=20=D0=BA=D0=B0=D1=80?= =?UTF-8?q?=D1=82=D0=BE=D1=87=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dropdowns/member/member-options.tsx | 7 ++----- .../web/core/components/dropdowns/state/base.tsx | 15 ++++++--------- plane-src/apps/web/styles/globals.css | 5 ++++- .../packages/ui/src/dropdown/multi-select.tsx | 2 +- .../packages/ui/src/dropdown/single-select.tsx | 2 +- 5 files changed, 14 insertions(+), 17 deletions(-) diff --git a/plane-src/apps/web/core/components/dropdowns/member/member-options.tsx b/plane-src/apps/web/core/components/dropdowns/member/member-options.tsx index 655baf5..103e2d8 100644 --- a/plane-src/apps/web/core/components/dropdowns/member/member-options.tsx +++ b/plane-src/apps/web/core/components/dropdowns/member/member-options.tsx @@ -128,10 +128,7 @@ export const MemberOptions = observer(function MemberOptions(props: Props) { return createPortal(
setQuery(e.target.value)} placeholder={t("search")} diff --git a/plane-src/apps/web/core/components/dropdowns/state/base.tsx b/plane-src/apps/web/core/components/dropdowns/state/base.tsx index 218cc51..9a44e09 100644 --- a/plane-src/apps/web/core/components/dropdowns/state/base.tsx +++ b/plane-src/apps/web/core/components/dropdowns/state/base.tsx @@ -139,7 +139,7 @@ export const WorkItemStateDropdownBase = observer(function WorkItemStateDropdown ref={setReferenceElement} type="button" className={cn( - "clickable block h-full w-full rounded-full border-0 bg-transparent shadow-none outline-none focus:outline-none focus-visible:outline-none focus-visible:ring-0", + "clickable block h-full w-full rounded-full border-0 bg-transparent shadow-none outline-none focus:outline-none focus-visible:ring-0 focus-visible:outline-none", buttonContainerClassName )} onClick={handleOnClick} @@ -154,7 +154,7 @@ export const WorkItemStateDropdownBase = observer(function WorkItemStateDropdown ref={setReferenceElement} type="button" className={cn( - "clickable block h-full max-w-full rounded-full border-0 bg-transparent shadow-none outline-none focus:outline-none focus-visible:outline-none focus-visible:ring-0", + "clickable block h-full max-w-full rounded-full border-0 bg-transparent shadow-none outline-none focus:outline-none focus-visible:ring-0 focus-visible:outline-none", { "cursor-not-allowed text-secondary": disabled, "cursor-pointer": !disabled, @@ -189,10 +189,7 @@ export const WorkItemStateDropdownBase = observer(function WorkItemStateDropdown {selectedState?.name ?? t("state")} )} {dropdownArrow && ( -