-
-
Notifications
You must be signed in to change notification settings - Fork 25
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
Some bugs in CSS minifying #16
Comments
Hi sant0ro, the packag eis using the cssminify package as of v0.0.7. |
I've forked a pull request to the original cssminify package and rolled that package out as cssminify2, then updated jekyll-minifier to use cssminify2, this issue should now be resolved. |
Thanks @digitalsparky ! |
It's seems that sadly the bugs continues. The CSSMinify continues removing the postfixes (from 0 absolute values).. and this bug transitions and animations. |
@digitalsparky I can confirm: issue not resolved. |
Unfortunately, I'm still seeing this issue as well in 0.1.10. |
Sorry all, I've had a bit of a nightmare last few years and haven't really been able to do much. (I was in a car crash (not at fault) which caused a spinal injury.) I've been both in copious amounts of pain and also a pain killer induced zombie-mode... I'll get to this when I have some more capacity for concentration. If anyone would like to help with this, please feel free to reach out. Matt |
@digitalsparky Wish you get better soon. I also run into this issue, but a work-around DOES exist. For those who still suffer this issue, the answer is transition-duration: initial; |
I saw that the script minifies CSS also, but has some bugs.
If the word
0
is found, removes all postfixes added on it.(Like removing the % of 0%, since in CSS 0% = 0)
But this makes
0s
became0
in Transitions and also transforms 0% from transitions in 0. (That creates bugs in the syntax)Why not using CSSMINIFY package? Like Explained in #13
The text was updated successfully, but these errors were encountered: