Fix for the (almost) black-on-black text in listings issue.

We had a rule that set listing text to a color of 222 against a black background. That was unreadable. I removed the 222 color in code listing blocks.
This commit is contained in:
Jay Bryant 2020-03-09 12:08:03 -05:00
parent 7a4d5c339a
commit 4740d1baa3
1 changed files with 1 additions and 2 deletions

View File

@ -805,7 +805,6 @@ table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p {
.literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint { .literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint {
background: #fff; background: #fff;
border: 1px solid #d9d9d9; border: 1px solid #d9d9d9;
color: #222;
border-radius: 4px; border-radius: 4px;
} }