summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJamie Lemon <jamie.lemon@artifex.com>2022-12-07 13:06:59 +0000
committerJamie Lemon <jamie.lemon@artifex.com>2022-12-07 13:06:59 +0000
commit7a5a41ada38df5a809cf335eeef83357818d11a9 (patch)
tree836cff7369e4445be64eda8dd4b8ec8433f42d4b /doc
parent583a62735138dbb3866e99a898ef21307562665e (diff)
downloadghostpdl-7a5a41ada38df5a809cf335eeef83357818d11a9.tar.gz
Tweaks the docs custom CSS to show a scrollbar on tables which may need to scroll.
<log></log>
Diffstat (limited to 'doc')
-rw-r--r--doc/src/_static/custom.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/src/_static/custom.css b/doc/src/_static/custom.css
index 1d33520cc..7a1241c30 100644
--- a/doc/src/_static/custom.css
+++ b/doc/src/_static/custom.css
@@ -25,6 +25,20 @@
color:hsla(0,0%,100%,1);
}
+.wy-table-responsive::-webkit-scrollbar {
+ background-color: #dddddd;
+ width: 1em;
+}
+
+.wy-table-responsive::-webkit-scrollbar-track {
+ box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
+}
+
+.wy-table-responsive::-webkit-scrollbar-thumb {
+ background-color: darkgrey;
+ outline: 1px solid slategrey;
+}
+
h1, h2, h3, h4 {
padding: 10px;
border: 1px solid #007aff;