Fixes text alignment for RTL text in mattermost 5.38.1, which applies proper direction to text but not proper alignment. Note that it doesn't work on earlier versions.
Mattermost RTL Fixer by hedayat
Details
Authorhedayat
LicenseCC-BY
Categorymattermost
Created
Updated
Size514 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Mattermost RTL Fixer
@version 20210920.15.16
@namespace userstyles.world/user/hedayat
@description Fixes text alignment for RTL text in mattermost 5.38.1, which applies proper direction to text but not proper alignment. Note that it doesn't work on earlier versions.
@author hedayat
@license CC-BY
==/UserStyle== */
@-moz-document url-prefix("https://mattermost.") {
.post-message__text {
text-align: inherit;
}
.form-control {
text-align: inherit;
}
}