Make inline code inside links show the link color.

Fixes #8386
This commit is contained in:
Dennis Schubert 2022-08-26 19:48:49 +02:00
parent 58483bdd2c
commit 0ede0233df
No known key found for this signature in database
GPG key ID: 5A0304BEA7966D7E

View file

@ -5,3 +5,12 @@ pre {
white-space: pre;
code { white-space: pre; }
}
// For inline-code inside links, let's force the color to the default link
// color to make them be recognizable as links.
p a {
code,
pre {
color: $link-color;
}
}