6.0.5 • Published 7 years ago

stylecow-plugin-prefixes v6.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

stylecow plugin prefixes

Build Status

Stylecow plugin to add automatically all vendor prefixes needed. It uses the caniuse database to get the data about the browsers support.

You write:

.foo {
    user-select: none;
    hyphens: auto;
    transition: background-color 2s;
}

And stylecow converts to:

.foo {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -moz-transition: background-color 2s;
    -webkit-transition: background-color 2s;
    -o-transition: background-color 2s;
    transition: background-color 2s;
}

More demos in the tests folder

6.0.5

7 years ago

6.0.4

8 years ago

6.0.3

8 years ago

6.0.2

8 years ago

6.0.1

8 years ago

6.0.0

9 years ago

5.0.1

9 years ago

5.0.0

9 years ago

4.2.0

9 years ago

4.1.1

9 years ago

4.1.0

9 years ago

4.0.1

9 years ago

4.0.0

9 years ago

3.0.1

9 years ago

3.0.0

9 years ago

2.1.1

9 years ago

2.1.0

10 years ago

2.0.0

10 years ago

1.0.0

10 years ago