1.0.0 • Published 5 years ago

postcss-list-style-safari-fix v1.0.0

Weekly downloads
1
License
CC0-1.0
Repository
github
Last release
5 years ago

PostCSS List Style Safari Fix

NPM Version Build Status Support Chat

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:

NodePostCSS CLIWebpackCreate React AppGulpGrunt