From a2b7596ac0b61a68a8008215203d4d5b9692b48c Mon Sep 17 00:00:00 2001 From: jpersson Date: Sun, 29 Nov 2015 12:51:24 -0500 Subject: [PATCH] doc: fix color of linked code blocks Links nested in backticks were not visually distinguishable before, this fixes them. PR-URL: https://github.com/nodejs/node/pull/4068 Reviewed-By: Roman Reiss --- doc/api_assets/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index f03753d09bf66f..6f26c3a0c71075 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -343,6 +343,10 @@ li code { padding: 0.2em 0.4em; } +a code { + color: inherit; +} + span.type { color: #222; }