Re: [csswg-drafts] [css-view-transitions-1] Should mix-blend-mode be a part of the ua opacity animation? (#8924)

Would it make sense to fold the blend mode into the first animation? I.e.

```
@keyframes -ua-view-transition-fade-in {
  from { opacity: 0; mix-blend-mode: plus-lighter }
  to { mix-blend-mode: plus-lighter }
}
@keyframes -ua-view-transition-fade-in {
  from { mix-blend-mode: plus-lighter }
  to { opacity: 0; mix-blend-mode: plus-lighter }
}
```

Then there's fewer UA animations hanging around... not sure if that's more or less helpful to authors though.

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


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

Received on Tuesday, 13 June 2023 20:50:36 UTC