Update code tag styling so bbcode [code] blocks and wiki markdown inline code render nicely.

This commit is contained in:
Andrew Manning
2018-02-18 10:09:05 -05:00
parent 547ef772ab
commit c444e40c01
2 changed files with 29 additions and 2 deletions

View File

@@ -48,3 +48,24 @@ td i {
padding-right: 10px;
}
pre code {
background: #F5F5F5;
font-family: Courier, monospace;
font-size: 1em;
padding: 1em 1.5em;
display: block;
white-space: pre-wrap;
}
code {
background: #F5F5F5;
font-family: Courier, monospace;
font-size: 1em;
display: inline;
padding: 0.2em 0.2em;
white-space: pre-wrap;
}
#wiki-content-container code {
background: #F5F5F5;
}