From dd69e03ff5108ecf722f2e1f76da197feffa68bb Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 2 May 2019 11:07:24 -0700 Subject: [PATCH] Fix color of `code spans` that are links. --- src/theme/css/chrome.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/theme/css/chrome.css b/src/theme/css/chrome.css index db4970b6..ea458079 100644 --- a/src/theme/css/chrome.css +++ b/src/theme/css/chrome.css @@ -180,6 +180,9 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta vertical-align: middle; padding: 0.1em 0.3em; border-radius: 3px; +} + +:not(pre):not(a) > .hljs { color: var(--inline-code-color); }