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

View File

@@ -16,6 +16,9 @@ body {
code {
font-size: 16px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}
:not(a)>code {
color: #6D180B;
}