Skip to content

Commit

Permalink
Fix #10863: vertical alignment of bugnote meta data cells
Browse files Browse the repository at this point in the history
The vertical-align property is not inherited as per
http://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align

Therefore we must apply the vertical-align property to the <td> itself,
and not the parent <tr>.

Signed-off-by: David Hicks <hickseydr@optusnet.com.au>
  • Loading branch information
Christian Weiske authored and davidhicks committed Aug 21, 2009
1 parent 9131bd1 commit f63e8c6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions css/default.css
Expand Up @@ -83,9 +83,8 @@ tr.print-category { color: #000000; font-weight: bold; }

#buglist tr { text-align: center; }

tr.bugnote { vertical-align: top; }
td.bugnote-public { background-color: #c8c8e8; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; }
td.bugnote-private { background-color: #e8e8e8; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; }
td.bugnote-public { background-color: #c8c8e8; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; vertical-align: top; }
td.bugnote-private { background-color: #e8e8e8; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; vertical-align: top; }
td.bugnote-note-public { background-color: #e8e8e8; color: #000000; width: 75%; }
td.bugnote-note-private { background-color: #e8e8e8; color: #000000; width: 75%; }

Expand Down

0 comments on commit f63e8c6

Please sign in to comment.