Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoshkob <goshkob@gmail.com>2017-07-18 17:43:05 +0300
committerClement Ho <clemmakesapps@gmail.com>2017-07-18 17:43:05 +0300
commitf10c4c72e221a709f3a32a994d04a147196db8a7 (patch)
treeb12bd4136105d2990de8334a5e34a1086b44bc2d /app/assets/stylesheets/framework/typography.scss
parent11f9ac0a48b62cef25eedede4c1819964f08d5ce (diff)
reset text-align to initial to let elements with dir="auto" align texts to right…
Diffstat (limited to 'app/assets/stylesheets/framework/typography.scss')
-rw-r--r--app/assets/stylesheets/framework/typography.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/typography.scss b/app/assets/stylesheets/framework/typography.scss
index 785b09e622f..77b7d901f9a 100644
--- a/app/assets/stylesheets/framework/typography.scss
+++ b/app/assets/stylesheets/framework/typography.scss
@@ -2,6 +2,10 @@
color: $gl-text-color;
word-wrap: break-word;
+ [dir="auto"] {
+ text-align: initial;
+ }
+
a {
color: $md-link-color;
}