Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation: CSS: Improve man page font

Define man page font as monospace and bold, i.e. the same as what is
used for .code and <pre>.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20260113113612.315748-4-pvorel@suse.cz>

authored by

Petr Vorel and committed by
Jonathan Corbet
653793b8 9088a767

+7 -1
+7 -1
Documentation/sphinx-static/custom.css
··· 20 20 overflow-y: auto; } 21 21 /* Tweak document margins and don't force width */ 22 22 div.document { 23 - margin: 20px 10px 0 10px; 23 + margin: 20px 10px 0 10px; 24 24 width: auto; 25 25 } 26 26 ··· 150 150 border-bottom: none; 151 151 text-decoration: underline; 152 152 text-underline-offset: 0.3em; 153 + } 154 + 155 + a.manpage { 156 + font-style: normal; 157 + font-weight: bold; 158 + font-family: "Courier New", Courier, monospace; 153 159 }