Skip to content

Commit 1d7ff66

Browse files
tea-artistteable-bot
andauthored
[sync] fix: Base item hover bg transparent T1514 (#953) (#2367)
Synced from teableio/teable-ee@14fa7d5 Co-authored-by: teable-bot <[email protected]>
1 parent ef032a2 commit 1d7ff66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/nextjs-app/src/features/app/blocks/space/BaseItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const BaseItem: FC<IBaseItemProps> = (props) => {
8282
return (
8383
<div
8484
className={cn(
85-
'relative group flex h-12 items-center cursor-pointer hover:bg-accent',
85+
'relative group flex h-12 items-center cursor-pointer hover:bg-accent dark:hover:bg-popover',
8686
className
8787
)}
8888
onClick={() => onToggleExpand?.()}
@@ -190,7 +190,7 @@ export const BaseItem: FC<IBaseItemProps> = (props) => {
190190

191191
{/* Actions Column */}
192192
<div
193-
className="absolute right-0 flex shrink-0 items-center gap-2 bg-accent px-4 opacity-0 group-hover:opacity-100"
193+
className="absolute right-0 flex shrink-0 items-center gap-2 bg-accent px-4 opacity-0 group-hover:opacity-100 dark:bg-popover"
194194
onClick={stopPropagation}
195195
onMouseDown={stopPropagation}
196196
>

0 commit comments

Comments
 (0)