From: Philipp Hahn Date: Thu, 11 Aug 2011 12:40:38 +0000 (+0200) Subject: Align table cells on top X-Git-Tag: v0.9.5-rc1~256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=447e4c466ed2e59e7dc96117acb44f060d3305ec;p=thirdparty%2Flibvirt.git Align table cells on top When the description of an entry is too long and needs multiple lines, all other table cells of the same row are currently vertically aligned on center. Without row borders or different background colors for alternating rows this is hard to read. Change the style-sheet to align the table cells of a row on top. Signed-off-by: Philipp Hahn --- diff --git a/docs/libvirt.css b/docs/libvirt.css index 049e3320db..6e54b73163 100644 --- a/docs/libvirt.css +++ b/docs/libvirt.css @@ -199,6 +199,10 @@ div.api table { whitespace: pre; } +div.api table td, div.variablelist table td { + vertical-align: top; +} + h1 a, h2 a, h3 a, h4 a, h5 a { color: inherit;