From 359afa55e9ddcbd8b4568e411a24aaebb9c701c8 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Tue, 14 Apr 2026 13:45:34 +0530 Subject: [PATCH] fix: Respect app direction for incoming email content (#14011) --- .../components-next/message/bubbles/Email/Index.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue b/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue index 7a4164ded..3d29f3284 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/Email/Index.vue @@ -226,4 +226,10 @@ const handleSeeOriginal = () => { } } } + +// Email clients (Gmail, Outlook) hardcode dir="ltr" on wrapper elements. +// In RTL apps this forces email content LTR regardless of actual text. +[dir='rtl'] .letter-render [dir='ltr'] { + direction: inherit; +}