diff options
author | Alvaro Herrera | 2023-03-09 18:47:19 +0000 |
---|---|---|
committer | Alvaro Herrera | 2023-03-09 18:47:19 +0000 |
commit | a7e584a7d68a9a2bcc7efaf442262771f9044248 (patch) | |
tree | 0f2a61aa0982ac15328ee19913cf53a72cf1a476 | |
parent | 206b44bb24b3785bf6360361b757c1dae77ab0bb (diff) |
HTML docs: Add padding to table.simplelist for more readable output
This couples with a to-be-pushed pgweb patch to synchronize the other
stylesheet under which these docs are rendered on the website.
Author: Karl Pinc <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | doc/src/sgml/stylesheet.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/src/sgml/stylesheet.css b/doc/src/sgml/stylesheet.css index 6410a479580..cc14efa1ca3 100644 --- a/doc/src/sgml/stylesheet.css +++ b/doc/src/sgml/stylesheet.css @@ -76,6 +76,12 @@ div.example { margin: 0.5ex; } +/* Additional formatting for "simplelist" structures */ +table.simplelist td { + padding-left: 2em; + padding-right: 2em; +} + /* formatting for entries in tables of functions: indent all but first line */ th.func_table_entry p, |