Removed borders around icons in threaded display

SVN revision: 458
This commit is contained in:
Stefan Ritt 2003-03-27 13:05:28 +00:00
parent e0a02e8822
commit ed33aa34e0

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG Contents: Web server program for Electronic Logbook ELOG
$Log$ $Log$
Revision 1.57 2003/03/27 13:05:28 midas
Removed borders around icons in threaded display
Revision 1.56 2003/03/26 11:45:31 midas Revision 1.56 2003/03/26 11:45:31 midas
Added text search in all attributes Added text search in all attributes
@ -6755,7 +6758,7 @@ FILE *f;
{ {
/* if top level only, display reply icon if message has a reply */ /* if top level only, display reply icon if message has a reply */
if (getcfg(lbs->name, "Top level only", str) && atoi(str) == 1 && reply_to[0]) if (getcfg(lbs->name, "Top level only", str) && atoi(str) == 1 && reply_to[0])
rsprintf("<a href=\"%s\"><img border=0 src=\"icons/icon2.gif\"></a>&nbsp;", ref); rsprintf("<a href=\"%s\"><img border=0 src=\"reply.gif\"></a>&nbsp;", ref);
else else
{ {
/* display standard icons */ /* display standard icons */
@ -6918,7 +6921,7 @@ FILE *f;
else if (attr_flags[i] & AF_ICON) else if (attr_flags[i] & AF_ICON)
{ {
if (attrib[i][0]) if (attrib[i][0])
rsprintf("&nbsp;<img src=\"icons/%s\">&nbsp;", attrib[i]); rsprintf("&nbsp;<img border=0 src=\"icons/%s\">&nbsp;", attrib[i]);
} }
else else
@ -6948,7 +6951,7 @@ FILE *f;
{ {
rsprintf("<td class=\"%s\">", sclass); rsprintf("<td class=\"%s\">", sclass);
if (attrib[i][0]) if (attrib[i][0])
rsprintf("<img src=\"icons/%s\">", attrib[i]); rsprintf("<img border=0 src=\"icons/%s\">", attrib[i]);
rsprintf("&nbsp</td>"); rsprintf("&nbsp</td>");
} }
@ -8420,7 +8423,8 @@ LOGBOOK *lbs_cur;
/*---- header ----*/ /*---- header ----*/
show_standard_header(lbs, TRUE, loc("ELOG Entries"), NULL); sprintf(str, "ELOG %s", lbs->name);
show_standard_header(lbs, TRUE, str, NULL);
/*---- title ----*/ /*---- title ----*/