From 035b4e1002e742633387fbc915e64c64e69ae311 Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Sat, 16 Mar 2019 21:58:42 +0100 Subject: [PATCH] Limit width of text/enriched 60em is a bit more than 100 characters in the fixed-width font I use so that should be an acceptable compromise between readability and avoiding unintended line breaks. The RFC says that output should use "the maximum available margins", but that was clearly before large monitors became common. --- style/debug.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style/debug.css b/style/debug.css index 3e3ce77..ccec653 100644 --- a/style/debug.css +++ b/style/debug.css @@ -28,6 +28,7 @@ th { .text-enriched { font-family: monospace; white-space: pre-wrap; + max-width: 60em; } .signature {