diff --git a/plane-src/apps/web/ce/components/comments/comment-block.tsx b/plane-src/apps/web/ce/components/comments/comment-block.tsx index c08454e..a6f259a 100644 --- a/plane-src/apps/web/ce/components/comments/comment-block.tsx +++ b/plane-src/apps/web/ce/components/comments/comment-block.tsx @@ -36,13 +36,13 @@ export const CommentBlock = observer(function CommentBlock(props: TCommentBlock) />
{t("common.loading")}
) : filteredOptions.length > 0 ? ( @@ -166,7 +166,7 @@ export const IssueLabelSelect = observer(function IssueLabelSelect(props: IIssue key={option.value} value={option.value} className={({ selected }) => - `flex cursor-pointer items-center justify-between gap-2 truncate rounded-sm px-1 py-1.5 select-none hover:bg-layer-1 ${ + `nodedc-dropdown-option cursor-pointer ${ selected ? "text-primary" : "text-secondary" }` } @@ -194,7 +194,7 @@ export const IssueLabelSelect = observer(function IssueLabelSelect(props: IIssue if (!query.length) return; handleAddLabel(query); }} - className={`text-left text-secondary ${query.length ? "cursor-pointer" : "cursor-default"}`} + className={`rounded-[0.9rem] px-2 py-2 text-left text-secondary ${query.length ? "cursor-pointer hover:bg-white/6" : "cursor-default"}`} > {query.length ? ( <> @@ -205,10 +205,12 @@ export const IssueLabelSelect = observer(function IssueLabelSelect(props: IIssue t("label.create.type") )} - ) : ( -{t("common.search.no_matching_results")}
- )} -+ {t("common.search.no_matching_results")} +
+ )} +{t("common.loading")}
) : filteredOptions && filteredOptions.length > 0 ? ( @@ -286,8 +286,8 @@ export function LabelDropdown(props: ILabelDropdownProps) { } }} className={({ active, selected }) => - `flex cursor-pointer items-center justify-between gap-2 truncate rounded-sm px-1 py-1.5 select-none hover:bg-layer-1 ${ - active ? "bg-layer-1" : "" + `nodedc-dropdown-option cursor-pointer ${ + active ? "bg-white/6" : "" } ${selected ? "text-primary" : "text-secondary"}` } > @@ -311,7 +311,7 @@ export function LabelDropdown(props: ILabelDropdownProps) { if (!query.length) return; handleAddLabel(query); }} - className={`text-left text-secondary ${query.length ? "cursor-pointer" : "cursor-default"}`} + className={`rounded-[0.9rem] px-2 py-2 text-left text-secondary ${query.length ? "cursor-pointer hover:bg-white/6" : "cursor-default"}`} > {/* TODO: translate here */} {query.length ? ( @@ -323,7 +323,9 @@ export function LabelDropdown(props: ILabelDropdownProps) { )} ) : ( -{t("common.search.no_matching_results")}
++ {t("common.search.no_matching_results")} +
)}