Larger chat font sizes

For now, battle chat is still at 8pt, but chatroom and PM font
size has been increased to 9pt. Join/leave messages, timestamps,
and user symbols in chat stay at 8pt, and timestamps are now
gray.
This commit is contained in:
Guangcong Luo 2014-09-26 23:37:50 -05:00
parent 75efa5a2d3
commit e7fad47f54
2 changed files with 3 additions and 3 deletions

View File

@ -1120,9 +1120,9 @@
if (sectionPref === 'seconds') {
components.push(date.getSeconds());
}
return '[' + components.map(
return '<small>[' + components.map(
function(x) { return (x < 10) ? '0' + x : x; }
).join(':') + '] ';
).join(':') + '] </small>';
},
parseBattleID: function(id) {
if (id.lastIndexOf('-') > 6) {

View File

@ -918,7 +918,7 @@ p.or:after {
.chat-log .chat,
.pm-log .chat {
padding: 4px 0 2px 0;
font-size: 8pt;
font-size: 9pt;
}
.chat em {
padding: 0 4px 0 3px;