Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
postcss-pseudoelements
Advanced tools
PostCSS plugin to add single-colon CSS 2.1 syntax pseudo selectors (i.e. :before)
postcss helper for pseudo element colons, it handles double -> single and single -> double.
var pe = require('postcss-pseudoelements');
var postcss = require('postcss');
var options = {
single: true, // default
selectors: ['before','after','first-letter','first-line'], // default
};
var processor = postcss(pe(options));
console.log(processor.process('a:before {}').css) // outputs: a:before {}
console.log(processor.process('a::before {}').css) // outputs: a:before {}
var pe = require('postcss-pseudoelements');
var postcss = require('postcss');
var options = {
single: false,
selectors: ['before','after','first-letter','first-line'], // default
};
var processor = postcss(pe(options));
console.log(processor.process('a:before {}').css) // outputs: a::before {}
console.log(processor.process('a::before {}').css) // outputs: a::before {}
single
: Boolean
true
(default) if you want to move from double colon to colon for backwards compatibilityfalse
if you need double colonsselectors
: Array
of pseudo-element selectors to rewrite with single and double colons. Note that these values will be used in a regexp without escaping. Defaults to ['before','after','first-letter','first-line']
example selectors:
var options = {
selectors: [
'hover',
'focus',
'active',
'after',
'ms-expand',
'not',
'first-child',
'last-child'
],
};
var options = {
single: true,
[
'before',
'after',
'first-letter',
'first-line'
]
};
FAQs
PostCSS plugin to add single-colon CSS 2.1 syntax pseudo selectors (i.e. :before)
The npm package postcss-pseudoelements receives a total of 153,547 weekly downloads. As such, postcss-pseudoelements popularity was classified as popular.
We found that postcss-pseudoelements 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.