Package Exports
- postcss-list-style-safari-fix
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-list-style-safari-fix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
PostCSS List Style Safari Fix 
PostCSS List Style Safari Fix lets you remove list styles in CSS without preventing VoiceOver from announcing them in Safari.
nav ol, nav ul {
list-style: none;
}
/* becomes */
nav ol, nav ul {
list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
}
For more information about this Safari / VoiceOver bug, read VoiceOver and list-style-type: none.
Usage
Add PostCSS List Style Safari Fix to your project:
npm install postcss-list-style-safari-fix --save-dev
Use PostCSS List Style Safari Fix to process your CSS:
const postcssListStyleSafariFix = require('postcss-list-style-safari-fix');
postcssListStyleSafariFix.process(YOUR_CSS /*, processOptions, pluginOptions */);
Or use it as a PostCSS plugin:
const postcss = require('postcss');
const postcssListStyleSafariFix = require('postcss-list-style-safari-fix');
postcss([
postcssListStyleSafariFix(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
PostCSS List Style Safari Fix runs in all Node environments, with special instructions for:
Node | PostCSS CLI | Webpack | Create React App | Gulp | Grunt |
---|