MohammadYounes / rtlcss

Framework for transforming Cascading Style Sheets (CSS) from Left-To-Right (LTR) to Right-To-Left (RTL)
https://rtlcss.com
MIT License
1.68k stars 129 forks source link

Wrong result when dealing with background with hex color with opacity (eg. "background: background: #00000080") #341

Closed jieweizheng closed 3 months ago

jieweizheng commented 3 months ago

This issue can be reproduce in the playground input:

a. {
    background: #00000080;
}

expecting:

a. {
    background: #00000080;
}

but result is:

a. {
    background: #000000right 80 top 50%;
}