Don't set text color of <code> elements when they're beneath an <a>

Closes gh-3583
This commit is contained in:
Andy Wilkinson 2015-07-23 12:06:02 +01:00
parent fbfbec1177
commit 6d3660531b
1 changed files with 3 additions and 0 deletions

View File

@ -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;
} }