From 89c25a6199609b164b6342e2eb66e5189735ac67 Mon Sep 17 00:00:00 2001 From: "Paul A. Jungwirth" Date: Mon, 19 Jan 2026 09:30:31 -0800 Subject: [PATCH v1] Fill pages better when printing mailing list archive threads The .message-content CSS rule applied a display: inline-block property, but this caused all text of a message to stick together more tightly than to the header or the next message, making pages print with large empty spaces. By using display: block, we allow paragraphs to split normally. --- django/media/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/media/css/main.css b/django/media/css/main.css index f7d6646..2e356e7 100644 --- a/django/media/css/main.css +++ b/django/media/css/main.css @@ -772,7 +772,7 @@ h3.messages { } .message-content { - display: inline-block; + display: block; font-family: monospace, monospace; font-size: 0.7em; line-height: 1.2em; -- 2.47.3