summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorwicked%sci.fi <>2009-07-17 16:54:21 +0200
committerwicked%sci.fi <>2009-07-17 16:54:21 +0200
commitf304db03fdb9c7ad5c814700f048bb9061131cd3 (patch)
tree23a6dfc6328f10e00e8a04105171e36725f579a0 /template
parentf80effd9f3f6f695a8a397c0ac9eef0f6fc72373 (diff)
downloadbugzilla-f304db03fdb9c7ad5c814700f048bb9061131cd3.tar.gz
bugzilla-f304db03fdb9c7ad5c814700f048bb9061131cd3.tar.xz
Bug 472274: Solid black line on the timetracking summary row of buglist looks too heavy, use lighter approach suggested by Aaron Larson - Patch by Teemu Mannermaa <wicked@sci.fi> r/a=mkanat
Diffstat (limited to 'template')
-rw-r--r--template/en/default/list/table.html.tmpl11
1 files changed, 7 insertions, 4 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl
index 10a50b33f..c1bbb7402 100644
--- a/template/en/default/list/table.html.tmpl
+++ b/template/en/default/list/table.html.tmpl
@@ -235,16 +235,19 @@
column == 'estimated_time' ||
column == 'percentage_complete' %]
[% IF columns_to_span > 0 %]
- <td class="bz_total_label" colspan="[% columns_to_span FILTER html %]"><b>Totals</b></td>
+ <td class="bz_total bz_total_label" colspan="
+ [%- columns_to_span FILTER html %]"><b>Totals</b></td>
[% columns_to_span = 0 %]
[% END %]
[% IF column == 'percentage_complete' %]
- <td>[% time_info.percentage_complete FILTER format(abbrev.$column.format_value) FILTER html -%]</td>
+ <td class="bz_total">[% time_info.percentage_complete
+ FILTER format(abbrev.$column.format_value) FILTER html %]</td>
[% ELSE %]
- <td>[% PROCESS formattimeunit time_unit=time_info.$column %]</td>
+ <td class="bz_total">
+ [%- PROCESS formattimeunit time_unit=time_info.$column %]</td>
[% END %]
[% ELSIF columns_to_span == 0 %] [%# A column following the first total %]
- <td>&nbsp;</td>
+ <td class="bz_total">&nbsp;</td>
[% ELSE %] [%# We haven't gotten to a time column yet, keep computing span %]
[% columns_to_span = columns_to_span + 1 %]
[% END %]