mirror of https://gitee.com/openkylin/libvirt.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 <hahn@univention.de>
This commit is contained in:
parent
594f564c75
commit
447e4c466e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue