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

[bug] doesn't handle multiple animation correctly

Open vybu opened this issue 4 years ago • 2 comments

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 missing -ltr

.loader {
  animation: load6 1.7s infinite ease, spinner 1.7s infinite ease;
}

@keyframes load6 {
...
}

@keyframes spinner {
...
}

The output is

[dir=ltr] ._26uJz {
  animation: _1kAQA-ltr 1.7s ease infinite,c7O-P 1.7s ease infinite;
}

@keyframes _1kAQA-ltr {
...
}

@keyframes c7O-P-ltr {
...
}

vybu avatar Mar 04 '20 12:03 vybu

@vybu I could not reproduce it but it seems to have found a problem. Try upgrading to 1.7.3

vkalinichev avatar Mar 11 '20 20:03 vkalinichev

@vkalinichev i'm getting the same with 1.7.3 and having issue with missing properties such as border on 1.7.3

Jordan-Hall avatar Nov 01 '20 17:11 Jordan-Hall