No red with double backticks markup

The double backticks (``) markup caused text to be displayed in
red with a pinkish background colour. The text is now displayed
in black and bold, the same size as the surrounding text.

Change-Id: Id73e828b69445aa9bf4c48bea84dd95fef16bc2b
Fixes-Bug: 1718256
This commit is contained in:
Ruby Loo 2017-09-19 13:44:28 -04:00
parent 1eaa00b89d
commit e99cf6d96c
4 changed files with 13 additions and 14 deletions

View File

@ -1534,11 +1534,10 @@ samp {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
padding: 0;
font-size: 100%;
font-weight: bold;
color: #000;
}
kbd {
padding: 2px 4px;

File diff suppressed because one or more lines are too long

View File

@ -34,16 +34,11 @@ ol.arabic ol ol {
dd { margin-left: 2em; }
div.docs-body code.literal {
color: #e74c3c;
padding: 1px 3px;
border: solid 1px #e1e4e5;
color: #000;
}
div.docs-body table code.literal {
color: #e74c3c;
padding: 1px 3px;
border: none;
/* border: solid 1px #e1e4e5; */
color: #000;
}
div.docs-body span.guilabel, div.docs-body span.menuselection {

View File

@ -0,0 +1,5 @@
---
fixes:
- |
The double backticks (``) markup caused text to be displayed in red with
a pinkish background colour. The text is now displayed in black and bold.