mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
fix: Disable floating toolbar interaction during open animation (#12508)
Closes #12503 Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -420,11 +420,24 @@ const Wrapper = styled.div<WrapperProps>`
|
||||
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 {
|
||||
|
||||
Reference in New Issue
Block a user