summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-10-17 12:18:21 +0200
committerRobert Speicher <rspeicher@gmail.com>2016-10-17 12:18:21 +0200
commit8a5d3ce15d071491cc2177a4f317dc82c02e0d1d (patch)
treed78343a5ba5cab375273f25cc0b8f8cfa7ca5cfd /app/assets
parent052de0600c6b137e6f9df08250b4cf5f38280295 (diff)
parent7e3ff1852340c33f5b8853190d6a24813d5920a2 (diff)
downloadgitlab-ce-8a5d3ce15d071491cc2177a4f317dc82c02e0d1d.tar.gz
Merge branch 'ebraminio/gitlab-ce-master' into 'master'
Add RTL support to Markdown rendering See merge request !6296
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/framework/typography.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/typography.scss b/app/assets/stylesheets/framework/typography.scss
index 8df0067fac1..287653beac5 100644
--- a/app/assets/stylesheets/framework/typography.scss
+++ b/app/assets/stylesheets/framework/typography.scss
@@ -90,6 +90,11 @@
border-left: 3px solid #e7e9ed;
}
+ blockquote:dir(rtl) {
+ border-left: 0;
+ border-right: 3px solid #e7e9ed;
+ }
+
blockquote p {
color: #7f8fa4 !important;
font-size: inherit;
@@ -112,6 +117,10 @@
}
}
+ table:dir(rtl) th {
+ text-align: right;
+ }
+
pre {
margin: 12px 0;
font-size: 13px;
@@ -129,6 +138,10 @@
margin: 3px 0 3px 28px !important;
}
+ ul:dir(rtl), ol:dir(rtl) {
+ margin: 3px 28px 3px 0 !important;
+ }
+
li {
line-height: 1.6em;
}