diff options
| author | David Hill <[email protected]> | 2026-01-15 17:42:04 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-15 19:15:21 +0000 |
| commit | 520c47e81d543cd2fe2f51af12bd7f48b831d16c (patch) | |
| tree | be5ba2a207065abe2e32766e66842322d9687c5f | |
| parent | e5b08da0f1d2e620944c372ba2207f448911fe73 (diff) | |
| download | opencode-520c47e81d543cd2fe2f51af12bd7f48b831d16c.tar.gz opencode-520c47e81d543cd2fe2f51af12bd7f48b831d16c.zip | |
fix: increase delay on session list tooltips
| -rw-r--r-- | packages/app/src/pages/layout.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/pages/layout.tsx b/packages/app/src/pages/layout.tsx index 9938e3061..02e2628c0 100644 --- a/packages/app/src/pages/layout.tsx +++ b/packages/app/src/pages/layout.tsx @@ -873,7 +873,7 @@ export default function Layout(props: ParentProps) { class="group/session relative w-full rounded-md cursor-default transition-colors px-3 hover:bg-surface-raised-base-hover focus-within:bg-surface-raised-base-hover has-[.active]:bg-surface-raised-base-hover" > - <Tooltip placement={props.mobile ? "bottom" : "right"} value={props.session.title} gutter={16}> + <Tooltip placement={props.mobile ? "bottom" : "right"} value={props.session.title} gutter={16} openDelay={1000}> <A href={`${props.slug}/session/${props.session.id}`} class={`flex items-center justify-between gap-3 min-w-0 text-left w-full focus:outline-none transition-[padding] group-hover/session:pr-7 group-focus-within/session:pr-7 group-active/session:pr-7 ${props.dense ? "py-0.5" : "py-1"}`} |
