* Karl O. Pinc <kop@karlpinc.com>
*/
-td.sqltext { text-decoration-line: underline;
- text-decoration-color: silver;
- text-decoration-style: double; }
+tbody.sqltext > tr > td { text-decoration-line: underline;
+ text-decoration-color: silver;
+ text-decoration-style: double; }
<%def name="render_row(data)">
<tr>
% for item in data:
- <td class="sqltext">${item}</td>
+ <td>${item}</td>
% endfor
</tr>
</%def>
% if result_row.heading is not None:
${self.render_heading(result_row.heading.data)}
% endif
- <tbody>
+ <tbody class="sqltext">
% for row in result_row.rows:
${self.render_row(row.data)}
% endfor