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

deletes non-prefixed statements after changing value #22

Open
stereonom opened this issue May 17, 2013 · 1 comment
Open

deletes non-prefixed statements after changing value #22

stereonom opened this issue May 17, 2013 · 1 comment

Comments

@stereonom
Copy link

When I have for example:

div {
    margin: 20px;
    padding: 10px;
    transition: 1s all;
}

it gets correctly prefixed to:

div {
    margin: 20px;
    padding: 10px;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -o-transition: 1s all;
    -ms-transition: 1s all;
    transition: 1s all;
}

Now I change the last row from "transition: 1s all;" to "transition: 5s all;" and hit the prefix commando again.
The result is:

div {
    -webkit-transition: 5s all;
    -moz-transition: 5s all;
    -o-transition: 5s all;
    -ms-transition: 5s all;
    transition: 5s all;
}

It killed the margin and the padding statements.
I tried a few other tests and every time the statements before the prefixed ones get killed.

Hope you can fix this soon.

@Chates
Copy link

Chates commented Aug 3, 2013

I have discovered this ugly behaviour too! :-(

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

2 participants