From nobody Sun Jul 26 01:48:33 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2160A13AA2F; Fri, 10 Jul 2026 09:00:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783674033; cv=none; b=gGkEMk+ciSklvRPgwxB9GUwjtFbhb5OcnhqKzvDUr9Xu5uDqefSHfzRdGCa1h10oiqz5OQd/3fZp8bd8Kj5p+9XJaRPiegWU6nNDRYkx33PRVzHwq3/2ES8oZADCyKttb6GPdq6VkEsK5Mu1vmk3/AZCmCrbo6XhdmEpJ9uGO9g= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783674033; c=relaxed/simple; bh=7hYeRZKqU/iA635dD/0e3+1VkT1NfPdDsivTDEwOBLM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type; b=ig1AXMwBYG137jOoXBh0CnZ5fkIAFlQBn6zRfd5c+47Uq9zHMm1fuzmRA11cVnp4Ea0J5wY6oF8BrkRVVNDkYLQoPrrEykvHDTyIal3nngRKBF55zItyZEbKO1f7Ype6FgNkS+gTMvU6VMZAH0NGLBxis7nsBy9rzucPm5Q+Ung= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=UMekpdue; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="UMekpdue" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DE7301F000E9; Fri, 10 Jul 2026 09:00:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1783674031; bh=PZTomhapv1GB4dPtZ31heISGx2ogyb6gdCRPTduPiCc=; h=From:To:Cc:Subject:Date; b=UMekpdue6x5QRMj0lrgfHkiJfql0BaTHgUQMAKo4RpskFmcxnvqgnvcGwqC/GA8Sn VP42bN56yYvEDWQhmi/yR5DOZfSkTChmTGQW3NooOSzB1EOewiT1GctJbWP26snjrb qubSbknk5Yx7hNrgV1UazD7fzfIb70wrVXlWb5ZIp4c71t4gCj/tbetaXWNjZGnZsa UfplVIcJ1fe4K7IWb350+FWS5Xig1+qHFGZ+kscKfWEYGPt2mkSkKLuj5KOiWAmyaO F/5UJswivmri3XOuF/+0Gjptq20l8yzAi84PHY95khRkw8QUOH5fKNVsvrNxVCmYmF 6Co+gk/n9G59w== Received: from mchehab by mail.kernel.org with local (Exim 4.99.4) (envelope-from ) id 1wi75y-00000000Dcy-15Ix; Fri, 10 Jul 2026 11:00:30 +0200 From: Mauro Carvalho Chehab To: Jonathan Corbet , Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Clinton Phillips , Daniel Lundberg Pedersen , Hans Verkuil , Mauro Carvalho Chehab , Petr Vorel , Randy Dunlap , Rito Rhymes , Shuah Khan , linux-media@vger.kernel.org Subject: [PATCH] docs: custom.css: don't limit randering to old 800px monitors Date: Fri, 10 Jul 2026 11:00:27 +0200 Message-ID: <1950557405f1150acb1de50de1801f2413223b87.1783673996.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.55.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Right now, base.css style imposes a maximum limit of 800 horizontal pixels to be compatible with very old SVGA monitors. Remove such artificial limit, letting the output to be adjusted to the browser windows size. Signed-off-by: Mauro Carvalho Chehab --- 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 5aa0a1ed9864..1055db7dc1dd 100644 --- a/Documentation/sphinx-static/custom.css +++ b/Documentation/sphinx-static/custom.css @@ -3,6 +3,8 @@ * CSS tweaks for the Alabaster theme */ =20 +div.body { max-width: none; } + /* Shrink the headers a bit */ div.body h1 { font-size: 180%; } div.body h2 { font-size: 150%; } --=20 2.55.0