elchininet / postcss-rtlcss

PostCSS plugin to automatically build Cascading Style Sheets (CSS) with Left-To-Right (LTR) and Right-To-Left (RTL) rules using RTLCSS
https://elchininet.github.io/postcss-rtlcss/
Apache License 2.0
98 stars 14 forks source link

Universal selector breaks raw directive #338

Closed mgross1-godaddy closed 2 months ago

mgross1-godaddy commented 2 months ago

minimal repro:

/*rtl:raw:* { margin: 0;}*/

expected:

 [dir="rtl"] * { margin: 0;}

actual:

/*rtl:raw:* { margin: 0;}*/

https://elchininet.github.io/postcss-rtlcss/#664e5db13ea64

elchininet commented 2 months ago

Hi @mgross1-godaddy, I'll take a look at it. Regards

elchininet commented 2 months ago

Hi @mgross1-godaddy, I'll be fixed with the next pull request. Regards

elchininet commented 2 months ago

Hi @mgross1-godaddy, The issue has been fixed in version 5.3.0. Regards

mgross1-godaddy commented 2 months ago

thank you!