bug 364420: Left-align events on month printout. Patch by Martin Schröder <mschroeder@mozilla.x-home.org>, r1=lilmatt, r2=mvl

git-svn-id: svn://10.0.0.236/trunk@218947 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mattwillis%gmail.com
2007-01-26 01:34:00 +00:00
parent d0f4dd20b1
commit ba0cb37024

View File

@@ -310,13 +310,14 @@ function makeHTMLWeek(date, sortedList, targetMonth) {
catColor = pb2.getCharPref("calendar.category.color."+item.getProperty("CATEGORIES").toLowerCase());
} catch(ex) {}
var style = 'font-size: 11px; background-color: ' + calColor + ';';
var style = 'font-size: 11px; text-align: left;';
style += ' background-color: ' + calColor + ';';
style += ' color: ' + getContrastingTextColor(calColor);
if (catColor) {
style += ' border: solid ' + catColor + ' 2px;';
}
var item = <tr>
<td valign='top' align='center' style={style}>{time} {item.title}</td>
<td valign='top' style={style}>{time} {item.title}</td>
</tr>;
innerTable.appendChild(item);
}