From deadaa00f1c228d9d579bd830c316f2c752194a3 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 28 May 2026 09:06:55 -0400 Subject: [PATCH] fix: Disable floating toolbar interaction during open animation (#12508) Closes #12503 Co-authored-by: Claude Opus 4.7 --- app/editor/components/FloatingToolbar.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/editor/components/FloatingToolbar.tsx b/app/editor/components/FloatingToolbar.tsx index 00cda63889..73f5ea412f 100644 --- a/app/editor/components/FloatingToolbar.tsx +++ b/app/editor/components/FloatingToolbar.tsx @@ -420,11 +420,24 @@ const Wrapper = styled.div` box-sizing: border-box; } + & button, + & a, + & input { + pointer-events: none; + } + ${({ active }) => active && ` transform: translateY(-6px) scale(1); opacity: 1; + + & button, + & a, + & input { + pointer-events: auto; + transition: pointer-events 0s 300ms; + } `}; @media print {