Skip to content

Commit 7bcdf96

Browse files
mchehabJonathan Corbet
authored andcommitted
docs: custom.css: prevent li marker to override text
There's currently an issue with li marker: it is set to use -1em, which actually makes it override the text. This is visible on indexes that are deep enough. Fix it. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <4f28c485b72ea27c0981cd950a1819597d6736b1.1768838938.git.mchehab+huawei@kernel.org>
1 parent a66437c commit 7bcdf96

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Documentation/sphinx-static/custom.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ img.logo {
3030
margin-bottom: 20px;
3131
}
3232

33+
/* The default is to use -1em, wich makes it override text */
34+
li { text-indent: 0em; }
35+
3336
/*
3437
* Parameters for the display of function prototypes and such included
3538
* from C source files.

0 commit comments

Comments
 (0)