From 447e4c466ed2e59e7dc96117acb44f060d3305ec Mon Sep 17 00:00:00 2001 From: Philipp Hahn Date: Thu, 11 Aug 2011 14:40:38 +0200 Subject: [PATCH] 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 --- docs/libvirt.css | 4 ++++ 1 file changed, 4 insertions(+) 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;