As far as I can see, mattermost 5.38.1 does use dir=auto for text areas, so RTL text looks OK. However, For whatever reason, `text-align: left` is applied to all text areas, so RTL text also is left aligned. I don't know why this is the case, but it'd be great if there is no alignment (or text-align: inherit is used) so that the browser uses proper alignment for RTL text automatically.
I see `text-align: left` is applied to `.form-control` and `.post-message__text` CSS classes, which is causing the issue. If they are changed to `inherit`, everything looks fine.
As far as I can see, mattermost 5.38.1 does use dir=auto for text areas, so RTL text looks OK. However, For whatever reason, `text-align: left` is applied to all text areas, so RTL text also is left aligned. I don't know why this is the case, but it'd be great if there is no alignment (or text-align: inherit is used) so that the browser uses proper alignment for RTL text automatically.
I see `text-align: left` is applied to `.form-control` and `.post-message__text` CSS classes, which is causing the issue. If they are changed to `inherit`, everything looks fine.
Thanks