diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-07-11 00:23:40 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-11 00:23:40 -0700 |
commit | a5148c7aabd33464432f9355d7cddf12c2147054 (patch) | |
tree | a541b53acb9599efbaa96b9d5ab1565b191a7a9f /httemplate/elements | |
parent | 823d03145596a92a347a0682c64ab1e00818696b (diff) |
UI for emailing customer statements on v4, RT#34078
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/tr-fixed.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/elements/tr-fixed.html b/httemplate/elements/tr-fixed.html index 373c0ab3a..dad8da03f 100644 --- a/httemplate/elements/tr-fixed.html +++ b/httemplate/elements/tr-fixed.html @@ -1,6 +1,6 @@ <% include('tr-td-label.html', @_ ) %> - <TD BGCOLOR="#dddddd" <% $style %> <% $colspan %>><% $value %></TD> + <TD <% $style %> <% $colspan %>><% $value %></TD> </TR> @@ -10,7 +10,9 @@ my %opt = @_; -my $style = $opt{'cell_style'} ? ' STYLE="'. $opt{'cell_style'}. '" ' : ''; +my $style = $opt{'cell_style'} + ? ' STYLE="'. $opt{'cell_style'}. '" ' + : ' STYLE="color:#666666" '; my $colspan = $opt{'colspan'} ? ' COLSPAN="'. $opt{'colspan'}. '" ' : ''; |