0.1.0 • Published 7 years ago

postcss-fallback-cursors v0.1.0

Weekly downloads
-
License
WTFPL
Repository
-
Last release
7 years ago

Fallback cursors plugin that plays nicely with Webpack LESS-loader and Autoprefixer.

Usage

const FallbackCursors = require('postcss-fallback-cursors');
FallbackCursors({
	'grabbing': 'url("path/to/grabbing.cur"), move'
});

/* add to PostCSS plugins */

so

.grabbing {
	cursor: grabbing;
}

becomes:

.grabbing {
	cursor: url("path/to/grabbing.cur"), move;
	cursor: grabbing;
}

or maybe if you're using Autoprefixer:

.grabbing {
	cursor: url("path/to/grabbing.cur"), move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

API status

This module was created for the needs I have at the moment, and it doesn't account for edge cases.

So, this module API is not stable. It will wery likely be changed in the future.

I'm open for the suggestions and PRs even if those changes are breaking as hell.