summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-09-24 08:14:25 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-09-24 08:14:25 -0400
commit56f76502e3edcc95f7a0e9c8fe5b3d523b33ee29 (patch)
tree47ec77caf723394af4a79360a7051e38e2e700c7 /web/sass-files/sass/partials
parentfba72b849c65a5639296f64f1653243eccddab51 (diff)
parent511fcce55345adb2a6b05cf058fd4d238abcc521 (diff)
downloadchat-56f76502e3edcc95f7a0e9c8fe5b3d523b33ee29.tar.gz
chat-56f76502e3edcc95f7a0e9c8fe5b3d523b33ee29.tar.bz2
chat-56f76502e3edcc95f7a0e9c8fe5b3d523b33ee29.zip
Merge pull request #769 from hmhealey/plt334
PLT-334 Restricted markdown output to only appear on one line when in singleline mode
Diffstat (limited to 'web/sass-files/sass/partials')
-rw-r--r--web/sass-files/sass/partials/_markdown.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/web/sass-files/sass/partials/_markdown.scss b/web/sass-files/sass/partials/_markdown.scss
index c09e9d7b4..bccea6e0e 100644
--- a/web/sass-files/sass/partials/_markdown.scss
+++ b/web/sass-files/sass/partials/_markdown.scss
@@ -1,6 +1,12 @@
.markdown__heading {
font-weight: bold;
}
+.markdown__paragraph-inline {
+ display: inline;
+ + .markdown__paragraph-inline {
+ margin-left: 4px;
+ }
+}
.markdown__table {
background: #fff;
margin: 5px 0 10px;
@@ -25,4 +31,4 @@ pre {
code {
color: #c7254e;
}
-} \ No newline at end of file
+}