summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-05-07 14:12:00 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-05-07 14:12:05 (GMT)
commitdd3e1a737216b7c9bfb6c7569685b36a1bff9cba (patch)
tree53d291e357974fede35a22d1dbec4d4635b9e8c2 /Utilities
parent42db369133d4cfc0e47bb624b2a08e57fee097a5 (diff)
parent72814e46dabe120964c9cebc55cc4952bf4837e3 (diff)
downloadCMake-dd3e1a737216b7c9bfb6c7569685b36a1bff9cba.zip
CMake-dd3e1a737216b7c9bfb6c7569685b36a1bff9cba.tar.gz
CMake-dd3e1a737216b7c9bfb6c7569685b36a1bff9cba.tar.bz2
Merge topic 'doc-command-synopsis'
72814e46da Utilities/Sphinx: Make HTML links in parsed-literal blocks more obvious 08b4ea639c Help: Organize file command docs into sections 51c0e1407c Help: Add Synopsis section to install, list, and string docs 0acd705119 Help: Improve list command signature group name for read operations d5b2745b34 Help: Re-order file command docs 7d918b3cee cmRST: Parse inline links and inline literals Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2039
Diffstat (limited to 'Utilities')
-rw-r--r--Utilities/Sphinx/static/cmake.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/Utilities/Sphinx/static/cmake.css b/Utilities/Sphinx/static/cmake.css
index 2a326d4..b082ede 100644
--- a/Utilities/Sphinx/static/cmake.css
+++ b/Utilities/Sphinx/static/cmake.css
@@ -6,3 +6,13 @@
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;
+}