Fix label for price filter for RTL sites
Previously the numbers were fixed to go LTR which is the proper direction for RTL sites when dealing with numbers - but the `price` label was still RTL. This now makes it all LTR.
This commit is contained in:
parent
2bb466d53f
commit
ea9f8ad9c5
|
@ -1711,10 +1711,11 @@ p.demo_store,
|
|||
/**
|
||||
* Right to left styles
|
||||
*/
|
||||
.rtl.woocommerce .price_label,
|
||||
.rtl.woocommerce .price_label span {
|
||||
unicode-bidi: embed;
|
||||
/* rtl:ignore */
|
||||
direction: ltr;
|
||||
unicode-bidi: embed;
|
||||
}
|
||||
|
||||
.woocommerce-message {
|
||||
|
|
Loading…
Reference in New Issue