Seems that it also change class names that have the word "left" like
.read-more-left a {
color: $color__yellow_orange;
}
that becomes:
.read-more-right a {
color: #FC9300;
}
How can we use /rtl:ignore/ on that? or avoid it altogether? I know I can change the class name :)
For now, i use .read-more-left a, .read-more-right a {
color: #FC9300;
}
Thanks.