diff options
author | ivan <ivan> | 2004-12-09 22:06:41 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-12-09 22:06:41 +0000 |
commit | 6b977f1223bba92d5723d9fd898d8ebe682b6424 (patch) | |
tree | 0e2fc8b2de1a53da1847a827e702120a50d58bd7 | |
parent | 22edb078bfa5aebdef81f7048a81f8336449cdbf (diff) |
UI: same font size as the rest of the page
-rwxr-xr-x | httemplate/search/cust_main.cgi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/httemplate/search/cust_main.cgi b/httemplate/search/cust_main.cgi index 778cdf2b0..32ce10d94 100755 --- a/httemplate/search/cust_main.cgi +++ b/httemplate/search/cust_main.cgi @@ -407,12 +407,12 @@ END '<A HREF="'. FS::TicketSystem->href_customer_tickets($custnum,$priority). '">'; - print "<TR><TD ALIGN=right>$ahref". + print "<TR><TD ALIGN=right><FONT SIZE=-1>$ahref". FS::TicketSystem->num_customer_tickets($custnum,$priority). - "</A></TD>". - "<TD ALIGN=left>$ahref". + "</A></FONT></TD>". + "<TD ALIGN=left><FONT SIZE=-1>$ahref". ( $priority || '<i>(none)</i>' ). - "</A></TD></TR>"; + "</A></FONT></TD></TR>"; } print '<TR><TD BGCOLOR="#000000" COLSPAN=2></TD></TR>'. '<TR><TD ALIGN=right>'; @@ -425,7 +425,7 @@ END print "</TD><TD ALIGN=left>${ahref}Total</A></TD></TR></TABLE>" if @custom_priorities; } else { - print $cust_main->get($addl_col); + print '<FONT SIZE=-1>'. $cust_main->get($addl_col). '</FONT>'; } print "</TD>"; } |