summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2013-10-01 21:26:48 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2013-10-01 21:26:48 (GMT)
commitcae46131c2691e5b02e932ff43b3e127fe8e2055 (patch)
tree913069669a2121e9b50b2dd4b03ec481fc1c39d8
parentc33e1eedd3bade56bffd0017e41e32549a91e3d0 (diff)
downloadsite-cae46131c2691e5b02e932ff43b3e127fe8e2055.tar.gz
plugins.css: Set "white-space: pre"
Markdown uses <pre><code> for code blocks, not just <pre>. Therefore, we cannot set "white-space: nowrap" for <code>.
-rw-r--r--web/content/media/plugins.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/content/media/plugins.css b/web/content/media/plugins.css
index 5b0c2f3..42d9a73 100644
--- a/web/content/media/plugins.css
+++ b/web/content/media/plugins.css
@@ -32,7 +32,7 @@ h1, h2, h3, h4, h5, h6 {
32 32
33code, kbd { 33code, kbd {
34 font-family: "Source Code Pro", monospace; 34 font-family: "Source Code Pro", monospace;
35 white-space: nowrap; 35 white-space: pre;
36} 36}
37 37
38pre { 38pre {