-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scoped CSS not working with HTML templates #336
Comments
Oh, looks like this will be incompatible with the fact that the template engine uses plain HTML whenever possible (ie for all subtrees that don't contain any holes). Because with scoped CSS, we need to add an attribute to every element. I'd hate to have to get rid of this optimization though. Maybe we can add a static parameter to the type provider so the user can choose: if they use scoped CSS, they must disable the optimization, but if they don't use scoped CSS, then they can enable it. |
Fixed in v0.23.52. |
Most likely because
Node.Elt
does not checkCssScope
like the computation expressions do.The text was updated successfully, but these errors were encountered: