mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-05-05 21:16:26 -05:00
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:
parent
75efa5a2d3
commit
e7fad47f54
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user