2 messages in net.sourceforge.lists.courier-sqwebmail[sqwebmail] Hardcoded color for subfo...
FromSent OnAttachments
Pawel TeczaFeb 5, 2007 6:22 am.patch
Pawel TeczaFeb 12, 2007 6:39 am.patch
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[sqwebmail] Hardcoded color for subfolderlistunread and subfoldercnt classesActions...
From:Pawel Tecza (pte@uw.edu.pl)
Date:Feb 5, 2007 6:22:13 am
List:net.sourceforge.lists.courier-sqwebmail
Attachments:

Hello Sam,

I can't change color for subfolderlistunread and subfoldercnt CSS classes at Folders page in my sqwebmail.css file, because it's hardcoded in webmail sources.

Please apply my attached patch to fix that. I've removed the hardcoded HTML attributes, because there are unnecessary now. You added them to sqwebmail.css file many months ago.

My best regards,

--- webmail/folder.c-orig 2007-02-05 14:56:40.000000000 +0100 +++ webmail/folder.c 2007-02-05 15:01:42.000000000 +0100 @@ -4298,11 +4298,11 @@ i=j-1; if (tot_nnew) { - printf(" <font class=\"subfolderlistunread\" style=\"color: #800000\"
size=\"-1\">"); + printf(" <span class=\"subfolderlistunread\">"); printf(unread_label, tot_nnew); - printf("</font>"); + printf("</span>"); } - printf("</td><td align=\"right\" valign=\"top\"><span style=\"color:
#000000\" class=\"subfoldercnt\">%d</span>&nbsp;&nbsp;</td></tr>\n\n", + printf("</td><td align=\"right\" valign=\"top\"><span
class=\"subfoldercnt\">%d</span>&nbsp;&nbsp;</td></tr>\n\n", tot_nnew + tot_nother); continue; }