Re: [csswg-drafts] [css-view-transitions-1] The ability for authors to re-enable pointer events (#11596)

The problem you are having is that the `::view-transition` overlay is catching all the clicks.

You can undo that by setting `pointer-events` to none on it.

```css
::view-transition {
  pointer-events: none;
}
```

Note that the animated pseudos also don’t respond to hit testing, which can’t be undone.

See https://www.bram.us/2025/01/29/view-transitions-page-interactivity/ for more details.

-- 
GitHub Notification of comment by bramus
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11596#issuecomment-2622535149 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 29 January 2025 18:38:31 UTC