diff options
author | Brad King <brad.king@kitware.com> | 2022-11-09 14:29:33 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-11-09 14:29:53 (GMT) |
commit | 6834ffd21bba7dcf10c125866f39ae17450de78a (patch) | |
tree | 1980c9d238833fc742e6edc9948568ce780302d1 | |
parent | ef2ffed6738bb40a55963d7fd7286070ed657a9c (diff) | |
parent | 977c38c3399e58e1e1c03048c90f37646670d894 (diff) | |
download | CMake-6834ffd21bba7dcf10c125866f39ae17450de78a.zip CMake-6834ffd21bba7dcf10c125866f39ae17450de78a.tar.gz CMake-6834ffd21bba7dcf10c125866f39ae17450de78a.tar.bz2 |
Merge topic 'doc-guide-link-style'
977c38c339 Help: Render guide links as normal text instead of monospace
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7886
-rw-r--r-- | Utilities/Sphinx/static/cmake.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Utilities/Sphinx/static/cmake.css b/Utilities/Sphinx/static/cmake.css index 4539cf9..324cd92 100644 --- a/Utilities/Sphinx/static/cmake.css +++ b/Utilities/Sphinx/static/cmake.css @@ -34,3 +34,14 @@ div.outdated { text-align: center; width: 100%; } + +/* Revert style to the inherited (normal text) for `:guide:` links */ +code.xref.cmake-guide { + font-size: inherit; + font-family: inherit; + font-weight: inherit; + padding: inherit; +} +code.xref.cmake-guide span.pre { + white-space: inherit; +} |