reset text-align to initial to let elements with dir="auto" align texts to right…

This commit is contained in:
goshkob 2017-07-18 14:43:05 +00:00 committed by Clement Ho
parent 11f9ac0a48
commit f10c4c72e2
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,10 @@
color: $gl-text-color;
word-wrap: break-word;
[dir="auto"] {
text-align: initial;
}
a {
color: $md-link-color;
}

View File

@ -0,0 +1,4 @@
---
title: "reset text-align to initial to let elements with dir="auto" align texts to right in RTL languages ( default is left )"
merge_request: 12892
author: goshhob