postcss-advanced-variables icon indicating copy to clipboard operation
postcss-advanced-variables copied to clipboard

Use Sass-like variables, conditionals, and iterators in CSS

Results 28 postcss-advanced-variables issues
Sort by recently updated
recently updated
newest added

Passing CSS variable values to a mixin results in corrupted output. Both color and size type values were tested, with the resulting output of both always being a substring of...

Passing color values that are not hex-based or named results in corrupted output. Different variations of rgb and hsl are tried below, with the resulting output always being a substring...

I am not getting this statement to work. Using your example: `@each $animal $i in (puma, sea-slug, egret, salamander) { .$(animal)-icon { background-image: url("images/icon-$(i).svg"); } }` The CSS that is...

Currently looking into replacing sass with postcss. This module has been a life saver. This final piece of the puzzle is @function. Started to look into how this library could...

Related to: https://github.com/jonathantneal/postcss-advanced-variables/issues/76 There are two ways to avoid passing a required param to a mixin: empty params (`@include some-mixin();`) and no params (`@include some-mixin;`). However, they behave differently. Empty...

Including empty params on a mixin include (when there are default params) causes an empty string to be assumed for the passed value, rather than indicating that nothing was passed....

The `sass-import-resolve` has a bug that resolves its promise with `undefined`, which causes a destructuring error: ``` UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'file' of undefined at node_modules/postcss-advanced-variables/index.bundle.js:400:21 ``` https://github.com/jonathantneal/sass-import-resolve/pull/2

Hi @jonathantneal. I'm using this plugin to avoid some postcss-easy-import bugs but i can't use the `pcss` extension on imports. I really need it for syntax highlighting.

Thanks for this awesome project! I'm wondering if you'd be open to accepting contributions, and would be available to provide guidance, for the following new feature. I'd like to be...

With 2.3.2 my (large, complicated) Gatsby / Webpack project works fine. If I upgrade to 3.0 I get (many) reports of ``` You did not set any plugins, parser, or...