Remove css rule that stops syntax highlighting (#484)
* Remove suspect css rule Removed the ".post-full-content pre code * { color: inherit }" rule which prevents highlight.js from working. * Changed to just exclude span Less disruptive to just remove span from color inheritance. * Remove extra newline
This commit is contained in:
parent
6f4fe840b3
commit
d48178fde9
|
@ -939,7 +939,7 @@ Usage (In Ghost editor):
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-full-content pre code * {
|
.post-full-content pre code :not(span) {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue