From 15e5be973e20fcfb382d3b06b45ab584427850aa Mon Sep 17 00:00:00 2001 From: Brian Jacobel Date: Tue, 13 Dec 2016 12:57:46 -0500 Subject: [PATCH] Fix TNL-6140 --- lms/static/sass/discussion/elements/_navigation.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lms/static/sass/discussion/elements/_navigation.scss b/lms/static/sass/discussion/elements/_navigation.scss index 170fc80118..d170a10b0c 100644 --- a/lms/static/sass/discussion/elements/_navigation.scss +++ b/lms/static/sass/discussion/elements/_navigation.scss @@ -197,6 +197,12 @@ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; + + @include rtl { + // This is counterintuitive, but when showing a preview of the first part of LTR text, using direction: rtl + // will actually show the _last_ part of that text. + direction: ltr; + } } }