]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 472274: Solid black line on the timetracking summary row of buglist looks too...
authorwicked%sci.fi <>
Fri, 17 Jul 2009 14:54:58 +0000 (14:54 +0000)
committerwicked%sci.fi <>
Fri, 17 Jul 2009 14:54:58 +0000 (14:54 +0000)
skins/standard/buglist.css
template/en/default/list/table.html.tmpl

index fb4801d794a212ed3d16547cd1ceeeb319769b07..f5d63ab9167a4a942a3d1309dbeb2c58437b2b49 100644 (file)
@@ -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;
 }
 
index 1538232699da91587f57cb6b4f9f8a5f48fd7276..6fdc3b84c102443e12c28a65a36bfc9a0ea9ce3b 100644 (file)
             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 %]