From 965c4f01569ad448e78476461e50b9229c836979 Mon Sep 17 00:00:00 2001 From: Stefan Breunig Date: Fri, 8 Feb 2013 12:52:19 +0100 Subject: [PATCH] fix chat input being too narrow --- code/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/boot.js b/code/boot.js index ffa9268c..9635b788 100644 --- a/code/boot.js +++ b/code/boot.js @@ -36,7 +36,7 @@ window.setupStyles = function() { '#updatestatus { width:'+(SIDEBAR_WIDTH-2*4)+'px; } ', '#sidebar { width:'+(SIDEBAR_WIDTH + HIDDEN_SCROLLBAR_ASSUMED_WIDTH + 2 /*border*/)+'px; } ', '#scrollwrapper { width:'+(SIDEBAR_WIDTH + 2*HIDDEN_SCROLLBAR_ASSUMED_WIDTH)+'px; right:-'+(2*HIDDEN_SCROLLBAR_ASSUMED_WIDTH-2)+'px } ', - 'input, h2, #updatestatus { width:'+(SIDEBAR_WIDTH - 2*4)+'px !important } ', + '#sidebar input, h2, #updatestatus { width:'+(SIDEBAR_WIDTH - 2*4)+'px !important } ', '#sidebar > *, #gamestat span, .imgpreview img { width:'+SIDEBAR_WIDTH+'px; }'].join("\n") + ''); }