
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
postcss-morphicon
Advanced tools
A postcss plugin to add special morphable icons done in pure HTML/CSS
A PostCSS plugin to add special morphable icons done in pure HTML/CSS
npm install postcss-morphicon
Use HTML like this
<div class="icon">
<span></span>
<span></span>
<span></span>
</div>
Then you can use morhicons like this in PostCSS:
.icon {
morphicon: menu;
}
.icon:hover {
morphicon: close;
}
that will produce
You can also pass-in more values to style the icons like so
.icon {
/* a comma separated list of the following values */
/*
[icon],
[icon width],
[icon height],
[icon line length],
[icon line thickness],
[icon line color],
[icon gap between lines]
*/
morhicon: menu, 50px, 50px, 40px, 3px, red, 2px;
}
There are a number of available icons morphicons can create and morph into:
Using Gulp.
var gulp = require('gulp'),
postcss = require('gulp-postcss'),
morphicon = require('postcss-morphicon');
gulp.task('css', function() {
gulp.src('path/to/dev/css').
.pipe(postcss({
morphicon
}))
.pipe(gulp.dest('path/to/build/css'));
});
// rest of the gulp file
FAQs
A postcss plugin to add special morphable icons done in pure HTML/CSS
We found that postcss-morphicon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.