-
Notifications
You must be signed in to change notification settings - Fork 34
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
background{0 0} becomes background{0}? #24
Comments
Shouldn't more regex control characters be escaped; not less? Before: After: |
Had some issues with markdown, so some backslashes escaped ;-) anyway, it now is how I meant it to be. questions remains whether |
Fixed in v2.4.8-p7 release. Thank you guys! |
a{background:0 0}
becomes
a{background:0}
fix could be to change line 357 from
$css = preg_replace('/(background\-position|webkit-mask-position|(?:webkit|moz|o|ms|)\-?transform\-origin)\:0(;|\}| \!)/iS', '$1:0 0$2', $css);
into
$css = preg_replace('/(background|background\-position|webkit-mask-position|(?:webkit|moz|o|ms|)\-?transform\-origin)\:0(;|\}| \!)/iS', '$1:0 0$2', $css);
frank
The text was updated successfully, but these errors were encountered: