Commit 4b1d30ce827a411acf4d62000497aae22ec992dc

kizu 2012-07-13T03:38:54

Making sure the code is not wrapped and have no hyphenation. White-space could be overriden for inline code blocks in future.

diff --git a/prism.css b/prism.css
index 06a5e4c..b33a1af 100644
--- a/prism.css
+++ b/prism.css
@@ -8,12 +8,17 @@
 	color: black;
 	direction: ltr;
 	text-align: left;
+	white-space: pre;
 	word-spacing: normal;
 	
 	-webkit-tab-size: 4;
 	-moz-tab-size: 4;
 	-o-tab-size: 4;
-	tab-size: 4;	
+	tab-size: 4;
+	-webkit-hyphens: none;
+	-moz-hyphens: none;
+	-ms-hyphens: none;
+	hyphens: none;
 }
 
 pre.prism {