Skip to content

Commit 2daafcd

Browse files
authored
Merge pull request #1882 from idodeclare/bugfix/mandoc_clear
Fix to escape '*' under div#mandoc descendant combinator
2 parents cde1ce2 + 42257be commit 2daafcd

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

web/default/mandoc.css

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,26 @@ li, dt { margin-top: 1em; }
2020
========*/
2121
div#mandoc { max-width: 100ex;
2222
font-family: Helvetica,Arial,sans-serif; }
23-
table ~div#mandoc {
23+
div#mandoc table {
2424
margin-top: 0em;
2525
margin-bottom: 0em; }
26-
td ~div#mandoc { vertical-align: top; }
27-
ul ~div#mandoc, ol ~div#mandoc, dl ~div#mandoc {
26+
div#mandoc td { vertical-align: top; }
27+
div#mandoc ul, div#mandoc ol, div#mandoc dl {
2828
margin-top: 0em;
2929
margin-bottom: 0em; }
30-
li ~div#mandoc, dt ~div#mandoc {
30+
div#mandoc li, div#mandoc dt {
3131
margin-top: 1em; }
3232
/*>>>> OPENGROK REVISED */
3333

3434
a.selflink { border-bottom: thin dotted;
3535
color: inherit;
3636
font: inherit;
3737
text-decoration: inherit; }
38+
/*<<<< OPENGROK REVISED
3839
* { clear: both }
40+
========*/
41+
div#mandoc * { clear: both }
42+
/*>>>> OPENGROK REVISED */
3943

4044
/* Search form and search results. */
4145

0 commit comments

Comments
 (0)