From: wicked%sci.fi <> Date: Fri, 17 Jul 2009 14:54:58 +0000 (+0000) Subject: Bug 472274: Solid black line on the timetracking summary row of buglist looks too... X-Git-Tag: bugzilla-3.4~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84adb97ecafbafa7af4d2539219cbdf2168afc27;p=thirdparty%2Fbugzilla.git 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 r/a=mkanat --- diff --git a/skins/standard/buglist.css b/skins/standard/buglist.css index fb4801d794..f5d63ab916 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 1538232699..6fdc3b84c1 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -244,16 +244,19 @@ column == 'estimated_time' || column == 'percentage_complete' %] [% IF columns_to_span > 0 %] - Totals + Totals [% columns_to_span = 0 %] [% END %] [% IF column == 'percentage_complete' %] - [% time_info.percentage_complete FILTER format(abbrev.$column.format_value) FILTER html -%] + [% time_info.percentage_complete + FILTER format(abbrev.$column.format_value) FILTER html %] [% ELSE %] - [% PROCESS formattimeunit time_unit=time_info.$column %] + + [%- PROCESS formattimeunit time_unit=time_info.$column %] [% END %] [% ELSIF columns_to_span == 0 %] [%# A column following the first total %] -   +   [% ELSE %] [%# We haven't gotten to a time column yet, keep computing span %] [% columns_to_span = columns_to_span + 1 %] [% END %]