postcss-rtl icon indicating copy to clipboard operation
postcss-rtl copied to clipboard

PostCSS plugin for RTL-adaptivity

Results 28 postcss-rtl issues
Sort by recently updated
recently updated
newest added

Upgraded postcss-rtl to support postcss v8.0.0. I followed this guide: https://evilmartians.com/chronicles/postcss-8-plugin-migration The diff looks messier than it is, the plugin is largely unchanged besides what was recommended in the guide....

This issue is happening always. ``` ./src/css/main.css (/path/to/node_modules/css-loader/dist/cjs.js??ref--6-1!/path/to/node_modules/postcss-loader/src??postcss!./src/css/main.css) Module build failed (from /path/to/node_modules/postcss-loader/src/index.js): TypeError: Cannot set property 'parent' of undefined at /path/to/src/css/components/sidebar.css:1:1 at Rule.removeChild (/path/to/node_modules/postcss-import/node_modules/postcss/lib/container.js:584:30) at /path/to/node_modules/postcss-rtl/lib/index.js:186:14 at Array.forEach ()...

bug

Seems like if there is 2 animations given it doesn't correctly replace second animations name. `animation: a 1s, b 1s; -> animation: a-ltr 1s, b 1s;` notice how b is...

bug

Hello everyone! Thank for your library, but i can't it use for now 😟 For what purpose some styles transformed to selectors with leading [dir] or [dir=ltr]? Is it possible...

To avoid de-dedupe by other libraries that require newer postcss version

So I hooked this up in to a next JS implementation. This requires a couple steps but it is definitely building the CSS for both RTL and LTR together. Running...

Hello. There is a global setting `fromRTL` that when `true` specifies that the whole source CSS was written as RTL. Is it possible to add as pair of block comments...

It'd be handy to add support for Dir-Less selection. This can be accomplished as simply as changing "html[dir='ltr']" to "html:not([dir='rtl'])". This would select all elements that aren't wrapped in a...

The blacklist option just allowed CSS properties how can I add CSS files? In my case, I install leaflet on my project but `postcss-rtl` convert all leaflet CSS to RTL...