postcss 5.0.10 → 5.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of postcss might be problematic. Click here for more details.

package/d.ts/at-rule.d.ts CHANGED
@@ -34,8 +34,6 @@ export default class AtRule extends Container implements postcss.AtRule {
34
34
  toJSON(): postcss.JsonAtRule;
35
35
  append(...children: any[]): Container;
36
36
  prepend(...children: any[]): Container;
37
- insertBefore(oldNode: any, newNode: any): Container;
38
- insertAfter(oldNode: any, newNode: any): Container;
39
37
  afterName: string;
40
38
  _params: string;
41
39
  }
@@ -116,7 +116,6 @@ export default class CssSyntaxError implements postcss.CssSyntaxError, SyntaxErr
116
116
  * string.
117
117
  */
118
118
  showSourceCode(color?: boolean): string;
119
- private setMozillaProps();
120
119
  /**
121
120
  *
122
121
  * @returns Error position, message and source code of broken part.
package/d.ts/parser.d.ts CHANGED
@@ -26,7 +26,6 @@ export default class Parser {
26
26
  spacesFromStart(tokens: any): string;
27
27
  stringFrom(tokens: any, from: any): string;
28
28
  colon(tokens: any): number | boolean;
29
- unknownDecl(node: any, token: any): void;
30
29
  unclosedBracket(bracket: any): void;
31
30
  unknownWord(start: any): void;
32
31
  unexpectedClose(token: any): void;
package/docs/api.md CHANGED
@@ -1034,8 +1034,8 @@ as it was in the origin input.
1034
1034
 
1035
1035
  Every parser saves its own properties, but the default CSS parser uses:
1036
1036
 
1037
- * `before`: the space symbols before the node. It also stores any non-standard
1038
- symbols before the declaration, like `_` from an IE hack.
1037
+ * `before`: the space symbols before the node. It also stores `*` and `_`
1038
+ symbols before the declaration (IE hack).
1039
1039
  * `after`: the space symbols after the last child of the node to the end of the
1040
1040
  node.
1041
1041
  * `between`: the symbols between the property and value for declarations,
@@ -1777,7 +1777,7 @@ var comment.text //=> 'Empty file'
1777
1777
  [`source-map`]: https://github.com/mozilla/source-map
1778
1778
  [Promise]: http://www.html5rocks.com/en/tutorials/es6/promises/
1779
1779
 
1780
- [source map options]: https://github.com/postcss/postcss#source-map
1780
+ [source map options]: https://github.com/postcss/postcss/blob/master/docs/source-maps.md
1781
1781
 
1782
1782
  [`Processor#process(css, opts)`]: #processorprocesscss-opts
1783
1783
  [`Root#toResult(opts)`]: #roottoresult-opts
@@ -1793,7 +1793,7 @@ var comment.text //=> 'Empty file'
1793
1793
  [`Comment` node]: #comment-node
1794
1794
  [`AtRule` node]: #atrule-node
1795
1795
  [`from` option]: #processorprocesscss-opts
1796
- [`LazyResult`]: #lazy-result-class
1796
+ [`LazyResult`]: #lazyresult-class
1797
1797
  [`Result#map`]: #resultmap
1798
1798
  [`Result#css`]: #resultcss
1799
1799
  [`Root` node]: #root-node
@@ -53,7 +53,7 @@ or using custom at-rules and custom properties.
53
53
 
54
54
  ### 1.4. Create plugin by `postcss.plugin`
55
55
 
56
- By wrapping you function in this method,
56
+ By wrapping your function in this method,
57
57
  you are hooking into a common plugin API:
58
58
 
59
59
  ```js
@@ -69,11 +69,11 @@ module.exports = postcss.plugin('plugin-name', function (opts) {
69
69
  ### 2.1. Plugin must be tested
70
70
 
71
71
  A CI service like [Travis] is also recommended for testing code in
72
- different environments. You should test in (at least) Node.js 0.12 and io.js.
72
+ different environments. You should test in (at least) Node.js 0.12 and stable.
73
73
 
74
74
  [Travis]: https://travis-ci.org/
75
75
 
76
- ### 2.2. Use asynchronous methods when it is possible
76
+ ### 2.2. Use asynchronous methods whenever possible
77
77
 
78
78
  For example, use `fs.writeFile` instead of `fs.writeFileSync`:
79
79
 
@@ -0,0 +1,572 @@
1
+ # PostCSS Plugins
2
+
3
+ ## Control
4
+
5
+ There are two ways to make PostCSS magic more explicit.
6
+
7
+ Limit a plugin's local stylesheet context using [`postcss-plugin-context`]:
8
+
9
+ ```css
10
+ .css-example.is-test-for-css4-browsers {
11
+ color: gray(255, 50%);
12
+ }
13
+ @context cssnext {
14
+ .css-example.is-fallback-for-all-browsers {
15
+ color: gray(255, 50%);
16
+ }
17
+ }
18
+ ```
19
+
20
+ Or enable plugins directly in CSS using [`postcss-use`]:
21
+
22
+ ```css
23
+ @use autoprefixer(browsers: ['last 2 versions']);
24
+
25
+ :fullscreen a {
26
+ display: flex
27
+ }
28
+ ```
29
+
30
+ [`postcss-plugin-context`]: https://github.com/postcss/postcss-plugin-context
31
+ [`postcss-use`]: https://github.com/postcss/postcss-use
32
+
33
+ ## Packs
34
+
35
+ * [`atcss`] contains plugins that transform your CSS according
36
+ to special annotation comments.
37
+ * [`cssnano`] contains plugins that optimize CSS size for use in production.
38
+ * [`cssnext`] contains plugins that allow you to use future CSS features today.
39
+ * [`oldie`] contains plugins that transform your CSS
40
+ for older Internet Explorer compatibility.
41
+ * [`precss`] contains plugins that allow you to use Sass-like CSS.
42
+ * [`rucksack`] contains plugins to speed up CSS development
43
+ with new features and shortcuts.
44
+ * [`level4`] contains only plugins that let you write CSS4 without
45
+ the IE9 fallbacks.
46
+ * [`short`] adds and extends numerous shorthand properties.
47
+ * [`stylelint`] contains plugins that lint your stylesheets.
48
+
49
+ [`stylelint`]: https://github.com/stylelint/stylelint
50
+ [`rucksack`]: http://simplaio.github.io/rucksack
51
+ [`cssnano`]: http://cssnano.co/
52
+ [`cssnext`]: http://cssnext.io/
53
+ [`oldie`]: https://github.com/jonathantneal/oldie
54
+ [`precss`]: https://github.com/jonathantneal/precss
55
+ [`atcss`]: https://github.com/morishitter/atcss
56
+ [`level4`]: https://github.com/stephenway/level4
57
+
58
+ ## Future CSS Syntax
59
+
60
+ * [`postcss-color-function`] supports functions to transform colors.
61
+ * [`postcss-color-gray`] supports the `gray()` function.
62
+ * [`postcss-color-hex-alpha`] supports `#rrggbbaa` and `#rgba` notation.
63
+ * [`postcss-color-hwb`] transforms `hwb()` to widely compatible `rgb()`.
64
+ * [`postcss-color-rebeccapurple`] supports the `rebeccapurple` color.
65
+ * [`postcss-conic-gradient`] supports the `conic-gradient` background.
66
+ * [`postcss-custom-media`] supports custom aliases for media queries.
67
+ * [`postcss-custom-properties`] supports variables, using syntax from
68
+ the W3C Custom Properties.
69
+ * [`postcss-custom-selectors`] adds custom aliases for selectors.
70
+ * [`postcss-extend`] supports spec-approximate `@extend` for rules
71
+ and placeholders, recursively.
72
+ * [`postcss-font-variant`] transpiles human-readable `font-variant`
73
+ to more widely supported CSS.
74
+ * [`postcss-host`] makes the Shadow DOM’s `:host` selector work properly
75
+ with pseudo-classes.
76
+ * [`postcss-initial`] supports `initial` keyword and `all: initial`
77
+ to clean inherit styles.
78
+ * [`postcss-logical-properties`] transforms `start` and `end` properties to `left` and `right` depending on the writing direction of the document.
79
+ * [`postcss-media-minmax`] adds `<=` and `=>` statements to media queries.
80
+ * [`postcss-pseudo-class-any-link`] adds `:any-link` pseudo-class.
81
+ * [`postcss-selector-not`] transforms CSS4 `:not()` to CSS3 `:not()`.
82
+ * [`postcss-selector-matches`] transforms CSS4 `:matches()`
83
+ to more compatible CSS.
84
+ * [`postcss-apply`] supports custom properties sets references
85
+ * [`mq4-hover-shim`] supports the `@media (hover)` feature.
86
+
87
+ See also [`cssnext`] plugins pack to add future CSS syntax by one line of code.
88
+
89
+ ## Fallbacks
90
+
91
+ * [`postcss-color-rgba-fallback`] transforms `rgba()` to hexadecimal.
92
+ * [`postcss-epub`] adds the `-epub-` prefix to relevant properties.
93
+ * [`postcss-fallback`] adds `fallback` function to avoid duplicate declarations.
94
+ * [`postcss-filter-gradient`] adds gradient filter for the old IE.
95
+ * [`postcss-flexibility`] adds `-js-` prefix for [`Flexibility polyfill`].
96
+ * [`postcss-hash-classname`] append hash string to your css class name.
97
+ * [`postcss-mqwidth-to-class`] converts min/max-width media queries to classes.
98
+ * [`postcss-opacity`] adds opacity filter for IE8.
99
+ * [`postcss-pseudoelements`] Convert `::` selectors into `:` selectors
100
+ for IE 8 compatibility.
101
+ * [`postcss-round-subpixels`] plugin that rounds sub-pixel values to the nearest
102
+ full pixel.
103
+ * [`postcss-unmq`] removes media queries while preserving desktop rules for IE≤8.
104
+ * [`postcss-vmin`] generates `vm` fallback for `vmin` unit in IE9.
105
+ * [`postcss-will-change`] inserts 3D hack before `will-change` property.
106
+ * [`autoprefixer`] adds vendor prefixes for you, using data from Can I Use.
107
+ * [`cssgrace`] provides various helpers and transpiles CSS 3 for IE
108
+ and other old browsers.
109
+ * [`pixrem`] generates pixel fallbacks for `rem` units.
110
+
111
+ See also [`oldie`] plugins pack.
112
+
113
+ [`Flexibility polyfill`]: https://github.com/10up/flexibility
114
+
115
+ ## Language Extensions
116
+
117
+ * [`postcss-atroot`] place rules directly at the root node.
118
+ * [`postcss-bem`] adds at-rules for BEM and SUIT style classes.
119
+ * [`postcss-conditionals`] adds `@if` statements.
120
+ * [`postcss-css-variables`] supports variables for selectors, and at-rules
121
+ using W3C similar syntax.
122
+ * [`postcss-current-selector`] to get current selector in declaration.
123
+ * [`postcss-define-property`] to define properties shortcut.
124
+ * [`postcss-each`] adds `@each` statement.
125
+ * [`postcss-for`] adds `@for` loops.
126
+ * [`postcss-at-rules-variables`] adds support for custom properties in
127
+ `@for`, `@each`, `@if`, etc.
128
+ * [`postcss-functions`] enables exposure of JavaScript functions.
129
+ * [`postcss-local-constants`] adds support for localized constants.
130
+ * [`postcss-map`] enables configuration maps.
131
+ * [`postcss-match`] adds `@match` for [Rust-style pattern matching].
132
+ * [`postcss-mixins`] enables mixins more powerful than Sass’,
133
+ defined within stylesheets or in JS.
134
+ * [`postcss-media-variables`] adds support for `var()` and `calc()`
135
+ in `@media` rules
136
+ * [`postcss-modular-scale`] adds a modular scale `ms()` function.
137
+ * [`postcss-namespace`] prefix a namespace to a selector.
138
+ * [`postcss-nested`] unwraps nested rules.
139
+ * [`postcss-nested-props`] unwraps nested properties.
140
+ * [`postcss-nested-vars`] supports nested Sass-style variables.
141
+ * [`postcss-pseudo-class-any-button`] adds `:any-button` pseudo-class
142
+ for targeting all button elements.
143
+ * [`postcss-pseudo-class-enter`] transforms `:enter` into `:hover` and `:focus`.
144
+ * [`postcss-quantity-queries`] enables quantity queries.
145
+ * [`postcss-reverse-media`] reverse/Invert media query parameters.
146
+ * [`postcss-sassy-mixins`] enables mixins with Sass keywords.
147
+ * [`postcss-simple-extend`] lightweight extending of silent classes,
148
+ like Sass’ `@extend`.
149
+ * [`postcss-simple-vars`] supports for Sass-style variables.
150
+ * [`postcss-strip-units`] strips units off of property values.
151
+ * [`postcss-vertical-rhythm`] adds a vertical rhythm unit
152
+ based on `font-size` and `line-height`.
153
+ * [`csstyle`] adds components workflow to your styles.
154
+
155
+ See also [`precss`] plugins pack to add them by one line of code.
156
+
157
+ [Rust-style pattern matching]: https://doc.rust-lang.org/book/match.html
158
+
159
+ ## Colors
160
+
161
+ * [`postcss-ase-colors`] replaces color names with values read
162
+ from an ASE palette file.
163
+ * [`postcss-brand-colors`] inserts company brand colors
164
+ in the `brand-colors` module.
165
+ * [`postcss-color-alpha`] transforms `#hex.a`, `black(alpha)` and `white(alpha)`
166
+ to `rgba()`.
167
+ * [`postcss-color-hcl`] transforms `hcl(H, C, L)` and `hcl(H, C, L, alpha)`
168
+ to `#rgb` and `rgba()`.
169
+ * [`postcss-color-hexa`] transforms `hexa(hex, alpha)` into `rgba` format.
170
+ * [`postcss-color-mix`] mixes two colors together.
171
+ * [`postcss-color-palette`] transforms CSS 2 color keywords to a custom palette.
172
+ * [`postcss-color-pantone`] transforms pantone color to RGB.
173
+ * [`postcss-color-scale`] adds a color scale `cs()` function.
174
+ * [`postcss-color-short`] adds shorthand color declarations.
175
+ * [`postcss-color-yiq`] sets foreground colors using the YIQ color space.
176
+ * [`postcss-colorblind`] transforms colors using filters to simulate
177
+ colorblindness.
178
+ * [`postcss-contrast`] checks background-color and gives either white or black.
179
+ * [`postcss-hexrgba`] adds shorthand hex `rgba(hex, alpha)` method.
180
+ * [`postcss-rgb-plz`] converts 3 or 6 digit hex values to `rgb`.
181
+ * [`postcss-rgba-hex`] converts `rgba` values to `hex` analogues.
182
+ * [`postcss-shades-of-gray`] helps keeping grayscale colors consistent
183
+ to a gray palette.
184
+ * [`colorguard`] helps maintain a consistent color palette.
185
+
186
+ ## Images and Fonts
187
+
188
+ * [`postcss-assets`] allows you to simplify URLs, insert image dimensions,
189
+ and inline files.
190
+ * [`postcss-assets-rebase`] rebases assets from `url()`.
191
+ * [`postcss-at2x`] handles retina background images via use of `at-2x` keyword.
192
+ * [`postcss-cachebuster`] adds version parameter to images and fonts
193
+ * [`postcss-copy-assets`] copies assets referenced by relative `url()`s into a
194
+ build directory.
195
+ * [`postcss-data-packer`] moves embedded Base64 data to a separate file.
196
+ * [`postcss-easysprites`] combine images to sprites, based on their image.png`#hash` and aspect ratio (`@2x`).
197
+ * [`postcss-image-set`] adds `background-image` with first image
198
+ for `image-set()`.
199
+ * [`postcss-image-inliner`] inlines local and remote images.
200
+ * [`postcss-instagram`] adds Instagram filters to `filter`.
201
+ * [`postcss-font-pack`] simplifies font declarations and validates they match
202
+ configured font packs.
203
+ * [`postcss-fontpath`] adds font links for different browsers.
204
+ * [`postcss-responsive-images`] adds stylesheets for making
205
+ your images responsive.
206
+ * [`postcss-sprites`] generates CSS sprites from stylesheets.
207
+ * [`postcss-svg`] insert inline SVG to CSS and allows to manage it colors.
208
+ * [`postcss-svg-fallback`] converts SVG in your CSS to PNG files for IE 8.
209
+ * [`postcss-svgo`] processes inline SVG through [SVGO].
210
+ * [`postcss-url`] rebases or inlines `url()`s.
211
+ * [`postcss-urlrev`] adds MD5 hash strings to `url()`s.
212
+ * [`postcss-write-svg`] write inline SVGs in CSS.
213
+ * [`postcss-inline-svg`] inline SVG images and customize their styles.
214
+ * [`webpcss`] adds URLs for WebP images for browsers that support WebP.
215
+
216
+ ## Grids
217
+
218
+ * [`postcss-grid`] adds a semantic grid system.
219
+ * [`postcss-simple-grid`] create grid with one line.
220
+ * [`postcss-neat`] is a semantic and fluid grid framework.
221
+ * [`lost`] feature-rich `calc()` grid system by Jeet author.
222
+
223
+ ## Optimizations
224
+
225
+ * [`postcss-calc`] reduces `calc()` to values
226
+ (when expressions involve the same units).
227
+ * [`postcss-filter-mq`] Filter all matching or non-matching media queries.
228
+ * [`postcss-import`] inlines the stylesheets referred to by `@import` rules.
229
+ * [`postcss-partial-import`] inlines standard imports and Sass-like partials.
230
+ * [`postcss-reference`] emulates Less’s [`@import (reference)`].
231
+ * [`postcss-remove-root`] removes all instances of `:root` from a stylesheet.
232
+ * [`postcss-single-charset`] ensures that there is one and only one
233
+ `@charset` rule at the top of file.
234
+ * [`postcss-zindex`] rebases positive `z-index` values.
235
+ * [`css-byebye`] removes the CSS rules that you don’t want.
236
+ * [`css-mqpacker`] joins matching CSS media queries into a single statement.
237
+ * [`stylehacks`] removes CSS hacks based on browser support.
238
+
239
+ See also plugins in modular minifier [`cssnano`].
240
+
241
+ [@import (reference)]: http://lesscss.org/features/#import-options-reference
242
+ [SVGO]: https://github.com/svg/svgo
243
+
244
+ ## Shortcuts
245
+
246
+ * [`postcss-alias`] creates shorter aliases for properties.
247
+ * [`postcss-alias-atrules`] creates shorter aliases for at-rules.
248
+ * [`postcss-all-link-colors`] insert colors for link-related pseudo-classes.
249
+ * [`postcss-border`] adds shorthand for width and color of all borders
250
+ in `border` property.
251
+ * [`postcss-center`] centers elements.
252
+ * [`postcss-circle`] inserts a circle with color.
253
+ * [`postcss-clearfix`] adds `fix` and `fix-legacy` properties to the `clear`
254
+ declaration.
255
+ * [`postcss-crip`] shorthand properties for Crips that are too lazy to write.
256
+ * [`postcss-default-unit`] adds default unit to numeric CSS properties.
257
+ * [`postcss-easings`] replaces easing names from easings.net
258
+ with `cubic-bezier()` functions.
259
+ * [`postcss-filter`] adds shorthand for black and white filter.
260
+ * [`postcss-focus`] adds `:focus` selector to every `:hover`.
261
+ * [`postcss-generate-preset`] allows quick generation of rules.
262
+ Useful for creating repetitive utilities.
263
+ * [`postcss-input-style`] adds new pseudo-elements for cross-browser styling
264
+ of inputs.
265
+ * [`postcss-position`] adds shorthand declarations for position attributes.
266
+ * [`postcss-property-lookup`] allows referencing property values without
267
+ a variable.
268
+ * [`postcss-responsive-type`] changes `font-size` depends on screen size.
269
+ * [`postcss-short-font-size`] extends `font-size` to define line-height
270
+ s a second value.
271
+ * [`postcss-short-position`] extends `position` to define edges
272
+ as additional values.
273
+ * [`postcss-short-spacing`] extends `margin` and `padding` to allow
274
+ or omitted edges.
275
+ * [`postcss-short-text`] adds a `text` shortcut property for several
276
+ text-related properties.
277
+ * [`postcss-size`] adds a `size` shortcut that sets width and height
278
+ with one declaration.
279
+ * [`postcss-transform-shortcut`] allows shorthand transform properties in CSS.
280
+ * [`postcss-triangle`] creates a triangle.
281
+ * [`postcss-verthorz`] adds vertical and horizontal spacing declarations.
282
+ * [`font-magician`] generates all the `@font-face` rules needed in CSS.
283
+ * [`postcss-animation`] PostCSS plugin that adds `@keyframes` from animate.css.
284
+
285
+ ## Others
286
+
287
+ * [`postcss-autoreset`] automatically adds reset styles.
288
+ * [`postcss-class-prefix`] adds a prefix/namespace to class selectors.
289
+ * [`postcss-currency`] replaces name of currency with symbols.
290
+ * [`postcss-fakeid`] transforms `#foo` IDs to attribute selectors `[id="foo"]`.
291
+ * [`postcss-flexboxfixer`] unprefixes `-webkit-` only flexbox in legacy CSS.
292
+ * [`postcss-flexbugs-fixes`] fixes some of known [flexbox bugs].
293
+ * [`postcss-gradientfixer`] unprefixes `-webkit-` only gradients in legacy CSS.
294
+ * [`postcss-increase-specificity`] increases the specificity of your selectors.
295
+ * [`postcss-modules`] allows to use CSS Modules everywhere.
296
+ * [`postcss-mq-keyframes`] moves any animation keyframes in media queries
297
+ to the end of the file.
298
+ * [`postcss-pseudo-elements-content`] adds `content: ''` to `:before-c`
299
+ and `:after-c`.
300
+ * [`postcss-pseudo-content-insert`] adds `content: ''` to `:before` and `:after`
301
+ if it is missing.
302
+ * [`postcss-pxtorem`] converts pixel units to `rem`.
303
+ * [`postcss-safe-important`] adds `!important` to style declarations safely.
304
+ * [`postcss-select`] select rules based off a selector list.
305
+ * [`postcss-selector-prefixer`] adds a prefix to css selectors.
306
+ * [`postcss-shorthand-expand`] expands shorthand properties.
307
+ * [`postcss-sorting`] sort rules content with specified order.
308
+ * [`postcss-raw`] protects nodes inside `@raw` at-rules from being touched by other plugins.
309
+ * [`postcss-remove-prefixes`] removes vendor prefixes.
310
+ * [`postcss-style-guide`] generates a style guide automatically.
311
+ * [`postcss-scopify`] adds a user input scope to each selector.
312
+ * [`cssfmt`] formats CSS source code automatically inspired by Gofmt.
313
+ * [`css-property-sorter`] sorts CSS properties fast and automatically in a certain order.
314
+ * [`perfectionist`] formats poorly written CSS and renders a “pretty” result.
315
+ * [`rtlcss`] mirrors styles for right-to-left locales.
316
+
317
+ [flexbox bugs]: https://github.com/philipwalton/flexbugs
318
+
319
+ ## Analysis
320
+
321
+ * [`postcss-bem-linter`] lints CSS for conformance to SUIT CSS methodology.
322
+ * [`postcss-cssstats`] returns an object with CSS statistics.
323
+ * [`postcss-regexp-detect`] search for regexp in CSS declarations.
324
+ * [`css2modernizr`] creates a Modernizr config file
325
+ that requires only the tests that your CSS uses.
326
+ * [`doiuse`] lints CSS for browser support, using data from Can I Use.
327
+ * [`immutable-css`] lints CSS for class mutations.
328
+ * [`list-selectors`] lists and categorizes the selectors used in your CSS,
329
+ for code review.
330
+
331
+ ## Reporters
332
+
333
+ * [`postcss-browser-reporter`] displays warning messages from other plugins
334
+ right in your browser.
335
+ * [`postcss-reporter`] logs warnings and other messages from other plugins
336
+ in the console.
337
+
338
+ ## Fun
339
+
340
+ * [`postcss-australian-stylesheets`] Australian Style Sheets.
341
+ * [`postcss-andalusian-stylesheets`] Andalusian Style Sheets.
342
+ * [`postcss-canadian-stylesheets`] Canadian Style Sheets.
343
+ * [`postcss-chinese-stylesheets`] Chinese Style Sheets.
344
+ * [`postcss-czech-stylesheets`] Czech Style Sheets.
345
+ * [`postcss-german-stylesheets`] German Style Sheets.
346
+ * [`postcss-russian-stylesheets`] Russian Style Sheets.
347
+ * [`postcss-swedish-stylesheets`] Swedish Style Sheets.
348
+ * [`postcss-tatar-stylesheets`] Tatar Style Sheets
349
+ * [`postcss-trolling`] Trolling Style Sheets.
350
+ * [`postcss-lolcat-stylesheets`] Lolspeak Style Sheets.
351
+ * [`postcss-imperial`] adds CSS support for Imperial and US customary units
352
+ of length.
353
+ * [`postcss-russian-units`] adds CSS support for russian units of length.
354
+ * [`postcss-pointer`] Replaces `pointer: cursor` with `cursor: pointer`.
355
+ * [`postcss-spiffing`] lets you use British English in your CSS.
356
+ * [`postcss-spanish-stylesheets`] Spanish Style Sheets.
357
+
358
+
359
+ [`postcss-pseudo-class-any-button`]: https://github.com/andrepolischuk/postcss-pseudo-class-any-button
360
+ [`postcss-pseudo-elements-content`]: https://github.com/omgovich/postcss-pseudo-elements-content
361
+ [`postcss-australian-stylesheets`]: https://github.com/dp-lewis/postcss-australian-stylesheets
362
+ [`postcss-andalusian-stylesheets`]: https://github.com/bameda/postcss-andalusian-stylesheets
363
+ [`postcss-pseudo-class-any-link`]: https://github.com/jonathantneal/postcss-pseudo-class-any-link
364
+ [`postcss-pseudo-content-insert`]: https://github.com/liquidlight/postcss-pseudo-content-insert
365
+ [`postcss-canadian-stylesheets`]: https://github.com/chancancode/postcss-canadian-stylesheets
366
+ [`postcss-chinese-stylesheets`]: https://github.com/zhouwenbin/postcss-chinese-stylesheets
367
+ [`postcss-czech-stylesheets`]: https://github.com/HoBi/postcss-czech-stylesheets
368
+ [`postcss-increase-specificity`]: https://github.com/MadLittleMods/postcss-increase-specificity
369
+ [`postcss-swedish-stylesheets`]: https://github.com/johnie/postcss-swedish-stylesheets
370
+ [`postcss-russian-stylesheets`]: https://github.com/Semigradsky/postcss-russian-stylesheets
371
+ [`postcss-color-rebeccapurple`]: https://github.com/postcss/postcss-color-rebeccapurple
372
+ [`postcss-color-rgba-fallback`]: https://github.com/postcss/postcss-color-rgba-fallback
373
+ [`postcss-spanish-stylesheets`]: https://github.com/ismamz/postcss-spanish-stylesheets
374
+ [`postcss-lolcat-stylesheets`]: https://github.com/sandralundgren/postcss-lolcat-stylesheets
375
+ [`postcss-german-stylesheets`]: https://github.com/timche/postcss-german-stylesheets
376
+ [`postcss-discard-duplicates`]: https://github.com/ben-eb/postcss-discard-duplicates
377
+ [`postcss-minify-font-weight`]: https://github.com/ben-eb/postcss-minify-font-weight
378
+ [`postcss-pseudo-class-enter`]: https://github.com/jonathantneal/postcss-pseudo-class-enter
379
+ [`postcss-transform-shortcut`]: https://github.com/jonathantneal/postcss-transform-shortcut
380
+ [`postcss-at-rules-variables`]: https://github.com/GitScrum/postcss-at-rules-variables
381
+ [`postcss-logical-properties`]: https://github.com/ahmadalfy/postcss-logical-properties
382
+ [`postcss-responsive-images`]: https://github.com/azat-io/postcss-responsive-images
383
+ [`postcss-tatar-stylesheets`]: https://github.com/azat-io/postcss-tatar-stylesheets
384
+ [`postcss-custom-properties`]: https://github.com/postcss/postcss-custom-properties
385
+ [`postcss-discard-font-face`]: https://github.com/ben-eb/postcss-discard-font-face
386
+ [`postcss-selector-prefixer`]: https://github.com/ronnyamarante/postcss-selector-prefixer
387
+ [`postcss-custom-selectors`]: https://github.com/postcss/postcss-custom-selectors
388
+ [`postcss-discard-comments`]: https://github.com/ben-eb/postcss-discard-comments
389
+ [`postcss-minify-selectors`]: https://github.com/ben-eb/postcss-minify-selectors
390
+ [`postcss-mqwidth-to-class`]: https://github.com/notacouch/postcss-mqwidth-to-class
391
+ [`postcss-quantity-queries`]: https://github.com/pascalduez/postcss-quantity-queries
392
+ [`postcss-browser-reporter`]: https://github.com/postcss/postcss-browser-reporter
393
+ [`postcss-selector-matches`]: https://github.com/postcss/postcss-selector-matches
394
+ [`postcss-shorthand-expand`]: https://github.com/johnotander/postcss-shorthand-expand
395
+ [`postcss-current-selector`]: https://github.com/komlev/postcss-current-selector
396
+ [`postcss-all-link-colors`]: https://github.com/jedmao/postcss-all-link-colors
397
+ [`postcss-color-hex-alpha`]: https://github.com/postcss/postcss-color-hex-alpha
398
+ [`postcss-define-property`]: https://github.com/daleeidd/postcss-define-property
399
+ [`postcss-filter-gradient`]: https://github.com/yuezk/postcss-filter-gradient
400
+ [`postcss-generate-preset`]: https://github.com/simonsmith/postcss-generate-preset
401
+ [`postcss-media-variables`]: https://github.com/WolfgangKluge/postcss-media-variables
402
+ [`postcss-property-lookup`]: https://github.com/simonsmith/postcss-property-lookup
403
+ [`postcss-vertical-rhythm`]: https://github.com/markgoodyear/postcss-vertical-rhythm
404
+ [`postcss-local-constants`]: https://github.com/macropodhq/postcss-constants
405
+ [`postcss-remove-prefixes`]: https://github.com/johnotander/postcss-remove-prefixes
406
+ [`postcss-responsive-type`]: https://github.com/seaneking/postcss-responsive-type
407
+ [`postcss-round-subpixels`]: https://github.com/himynameisdave/postcss-round-subpixels
408
+ [`postcss-short-font-size`]: https://github.com/jonathantneal/postcss-short-font-size
409
+ [`postcss-color-function`]: https://github.com/postcss/postcss-color-function
410
+ [`postcss-conic-gradient`]: https://github.com/jonathantneal/postcss-conic-gradient
411
+ [`postcss-convert-values`]: https://github.com/ben-eb/postcss-convert-values
412
+ [`postcss-partial-import`]: https://github.com/jonathantneal/postcss-partial-import
413
+ [`postcss-pseudoelements`]: https://github.com/axa-ch/postcss-pseudoelements
414
+ [`postcss-safe-important`]: https://github.com/Crimx/postcss-safe-important
415
+ [`postcss-short-position`]: https://github.com/jonathantneal/postcss-short-position
416
+ [`postcss-single-charset`]: https://github.com/hail2u/postcss-single-charset
417
+ [`postcss-flexbugs-fixes`]: https://github.com/luisrudge/postcss-flexbugs-fixes
418
+ [`postcss-shades-of-gray`]: https://github.com/laureanoarcanio/postcss-shades-of-gray
419
+ [`postcss-hash-classname`]: https://github.com/ctxhou/postcss-hash-classname
420
+ [`postcss-alias-atrules`]: https://github.com/maximkoretskiy/postcss-alias-atrules
421
+ [`postcss-color-palette`]: https://github.com/zaim/postcss-color-palette
422
+ [`postcss-assets-rebase`]: https://github.com/devex-web-frontend/postcss-assets-rebase
423
+ [`postcss-color-pantone`]: https://github.com/longdog/postcss-color-pantone
424
+ [`postcss-css-variables`]: https://github.com/MadLittleMods/postcss-css-variables
425
+ [`postcss-discard-empty`]: https://github.com/ben-eb/postcss-discard-empty
426
+ [`postcss-gradientfixer`]: https://github.com/hallvors/postcss-gradientfixer
427
+ [`postcss-modular-scale`]: https://github.com/kristoferjoseph/postcss-modular-scale
428
+ [`postcss-normalize-url`]: https://github.com/ben-eb/postcss-normalize-url
429
+ [`postcss-reduce-idents`]: https://github.com/ben-eb/postcss-reduce-idents
430
+ [`postcss-short-spacing`]: https://github.com/jonathantneal/postcss-short-spacing
431
+ [`postcss-simple-extend`]: https://github.com/davidtheclark/postcss-simple-extend
432
+ [`postcss-russian-units`]: https://github.com/Semigradsky/postcss-russian-units
433
+ [`postcss-image-inliner`]: https://github.com/bezoerb/postcss-image-inliner
434
+ [`postcss-reverse-media`]: https://github.com/MadLittleMods/postcss-reverse-media
435
+ [`postcss-regexp-detect`]: https://github.com/devex-web-frontend/postcss-regexp-detect
436
+ [`postcss-mq-keyframes`]: https://github.com/TCotton/postcss-mq-keyframes
437
+ [`postcss-brand-colors`]: https://github.com/postcss/postcss-brand-colors
438
+ [`postcss-class-prefix`]: https://github.com/thompsongl/postcss-class-prefix
439
+ [`postcss-conditionals`]: https://github.com/andyjansson/postcss-conditionals
440
+ [`postcss-sassy-mixins`]: https://github.com/andyjansson/postcss-sassy-mixins
441
+ [`postcss-custom-media`]: https://github.com/postcss/postcss-custom-media
442
+ [`postcss-default-unit`]: https://github.com/antyakushev/postcss-default-unit
443
+ [`postcss-flexibility`]: https://github.com/7rulnik/postcss-flexibility
444
+ [`postcss-flexboxfixer`]: https://github.com/hallvors/postcss-flexboxfixer
445
+ [`postcss-font-variant`]: https://github.com/postcss/postcss-font-variant
446
+ [`postcss-media-minmax`]: https://github.com/postcss/postcss-media-minmax
447
+ [`postcss-merge-idents`]: https://github.com/ben-eb/postcss-merge-idents
448
+ [`postcss-selector-not`]: https://github.com/postcss/postcss-selector-not
449
+ [`postcss-svg-fallback`]: https://github.com/justim/postcss-svg-fallback
450
+ [`postcss-nested-props`]: https://github.com/jedmao/postcss-nested-props
451
+ [`postcss-cachebuster`]: https://github.com/glebmachine/postcss-cachebuster
452
+ [`postcss-easysprites`]: https://github.com/glebmachine/postcss-easysprites
453
+ [`postcss-nested-vars`]: https://github.com/jedmao/postcss-nested-vars
454
+ [`postcss-color-alpha`]: https://github.com/avanes/postcss-color-alpha
455
+ [`postcss-color-scale`]: https://github.com/kristoferjoseph/postcss-color-scale
456
+ [`postcss-color-short`]: https://github.com/andrepolischuk/postcss-color-short
457
+ [`postcss-copy-assets`]: https://github.com/shutterstock/postcss-copy-assets
458
+ [`postcss-data-packer`]: https://github.com/Ser-Gen/postcss-data-packer
459
+ [`postcss-font-family`]: https://github.com/ben-eb/postcss-font-family
460
+ [`postcss-simple-grid`]: https://github.com/admdh/postcss-simple-grid
461
+ [`postcss-merge-rules`]: https://github.com/ben-eb/postcss-merge-rules
462
+ [`postcss-simple-vars`]: https://github.com/postcss/postcss-simple-vars
463
+ [`postcss-strip-units`]: https://github.com/whitneyit/postcss-strip-units
464
+ [`postcss-style-guide`]: https://github.com/morishitter/postcss-style-guide
465
+ [`postcss-will-change`]: https://github.com/postcss/postcss-will-change
466
+ [`postcss-input-style`]: https://github.com/seaneking/postcss-input-style
467
+ [`css-property-sorter`]: https://github.com/Siilwyn/css-property-sorter
468
+ [`postcss-remove-root`]: https://github.com/cbracco/postcss-remove-root
469
+ [`postcss-ase-colors`]: https://github.com/dfernandez79/postcss-ase-colors
470
+ [`postcss-bem-linter`]: https://github.com/postcss/postcss-bem-linter
471
+ [`postcss-color-gray`]: https://github.com/postcss/postcss-color-gray
472
+ [`postcss-colorblind`]: https://github.com/btholt/postcss-colorblind
473
+ [`postcss-color-hexa`]: https://github.com/nicksheffield/postcss-color-hexa
474
+ [`postcss-short-text`]: https://github.com/jonathantneal/postcss-short-text
475
+ [`postcss-inline-svg`]: https://github.com/TrySound/postcss-inline-svg
476
+ [`postcss-autoreset`]: https://github.com/maximkoretskiy/postcss-autoreset
477
+ [`postcss-font-pack`]: https://github.com/jedmao/postcss-font-pack
478
+ [`postcss-reference`]: https://github.com/dehuszar/postcss-reference
479
+ [`postcss-functions`]: https://github.com/andyjansson/postcss-functions
480
+ [`postcss-color-hcl`]: https://github.com/devgru/postcss-color-hcl
481
+ [`postcss-color-hwb`]: https://github.com/postcss/postcss-color-hwb
482
+ [`postcss-color-mix`]: https://github.com/iamstarkov/postcss-color-mix
483
+ [`postcss-color-yiq`]: https://github.com/ben-eb/postcss-color-yiq
484
+ [`postcss-filter-mq`]: https://github.com/simeydotme/postcss-filter-mq
485
+ [`postcss-image-set`]: https://github.com/alex499/postcss-image-set
486
+ [`postcss-write-svg`]: https://github.com/jonathantneal/postcss-write-svg
487
+ [`postcss-animation`]: https://github.com/zhouwenbin/postcss-animation
488
+ [`postcss-instagram`]: https://github.com/azat-io/postcss-instagram
489
+ [`postcss-namespace`]: https://github.com/totora0155/postcss-namespace
490
+ [`postcss-clearfix`]: https://github.com/seaneking/postcss-clearfix
491
+ [`postcss-colormin`]: https://github.com/ben-eb/colormin
492
+ [`postcss-cssstats`]: https://github.com/cssstats/postcss-cssstats
493
+ [`postcss-currency`]: https://github.com/talgautb/postcss-currency
494
+ [`postcss-fallback`]: https://github.com/MadLittleMods/postcss-fallback
495
+ [`postcss-imperial`]: https://github.com/cbas/postcss-imperial
496
+ [`postcss-position`]: https://github.com/seaneking/postcss-position
497
+ [`postcss-rgba-hex`]: https://github.com/XOP/postcss-rgba-hex
498
+ [`postcss-contrast`]: https://github.com/stephenway/postcss-contrast
499
+ [`postcss-spiffing`]: https://github.com/HashanP/postcss-spiffing
500
+ [`postcss-triangle`]: https://github.com/jedmao/postcss-triangle
501
+ [`postcss-verthorz`]: https://github.com/davidhemphill/postcss-verthorz
502
+ [`pleeease-filters`]: https://github.com/iamvdo/pleeease-filters
503
+ [`postcss-fontpath`]: https://github.com/seaneking/postcss-fontpath
504
+ [`postcss-reporter`]: https://github.com/postcss/postcss-reporter
505
+ [`postcss-trolling`]: https://github.com/juanfran/postcss-trolling
506
+ [`postcss-modules`]: https://github.com/outpunk/postcss-modules
507
+ [`postcss-easings`]: https://github.com/postcss/postcss-easings
508
+ [`postcss-hexrgba`]: https://github.com/seaneking/postcss-hexrgba
509
+ [`postcss-initial`]: https://github.com/maximkoretskiy/postcss-initial
510
+ [`postcss-rgb-plz`]: https://github.com/himynameisdave/postcss-rgb-plz
511
+ [`postcss-opacity`]: https://github.com/iamvdo/postcss-opacity
512
+ [`postcss-pointer`]: https://github.com/markgoodyear/postcss-pointer
513
+ [`postcss-pxtorem`]: https://github.com/cuth/postcss-pxtorem
514
+ [`postcss-scopify`]: https://github.com/pazams/postcss-scopify
515
+ [`postcss-sprites`]: https://github.com/2createStudio/postcss-sprites
516
+ [`postcss-sorting`]: https://github.com/hudochenkov/postcss-sorting
517
+ [`postcss-assets`]: https://github.com/borodean/postcss-assets
518
+ [`postcss-border`]: https://github.com/andrepolischuk/postcss-border
519
+ [`postcss-center`]: https://github.com/jedmao/postcss-center
520
+ [`postcss-circle`]: https://github.com/jedmao/postcss-circle
521
+ [`postcss-urlrev`]: https://github.com/yuezk/postcss-urlrev
522
+ [`postcss-extend`]: https://github.com/travco/postcss-extend
523
+ [`postcss-fakeid`]: https://github.com/pathsofdesign/postcss-fakeid
524
+ [`postcss-filter`]: https://github.com/alanev/postcss-filter
525
+ [`postcss-import`]: https://github.com/postcss/postcss-import
526
+ [`postcss-mixins`]: https://github.com/postcss/postcss-mixins
527
+ [`postcss-nested`]: https://github.com/postcss/postcss-nested
528
+ [`postcss-select`]: https://github.com/johnotander/postcss-select
529
+ [`postcss-zindex`]: https://github.com/ben-eb/postcss-zindex
530
+ [`list-selectors`]: https://github.com/davidtheclark/list-selectors
531
+ [`mq4-hover-shim`]: https://github.com/twbs/mq4-hover-shim
532
+ [`postcss-atroot`]: https://github.com/OEvgeny/postcss-atroot
533
+ [`postcss-focus`]: https://github.com/postcss/postcss-focus
534
+ [`postcss-apply`]: https://github.com/pascalduez/postcss-apply
535
+ [`css2modernizr`]: https://github.com/vovanbo/css2modernizr
536
+ [`font-magician`]: https://github.com/jonathantneal/postcss-font-magician
537
+ [`postcss-match`]: https://github.com/rtsao/postcss-match
538
+ [`postcss-alias`]: https://github.com/seaneking/postcss-alias
539
+ [`perfectionist`]: https://github.com/ben-eb/perfectionist
540
+ [`immutable-css`]: https://github.com/johnotander/immutable-css
541
+ [`postcss-at2x`]: https://github.com/simonsmith/postcss-at2x
542
+ [`postcss-calc`]: https://github.com/postcss/postcss-calc
543
+ [`postcss-crip`]: https://github.com/johnie/postcss-crip
544
+ [`postcss-each`]: https://github.com/outpunk/postcss-each
545
+ [`postcss-epub`]: https://github.com/Rycochet/postcss-epub
546
+ [`postcss-grid`]: https://github.com/andyjansson/postcss-grid
547
+ [`postcss-host`]: https://github.com/vitkarpov/postcss-host
548
+ [`postcss-neat`]: https://github.com/jo-asakura/postcss-neat
549
+ [`postcss-size`]: https://github.com/postcss/postcss-size
550
+ [`postcss-svgo`]: https://github.com/ben-eb/postcss-svgo
551
+ [`postcss-unmq`]: https://github.com/jonathantneal/postcss-unmq
552
+ [`postcss-vmin`]: https://github.com/iamvdo/postcss-vmin
553
+ [`autoprefixer`]: https://github.com/postcss/autoprefixer
554
+ [`css-mqpacker`]: https://github.com/hail2u/node-css-mqpacker
555
+ [`postcss-bem`]: https://github.com/ileri/postcss-bem
556
+ [`postcss-for`]: https://github.com/antyakushev/postcss-for
557
+ [`postcss-map`]: https://github.com/pascalduez/postcss-map
558
+ [`postcss-raw`]: https://github.com/MadLittleMods/postcss-raw
559
+ [`postcss-svg`]: https://github.com/Pavliko/postcss-svg
560
+ [`postcss-url`]: https://github.com/postcss/postcss-url
561
+ [`colorguard`]: https://github.com/SlexAxton/css-colorguard
562
+ [`stylehacks`]: https://github.com/ben-eb/stylehacks
563
+ [`css-byebye`]: https://github.com/AoDev/css-byebye
564
+ [`cssgrace`]: https://github.com/cssdream/cssgrace
565
+ [`csstyle`]: https://github.com/geddski/csstyle
566
+ [`webpcss`]: https://github.com/lexich/webpcss
567
+ [`cssfmt`]: https://github.com/morishitter/cssfmt
568
+ [`doiuse`]: https://github.com/anandthakker/doiuse
569
+ [`pixrem`]: https://github.com/robwierzbowski/node-pixrem
570
+ [`rtlcss`]: https://github.com/MohammadYounes/rtlcss
571
+ [`short`]: https://github.com/jonathantneal/postcss-short
572
+ [`lost`]: https://github.com/corysimmons/lost