diff options
author | wicked%sci.fi <> | 2009-07-17 16:54:21 +0200 |
---|---|---|
committer | wicked%sci.fi <> | 2009-07-17 16:54:21 +0200 |
commit | f304db03fdb9c7ad5c814700f048bb9061131cd3 (patch) | |
tree | 23a6dfc6328f10e00e8a04105171e36725f579a0 /template/en/default/list | |
parent | f80effd9f3f6f695a8a397c0ac9eef0f6fc72373 (diff) | |
download | bugzilla-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/en/default/list')
-rw-r--r-- | template/en/default/list/table.html.tmpl | 11 |
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> </td> + <td class="bz_total"> </td> [% ELSE %] [%# We haven't gotten to a time column yet, keep computing span %] [% columns_to_span = columns_to_span + 1 %] [% END %] |