├── .gitignore ├── .tape.js ├── LICENSE.md ├── README.md ├── index.js ├── package.json └── test ├── hocus.css ├── hocus.expect.css ├── pocus.css └── pocus.expect.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | test/*.result.css 4 | -------------------------------------------------------------------------------- /.tape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilian/postcss-hocus/HEAD/.tape.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilian/postcss-hocus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilian/postcss-hocus/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilian/postcss-hocus/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilian/postcss-hocus/HEAD/package.json -------------------------------------------------------------------------------- /test/hocus.css: -------------------------------------------------------------------------------- 1 | a:hocus { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/hocus.expect.css: -------------------------------------------------------------------------------- 1 | a:hover,a:focus { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/pocus.css: -------------------------------------------------------------------------------- 1 | a:pocus { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/pocus.expect.css: -------------------------------------------------------------------------------- 1 | a:hover,a:active,a:focus { 2 | color: blue; 3 | } 4 | --------------------------------------------------------------------------------