diff options
author | wicked%sci.fi <> | 2009-07-17 14:54:21 +0000 |
---|---|---|
committer | wicked%sci.fi <> | 2009-07-17 14:54:21 +0000 |
commit | f304db03fdb9c7ad5c814700f048bb9061131cd3 (patch) | |
tree | 23a6dfc6328f10e00e8a04105171e36725f579a0 | |
parent | f80effd9f3f6f695a8a397c0ac9eef0f6fc72373 (diff) | |
download | bugs-f304db03fdb9c7ad5c814700f048bb9061131cd3.tar bugs-f304db03fdb9c7ad5c814700f048bb9061131cd3.tar.gz bugs-f304db03fdb9c7ad5c814700f048bb9061131cd3.tar.bz2 bugs-f304db03fdb9c7ad5c814700f048bb9061131cd3.tar.xz bugs-f304db03fdb9c7ad5c814700f048bb9061131cd3.zip |
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
-rw-r--r-- | skins/standard/buglist.css | 11 | ||||
-rw-r--r-- | template/en/default/list/table.html.tmpl | 11 |
2 files changed, 13 insertions, 9 deletions
diff --git a/skins/standard/buglist.css b/skins/standard/buglist.css index fb4801d79..f5d63ab91 100644 --- a/skins/standard/buglist.css +++ b/skins/standard/buglist.css @@ -78,13 +78,14 @@ td.bz_percentage_complete_column { text-align: right; } -tr.bz_time_summary_line { - background: black; - color: white; -} - td.bz_total_label { font-weight: bold; +} + +td.bz_total { + border-top-style: solid; + border-top-color: #929bb1; + border-top-width: 3px; text-align: right; } 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 %] |