Don't set text color of <code> elements when they're beneath an <a>
Closes gh-3583
This commit is contained in:
parent
fbfbec1177
commit
6d3660531b
|
@ -16,6 +16,9 @@ body {
|
||||||
code {
|
code {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-family: Consolas, "Liberation Mono", Courier, monospace;
|
font-family: Consolas, "Liberation Mono", Courier, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
:not(a)>code {
|
||||||
color: #6D180B;
|
color: #6D180B;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue