diff --git a/code/debugging.js b/code/debugging.js index dd1d2939..b1033032 100644 --- a/code/debugging.js +++ b/code/debugging.js @@ -52,7 +52,7 @@ window.debug.console.create = function() { if($('#debugconsole').length) return; $('#chatcontrols').append('debug'); $('#chatcontrols a:last').click(function() { - $('#chatinput span').css('cssText', 'color: #bbb !important').text('debug:'); + $('#chatinput mark').css('cssText', 'color: #bbb !important').text('debug:'); $('#chat > div').hide(); $('#debugconsole').show(); $('#chatcontrols .active').removeClass('active'); @@ -75,7 +75,7 @@ window.debug.console.renderLine = function(text, errorType) { var tb = d.toLocaleString(); var t = ''; var s = 'style="color:'+color+'"'; - var l = '

'+t+''+errorType+''+text+'

'; + var l = ''+t+''+errorType+''+text+''; $('#debugconsole').prepend(l); } diff --git a/style.css b/style.css index 9133c338..034aa4a2 100644 --- a/style.css +++ b/style.css @@ -196,12 +196,15 @@ em { #chat table, #chatinput table { width: 100%; - height: 100%; table-layout: fixed; border-spacing: 0m; border-collapse: collapse; } +#chatinput table { + height: 100%; +} + #chat td, #chatinput td { font-family: Verdana, sans-serif; font-size: 12.6px;