0.3.0 • Published 8 years ago

postcss-hover v0.3.0

Weekly downloads
135
License
MIT
Repository
github
Last release
8 years ago

PostCSS Hover Build Status

PostCSS plugin to remove every :hover selector. Attempts to solve this issue for shared styles built separately for different platforms.

.button {
    background: blue;
}
.button:hover {
    background: red;
}

// multiline selectors
.link:hover,
.link.selected {
	background: green;
}
.button {
    background: blue;
}

.link.selected {
	background: green;
}

Usage

postcss([ require('postcss-hover') ])

See PostCSS docs for examples for your environment.