From 52f2e6250694b19cbed33336f467e10c76017c27 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Sat, 11 Jul 2026 09:48:21 +0200 Subject: [PATCH] docs: custom.css: don't limit rendering to old 800px monitors Right now, base.css style imposes a maximum limit of 800 horizontal pixels to be compatible with very old SVGA monitors. This is not enough to display some tables like pixformat ones on media. Instead, use a more realistic maximum limit. Signed-off-by: Mauro Carvalho Chehab Message-ID: <20260711094821.5e262356@foz.lan> Signed-off-by: Jonathan Corbet --- Documentation/sphinx-static/custom.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/sphinx-static/custom.css b/Documentation/sphinx-static/custom.css index 2e019c8f8a56..be33d9ed1280 100644 --- a/Documentation/sphinx-static/custom.css +++ b/Documentation/sphinx-static/custom.css @@ -3,6 +3,8 @@ * CSS tweaks for the Alabaster theme */ +div.body { max-width: 120em; } + /* Shrink the headers a bit */ div.body h1 { font-size: 180%; } div.body h2 { font-size: 150%; }