From 417bb6e5614a67f44c3885664102cc17523ed81f Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Sat, 18 Apr 2020 14:48:18 -0400 Subject: [PATCH] Set indenting and alignment on new function listing tables This helps to ensure readability of the new function table listings while working around some of the generated code from DocBook Authors: Tom Lane and myself --- media/css/main.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/media/css/main.css b/media/css/main.css index 36fc82b4..08ca2558 100644 --- a/media/css/main.css +++ b/media/css/main.css @@ -791,6 +791,14 @@ code, word-break: unset; } +/** Formatting for entries in tables of functions: indent all but first line **/ +#docContent table.table th.functableentry, +#docContent table.table td.functableentry { + padding-left: 4em; + text-indent: -3.5em; + text-align: left; +} + /** * Titles, Navigation */ -- 2.39.5