Browse Source

Don't set text color of <code> elements when they're beneath an <a>

Closes gh-3583
pull/3630/head
Andy Wilkinson 11 years ago
parent
commit
6d3660531b
  1. 3
      spring-boot-docs/src/main/docbook/css/manual.css

3
spring-boot-docs/src/main/docbook/css/manual.css

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

Loading…
Cancel
Save