Skip to content
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

Repeated processing causes duplicates #18

Closed
ChaosExAnima opened this issue Jul 8, 2016 · 0 comments
Closed

Repeated processing causes duplicates #18

ChaosExAnima opened this issue Jul 8, 2016 · 0 comments

Comments

@ChaosExAnima
Copy link
Contributor

Seeing an issue where the code causes duplicate properties if the fallback already exists.

Given this code:

selector {
    overflow: visible;
    overflow: initial;
    width: auto;
    width: initial;
}

Processing generates this:

selector {
    overflow: visible;
    overflow: visible;
    overflow: initial;
    width: auto;
    width: auto;
    width: initial;
}

This causes issues where the file is processed via a Grunt watch script or similar, as it can lead to hundreds of duplicate properties.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant