summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2021-03-15 21:39:16 +0100
committerstuebinm2021-03-15 21:39:16 +0100
commit055ec9dd5b01542ba9c9dc49e4514a3a4164ba8f (patch)
tree9cac003dd30b5dccf8f52f2b8330f4458f2edcaa
parent83b4e43930589e5b5a35a8d73eb967bbdb676a3f (diff)
fix markdown inline code text colourHEADmaster
-rw-r--r--cgit.css5
1 files changed, 3 insertions, 2 deletions
diff --git a/cgit.css b/cgit.css
index 151edd8..fba2a67 100644
--- a/cgit.css
+++ b/cgit.css
@@ -1,7 +1,8 @@
/* markdown stuff which overwrites the inline css generated by the parser (for now) */
-.markdown-body pre > code {
- white-space: pre;
+
+.markdown-body code {
+ white-space: pre;
color: black;
}