[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [ELPA] [PATCH] CSS readability improvements
From: |
Stefan Monnier |
Subject: |
Re: [ELPA] [PATCH] CSS readability improvements |
Date: |
Sun, 17 Mar 2024 00:14:52 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Hi Adam,
Thank you very much for these. Could you point to existing places in
`elpa.(non)gnu.org` where we can see the current problems, so as to help
me understand what's the actual intended impact of your changes?
Stefan
> Attached please find two patches which improve the readability of package's
> manuals on ELPA.
>
> Thanks,
> Adam
>
> From 870631825430258d9b156e38165f5205af0b5bfd Mon Sep 17 00:00:00 2001
> From: Adam Porter <adam@alphapapa.net>
> Date: Sat, 16 Mar 2024 22:54:59 -0500
> Subject: [PATCH 1/2] * html/layout.css (table): margin: 1em 0 1em
>
> Ensure some margin around tables, otherwise they run up against body
> text and other tables.
> ---
> html/layout.css | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/html/layout.css b/html/layout.css
> index 7d3be41ffd..6d0dc4a5ff 100644
> --- a/html/layout.css
> +++ b/html/layout.css
> @@ -54,6 +54,7 @@ q:before, q:after {
> table {
> border-collapse: collapse;
> border-spacing: 0;
> + margin: 1em 0 1em;
> }
>
> /* End of reset */
> --
> 2.30.2
>
>
> From 09e654b09b86f1331fe9c939bd08b8f74c97881e Mon Sep 17 00:00:00 2001
> From: Adam Porter <adam@alphapapa.net>
> Date: Sat, 16 Mar 2024 22:59:18 -0500
> Subject: [PATCH 2/2] * html/layout.css: Improve readability of DL elements
>
> (dl): Don't decrease font size. Indent list slightly to set off from
> body text.
> (dt): Don't limit width. Don't display inline. Ensure small margin
> above each term.
> (dd): Don't limit width. Don't display inline.
>
> While DL lists might be expected to be, e.g. a glossary, where each DT
> element is just one term, these lists are commonly used for other
> purposes, in which DT elements may be a sentence or more; this is
> especially so for some ELPA packages' manuals which are exported to
> HTML from Org files. Cramming these terms into a narrow column next
> to their definition makes such lists hard to read. Instead, this
> change puts the terms and definitions on their own lines.
> ---
> html/layout.css | 19 ++++---------------
> 1 file changed, 4 insertions(+), 15 deletions(-)
>
> diff --git a/html/layout.css b/html/layout.css
> index 6d0dc4a5ff..f14a8ff4f9 100644
> --- a/html/layout.css
> +++ b/html/layout.css
> @@ -168,24 +168,13 @@ p.centered {
> }
>
> dl {
> - margin: 30px 0;
> - font-size: .8em;
> + margin: 30px 2em;
> }
>
> dt {
> - font-weight: bold;
> - width: 300px;
> - display: inline-block;
> - vertical-align: top;
> -}
> -
> -dd {
> - /* We should reduce vertical space use in the "header".
> - Yuan Fu <casouri@gmail.com> suggested to do that simply by
> - commenting this out:
> - margin-bottom: 10px; */
> - width: 460px;
> - display: inline-block;
> + font-weight: bold;
> + margin: 0.25em 0 0 0;
> + vertical-align: top;
> }
>
> .button {