From 6d3660531bfda67d97c153654304cb23e2975a84 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 23 Jul 2015 12:06:02 +0100 Subject: [PATCH] Don't set text color of elements when they're beneath an Closes gh-3583 --- spring-boot-docs/src/main/docbook/css/manual.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-docs/src/main/docbook/css/manual.css b/spring-boot-docs/src/main/docbook/css/manual.css index e442411eee4..0ecbe2e8872 100644 --- a/spring-boot-docs/src/main/docbook/css/manual.css +++ b/spring-boot-docs/src/main/docbook/css/manual.css @@ -16,6 +16,9 @@ body { code { font-size: 16px; font-family: Consolas, "Liberation Mono", Courier, monospace; +} + +:not(a)>code { color: #6D180B; }