diff --git a/code/chat.js b/code/chat.js index eb4b2b81..87399417 100644 --- a/code/chat.js +++ b/code/chat.js @@ -456,7 +456,7 @@ window.chat.renderMsg = function(msg, nick, time, team) { var t = ''; var s = 'style="color:'+COLORS[team]+'"'; var title = nick.length >= 8 ? 'title="'+nick+'" class="help"' : ''; - return '
'+t+''+nick+''+msg+'
'; + return ''+t+' <'+nick+'> '+msg+'
'; } diff --git a/style.css b/style.css index eebbc734..6ce0e51a 100644 --- a/style.css +++ b/style.css @@ -195,7 +195,7 @@ summary { width: 683px; } -#chat span { +#chat .blockquote { display: inline-block; width: 540px; } @@ -212,6 +212,11 @@ summary { z-index: 3001; } +#chat .invisibleseparator { + color: rgba(8, 48, 78, 0.0); + display: inline-block; + width: 0px; +} #chatinput span {