ilya_shyian 1c5a2a8f35 +react/react-store 3 anos atrás
..
dist 1c5a2a8f35 +react/react-store 3 anos atrás
CHANGELOG.md 1c5a2a8f35 +react/react-store 3 anos atrás
LICENSE 1c5a2a8f35 +react/react-store 3 anos atrás
README.md 1c5a2a8f35 +react/react-store 3 anos atrás
package.json 1c5a2a8f35 +react/react-store 3 anos atrás

README.md

postcss-selector-not CSS Standard Status Build Status

PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors

http://dev.w3.org/csswg/selectors-4/#negation

'Can I use' table

Installation

$ npm install postcss postcss-selector-not

Usage

Using this input.css:

p:not(:first-child, .special) {
  color: red;
}

you will get:

p:not(:first-child):not(.special) {
  color: red;
}

Changelog

License