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:
Mikey Arce 2018-06-06 14:15:02 -07:00
parent 2bb466d53f
commit ea9f8ad9c5
1 changed files with 4 additions and 3 deletions

View File

@ -1711,10 +1711,11 @@ p.demo_store,
/**
* Right to left styles
*/
.rtl.woocommerce .price_label span {
unicode-bidi: embed;
.rtl.woocommerce .price_label,
.rtl.woocommerce .price_label span {
/* rtl:ignore */
direction: ltr;
direction: ltr;
unicode-bidi: embed;
}
.woocommerce-message {