-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
mask-image and gradients #1002
Labels
Comments
Thanks or report. I will look at it on Friday. Seems like gradient direction syntax replacer has some problem with this direction. |
@BaliBalo Oops. I forget, sorry. Maybe you want to send PR? |
Done 847bfd5 |
Released in 8.5 |
This was referenced May 13, 2018
Thanks a lot! Haven't had time to make a PR sorry. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
outputs the following
This is wrong because:
radial-gradient
uses an old syntax (-webkit-radial-gradient(100% 50%, circle closest-corner, ...)
), the standardat 100% 50%
is not recognized, so the first line doesn't work.mask-image
, so the second line doesn't work.One thing that would work would be the prefixed version of mask-image with the unprefixed version of radial-gradient:
-webkit-mask-image: radial-gradient(circle closest-corner at 100% 50%, #000, transparent);
(I am testing in Chrome, not sure if this applies in Safari)
The text was updated successfully, but these errors were encountered: