├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── fix-display.css ├── fix-display.expected.css ├── fix.css ├── fix.expected.css ├── multiple.css ├── multiple.expected.css ├── other-clears.css └── other-clears.expected.css ├── mocha.opts └── test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/fix-display.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | clear: fix; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/fix-display.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/test/fixtures/fix-display.expected.css -------------------------------------------------------------------------------- /test/fixtures/fix.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | clear: fix; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/fix.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/test/fixtures/fix.expected.css -------------------------------------------------------------------------------- /test/fixtures/multiple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/test/fixtures/multiple.css -------------------------------------------------------------------------------- /test/fixtures/multiple.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/test/fixtures/multiple.expected.css -------------------------------------------------------------------------------- /test/fixtures/other-clears.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/test/fixtures/other-clears.css -------------------------------------------------------------------------------- /test/fixtures/other-clears.expected.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/test/fixtures/other-clears.expected.css -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter nyan 2 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeleineostoja/postcss-clearfix/HEAD/test/test.js --------------------------------------------------------------------------------