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

Sort prefixed values before unprefixed values with the same key #211

Merged
merged 1 commit into from
Mar 8, 2017

Commits on Mar 8, 2017

  1. Sort prefixed values before unprefixed values with the same key

    Summary: In #200 the way we started sorting prefixed and unprefixed values
    differently. This builds on that by making sure that when style values are
    prefixed, they come before the unprefixed values with the same key.
    
    E.g.
    
    ```css
    display: -webkit-flex; // prefixed value comes before
    display: flex;         // unprefixed value
    ```
    
    @lencioni
    xymostech committed Mar 8, 2017
    Configuration menu
    Copy the full SHA
    d8a629b View commit details
    Browse the repository at this point in the history