Commit ca8d24f3f56107fb220483d3ef7ac7de4d9ba4b6

Golmote 2015-03-01T00:59:49

Fix bug related to line-highlighting plugin

diff --git a/themes/prism-coy.css b/themes/prism-coy.css
index 831d03f..8db555e 100644
--- a/themes/prism-coy.css
+++ b/themes/prism-coy.css
@@ -215,3 +215,17 @@ pre[class*="language-"].line-numbers code {
 pre[class*="language-"].line-numbers .line-numbers-rows {
 	left: 0;
 }
+
+/* Plugin styles: Line Highlight */
+pre[class*="language-"][data-line] {
+	padding-top: 0;
+	padding-bottom: 0;
+	padding-left: 0;
+}
+pre[data-line] code {
+	position: relative;
+	padding-left: 4em;
+}
+pre .line-highlight {
+	margin-top: 0;
+}
\ No newline at end of file