We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The last properties in the CSS fail CSS3 validation:
.anythingSlider .start-stop { transition-duration: 0; -o-transition-duration: 0; -moz-transition-duration: 0; -webkit-transition-duration: 0; }
Easy fix to this is to add a a seconds indicator to the duration:
.anythingSlider .start-stop { transition-duration: 0s; -o-transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; }
The text was updated successfully, but these errors were encountered:
Thanks @hughlaw!
I'll have this fixed in the next update!
Sorry, something went wrong.
7458af5
css should now pass css3 validation. Fixes #556
ed3e55c
No branches or pull requests
The last properties in the CSS fail CSS3 validation:
.anythingSlider .start-stop {
transition-duration: 0;
-o-transition-duration: 0;
-moz-transition-duration: 0;
-webkit-transition-duration: 0;
}
Easy fix to this is to add a a seconds indicator to the duration:
.anythingSlider .start-stop {
transition-duration: 0s;
-o-transition-duration: 0s;
-moz-transition-duration: 0s;
-webkit-transition-duration: 0s;
}
The text was updated successfully, but these errors were encountered: