From f5edeadfb732503f5d23753a4b8351e4ac8ed4ee Mon Sep 17 00:00:00 2001 From: Yen Truong <36055303+yen-tt@users.noreply.github.com> Date: Mon, 16 Aug 2021 16:00:53 -0400 Subject: [PATCH] Fix inverted check mark in filter (#1510) J=SLAP-1519 TEST=manual see that check mark is not inverted in filter box from en and ar locale --- src/ui/sass/modules/_FilterOptions.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui/sass/modules/_FilterOptions.scss b/src/ui/sass/modules/_FilterOptions.scss index efb54e6cd..a40d1f8c8 100644 --- a/src/ui/sass/modules/_FilterOptions.scss +++ b/src/ui/sass/modules/_FilterOptions.scss @@ -170,7 +170,8 @@ left: -20px; width: 3px; height: 9px; - transform: rotate(45deg) translateY(-50%); + transform: rotate(45deg) translateY(-50%) #{"/*rtl:rotate(45deg) translateX(-100%)*/"}; + /*!rtl:ignore*/ border-right: 1px solid $color-brand-hover; border-bottom: 1px solid $color-brand-hover; border-color: var(--yxt-filter-options-checkmark-color);