postcss-image-set-polyfill icon indicating copy to clipboard operation
postcss-image-set-polyfill copied to clipboard

PostCSS plugin for polyfilling image-set CSS function

Results 6 postcss-image-set-polyfill issues
Sort by recently updated
recently updated
newest added

When using the `type()` descriptor, [that `Safari` currently doesn't support](https://caniuse.com/css-image-set). `Cannot read property 'dpi' of undefined` ```css background: image-set( url('../images/sky.jpg') type("image/jpeg"), url('../images/sky.webp') type("image/webp"), url('../images/sky.avif') type("image/avif") ); ```` It should be...

Hello, This PR makes the following changes * Update this module to PostCSS 8 using the migration guide : https://evilmartians.com/chronicles/postcss-8-plugin-migration * Update the node version to use 10 at the...

Bumps [eslint](https://github.com/eslint/eslint) from 3.15.0 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...

dependencies

As image URL could be assigned to content property the polyfill should be applied to CSS snippet like this: ``` .content-view.canvas-overview .content-view.canvas > footer > .view-related-items > .view-shader { content:...

@SuperOl3g: Use case: For a specific set of breakpoints I provide different background images (which can optimize loading time quite nicely). Now I also want to provide three images per...

Input: ```css .image { background-image: image-set( url(img/test.png) 1x, url(img/test-2x.png) 2x, url(my-img-print.png) 600dpi ); } ``` Expected output: ```css .image { background-image: url(img/test.png); } @media (min-resolution: 144dpi) { .image { background-image:...

bug
help wanted