Sylvain Rabot wrote: > On Sat, 2011-01-01 at 04:41 -0600, Jonathan Nieder wrote: >> <tr id="metadata_owner"> >> <td class="metadata_tag">owner</td> >> <td>UNKNOWN</td> >> </tr> >> ... >> >> The idea was that the rows are already labelled for use by css, so to >> make this stylable all we need to do is use a class for the first >> column. This way if some site operator wants the first column >> *always* be bold then that is easy to do. > > So your idea is to use the same class for all this kind of tables' first > column ? Yes, or more generally to find a way to make the first column always stylable. Actually tr#metadata_desc > td:first-child { ... } already does the trick (or table.projects_list > tr > td:first-child { ... } for style that should apply to all first columns) but I haven't checked how widely supported first-child is. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html