X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fbrowse%2Fcust_main_county.cgi;h=2a21da1505aacbcafb9a14c65350c98e292a7ab9;hb=da86d5a8af2f915a340a74f6c97772451a1e23ef;hp=58ae5501b209a2adc098b260997a06ae6bd736aa;hpb=9390236b83a34eec816ce73e155517339806187a;p=freeside.git diff --git a/httemplate/browse/cust_main_county.cgi b/httemplate/browse/cust_main_county.cgi index 58ae5501b..2a21da150 100755 --- a/httemplate/browse/cust_main_county.cgi +++ b/httemplate/browse/cust_main_county.cgi @@ -46,7 +46,7 @@ my $exempt_sub = sub { }; my $cs_oldrow; -my $cell_style; +my $cell_style = ''; my $cell_style_sub = sub { my $row = shift; if ( $cs_oldrow ne $row ) { @@ -54,11 +54,10 @@ my $cell_style_sub = sub { if ( $cs_oldrow->country ne $row->country ) { $cell_style = 'border-top:2px solid #000000'; } elsif ( $cs_oldrow->state ne $row->state ) { - #$cell_style = 'border-top:1px solid #cccccc'; #default? - $cell_style = 'border-top:1px solid #bbbbbb'; - } elsif ( $cs_oldrow->state eq $row->state ) { - #$cell_style = 'border-top:dashed 1px dark gray'; - #$cell_style = 'border-top:1px dashed #cccccc'; + $cell_style = 'border-top:1px solid #888888'; + } elsif ( $cs_oldrow->county ne $row->county ) { + $cell_style = 'border-top:1px solid #cccccc'; + } else { $cell_style = ''; } }