From 0a84ad5307664b56f84cd7f38f8e1205b110fc27 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 1 Dec 2014 17:20:51 -0800 Subject: [PATCH] Use .source.gfm as root selector This matches the grammar's scope name and was an oversight from the original CSS to Less conversion. --- static/markdown.less | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/static/markdown.less b/static/markdown.less index de39d5202..0fc30f19f 100644 --- a/static/markdown.less +++ b/static/markdown.less @@ -1,19 +1,17 @@ -.source { - .gfm { - .markup.heading { - font-weight: bold; - } +.source.gfm { + .markup.heading { + font-weight: bold; + } - .bold { - font-weight: bold; - } + .bold { + font-weight: bold; + } - .italic { - font-style: italic; - } + .italic { + font-style: italic; + } - .comment.quote { - font-style: italic; - } + .comment.quote { + font-style: italic; } }