summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/mixins.scss
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-06-17 13:32:40 -0500
committerAlfredo Sumaran <alfredo@gitlab.com>2016-06-17 13:42:21 -0500
commit22ea25ae1a7e300d44945571256f5cd78696cf1b (patch)
tree1dd9f26a4786b4ef262eb371ae10940443323725 /app/assets/stylesheets/framework/mixins.scss
parent39a3ab7f3aa919fd196c284b1a35953e5e5d04ba (diff)
downloadgitlab-ce-22ea25ae1a7e300d44945571256f5cd78696cf1b.tar.gz
Make lists looks the same when preview mode and publishedfix-list-style
Diffstat (limited to 'app/assets/stylesheets/framework/mixins.scss')
-rw-r--r--app/assets/stylesheets/framework/mixins.scss14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/mixins.scss b/app/assets/stylesheets/framework/mixins.scss
index 828e7224231..5ec5a96a597 100644
--- a/app/assets/stylesheets/framework/mixins.scss
+++ b/app/assets/stylesheets/framework/mixins.scss
@@ -110,3 +110,17 @@
font-size: 16px;
line-height: 24px;
}
+
+@mixin bulleted-list {
+ > ul {
+ list-style-type: disc;
+
+ ul {
+ list-style-type: circle;
+
+ ul {
+ list-style-type: square;
+ }
+ }
+ }
+} \ No newline at end of file