From c6645bb4fc2e7051acaed68e7629cbbf2212a9a1 Mon Sep 17 00:00:00 2001 From: DCCONSTRUCTIONS Date: Tue, 21 Apr 2026 08:14:35 +0300 Subject: [PATCH] =?UTF-8?q?UI=20-=20=D0=9C=D0=95=D0=96=D0=9F=D0=A0=D0=9E?= =?UTF-8?q?=D0=95=D0=9A=D0=A2=D0=9D=D0=90=D0=AF=20=D0=9A=D0=9E=D0=9C=D0=9C?= =?UTF-8?q?=D0=A3=D0=9D=D0=98=D0=9A=D0=90=D0=A6=D0=98=D0=AF:=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B8=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BC?= =?UTF-8?q?=D0=BE=D0=B4=D0=B0=D0=BB=D0=BA=D0=B8=20=D1=81=D0=BE=D0=B7=D0=B4?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=87=D0=B5?= =?UTF-8?q?=D0=B3=D0=BE=20=D1=8D=D0=BB=D0=B5=D0=BC=D0=B5=D0=BD=D1=82=D0=B0?= =?UTF-8?q?=20=D0=BA=20=D0=B4=D0=B8=D0=B7=D0=B0=D0=B9=D0=BD-=D0=BA=D0=B0?= =?UTF-8?q?=D0=BD=D0=BE=D0=BD=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/default-properties.tsx | 17 +++++-- .../components/issues/issue-modal/form.tsx | 8 +-- plane-src/apps/web/styles/globals.css | 50 +++++++++++++++++++ 3 files changed, 67 insertions(+), 8 deletions(-) diff --git a/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx b/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx index dee03b2..f740065 100644 --- a/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx +++ b/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx @@ -84,9 +84,10 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p const maxDate = getDate(targetDate); maxDate?.setDate(maxDate.getDate()); + const propertyButtonClassName = "nodedc-work-item-property-button"; return ( -
+
@@ -118,6 +120,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("priority")} />
@@ -136,7 +139,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant={value?.length > 0 ? "transparent-without-text" : "border-with-text"} - buttonClassName={value?.length > 0 ? "hover:bg-transparent" : ""} + buttonClassName={propertyButtonClassName} placeholder={t("assignees")} multiple tabIndex={getIndex("assignee_ids")} @@ -156,6 +159,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} projectId={projectId ?? undefined} + buttonClassName={propertyButtonClassName} tabIndex={getIndex("label_ids")} createLabelEnabled={!!canCreateLabel} /> @@ -174,6 +178,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} maxDate={maxDate ?? undefined} placeholder={t("start_date")} tabIndex={getIndex("start_date")} @@ -193,6 +198,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} minDate={minDate ?? undefined} placeholder={t("due_date")} tabIndex={getIndex("target_date")} @@ -215,6 +221,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p placeholder={t("cycle.label", { count: 1 })} value={value} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("cycle_id")} />
@@ -236,6 +243,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p }} placeholder={t("modules")} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("module_ids")} multiple showCount @@ -258,6 +266,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p }} projectId={projectId} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("estimate_point")} placeholder={t("estimate")} /> @@ -271,7 +280,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p customButton={