summaryrefslogtreecommitdiffstats
path: root/doc/sphinx/static/kea.css
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 11:36:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 11:36:04 +0000
commit040eee1aa49b49df4698d83a05af57c220127fd1 (patch)
treef635435954e6ccde5eee9893889e24f30ca68346 /doc/sphinx/static/kea.css
parentInitial commit. (diff)
downloadisc-kea-040eee1aa49b49df4698d83a05af57c220127fd1.tar.xz
isc-kea-040eee1aa49b49df4698d83a05af57c220127fd1.zip
Adding upstream version 2.2.0.upstream/2.2.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/sphinx/static/kea.css')
-rw-r--r--doc/sphinx/static/kea.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/sphinx/static/kea.css b/doc/sphinx/static/kea.css
new file mode 100644
index 0000000..55d7758
--- /dev/null
+++ b/doc/sphinx/static/kea.css
@@ -0,0 +1,26 @@
+/* give more screen width to the content as by default it is too narrow
+ and many tables and boxes are squeezed */
+.wy-nav-content {
+ max-width: 1100px;
+}
+
+/* by default table content is not wrapped and then the tables
+ are pretty wide so removing that
+ */
+.wy-table-responsive table td, .wy-table-responsive table th {
+ white-space: normal;
+}
+
+/* Paint literal text black. */
+.rst-content code.literal {
+ color: black;
+}
+
+/* Have literal text that references other sections underlined.
+ * It helps the reader figure out that it's a clickable link.
+ * This type of referencing can be achieved using text roles.
+ * https://www.sphinx-doc.org/en/master/usage/restructuredtext/roles.html
+ */
+.rst-content code.xref {
+ text-decoration: underline dotted gray;
+}