1.0.1 • Published 9 years ago
postcss-substitute-optional-required v1.0.1
PostCSS Substitute Optional Required

PostCSS plugin to shim the pseudo-selectors :required and :optional by using negation (:not) and therefore slightly increase their browser support.
/* input */
input:required::after {
content: '*'
}
textarea:optional::after {
content: '(optional)';
}
/* output */
input:not(:optional),
input:required::after {
content: '*'
}
textarea:not(:required)::after,
textarea:optional::after {
content: '(optional)';
}/* input, option { method: 'shim-required' } */
:required {
color: hotpink;
}
:optional {
color: indianred;
}
/* output, option { method: 'shim-required' } */
:not(:optional),
:required {
color: hotpink;
}
:optional {
color: indianred;
}/* input, option { method: 'shim-optional' } */
:required {
color: hotpink;
}
:optional {
color: indianred;
}
/* output, option { method: 'shim-optional' } */
:required {
color: hotpink;
}
:not(:required),
:optional {
color: indianred;
}##Options
The only available option is method, with the possible values shim-all (default), shim-optional and shim-required:
Usage
postcss([ require('postcss-substitute-optional-required') ])postcss([ require('postcss-substitute-optional-required') ])({ method: 'shim-required' }) //shim only the :required selectorSee PostCSS docs for examples for your environment.
1.0.1
9 years ago