From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 0c4919cf for ; Tue, 4 Dec 2018 01:12:20 -0500 (EST) Date: Tue, 4 Dec 2018 01:12:20 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: Restrict "vertical-align: middle;" to descendants of X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: <381db5441615c421@fantadrom.bsd.lv> Log Message: ----------- Restrict "vertical-align: middle;" to descendants of class="tbl" elements, we don't want that for other tables. Modified Files: -------------- mandoc: mandoc.css Revision Data ------------- Index: mandoc.css =================================================================== RCS file: /home/cvs/mandoc/mandoc/mandoc.css,v retrieving revision 1.41 retrieving revision 1.42 diff -Lmandoc.css -Lmandoc.css -u -p -r1.41 -r1.42 --- mandoc.css +++ mandoc.css @@ -19,7 +19,7 @@ table { margin-top: 0em; * but not for table, resulting in inconsistent border styling. */ tbody { border-color: inherit; } tr { border-color: inherit; } -td { vertical-align: middle; +td { vertical-align: top; padding-left: 0.2em; padding-right: 0.2em; border-color: inherit; } @@ -164,7 +164,7 @@ td.foot-os { text-align: right; } .RsV { } .eqn { } -.tbl { } +.tbl td { vertical-align: middle; } .HP { margin-left: 3.8em; text-indent: -3.8em; } -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv