Files
CMake/Utilities/Sphinx/static/cmake.css
Brad King 72814e46da Utilities/Sphinx: Make HTML links in parsed-literal blocks more obvious
Hyperlink text color does not stand out when used inside a literal block
because such blocks typically get syntax highlighting.  Update our CSS
style to make the links more distinct.

Suggested-by: Kyle Edwards <kyle.edwards@kitware.com>
2018-05-07 10:10:37 -04:00

19 lines
484 B
CSS

/* Import the Sphinx theme style. */
@import url("default.css");
/* Wrap sidebar content even within words so that long
document names do not escape sidebar borders. */
div.sphinxsidebarwrapper {
word-wrap: break-word;
}
/* Make links inside parsed-literal blocks more obvious
by using a background color and increased line spacing
to make them look boxed. */
.literal-block {
line-height: 1.4;
}
.literal-block a.reference.internal {
background-color: #dfdfdf;
}