aboutsummaryrefslogtreecommitdiff
path: root/doc/sphinx
diff options
context:
space:
mode:
authorJim Fehrle2020-12-02 19:22:47 -0800
committerJim Fehrle2020-12-02 19:22:47 -0800
commitaf0276ffe32e5367bd93e2e16bc57eecb0cf9de5 (patch)
treed5c922acfaaa880e8dc77b2734e327a0c6f88a6b /doc/sphinx
parent9992bb15d4f90fc0cf3aa2854beb209bc5effac6 (diff)
Split long lines in errors and warning index
Diffstat (limited to 'doc/sphinx')
-rw-r--r--doc/sphinx/_static/notations.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/sphinx/_static/notations.css b/doc/sphinx/_static/notations.css
index 8c3f7ac3c1..abb08d98cc 100644
--- a/doc/sphinx/_static/notations.css
+++ b/doc/sphinx/_static/notations.css
@@ -266,3 +266,13 @@ code span.error {
.rst-content tt.literal, .rst-content tt.literal, .rst-content code.literal {
color: inherit !important;
}
+
+/* make the error message index readable */
+.indextable code {
+ white-space: inherit; /* break long lines */
+}
+
+.indextable tr td + td {
+ padding-left: 2em; /* indent 2nd & subsequent lines */
+ text-indent: -2em;
+}