From 81665cabefecaee36d003ba4830c41cc8844ef2d Mon Sep 17 00:00:00 2001 From: dsc Date: Fri, 17 Dec 2010 18:11:39 -0800 Subject: [PATCH] Fixes level border when grid is hidden. Updates conf defaults. --- src/tanks/config.cjs | 2 +- www/css/lttl.css | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/tanks/config.cjs b/src/tanks/config.cjs index 0d4e119..03a5308 100644 --- a/src/tanks/config.cjs +++ b/src/tanks/config.cjs @@ -13,7 +13,7 @@ exports['defaults'] = { createGridCanvas : true, createGridTable : false, showGridCoords : false, - showAttackCooldown : true, + showAttackCooldown : false, showCountdown : (document.location.host.toString() !== 'tanks.woo') }, pathing : { diff --git a/www/css/lttl.css b/www/css/lttl.css index 13df1ac..9a6b3f1 100644 --- a/www/css/lttl.css +++ b/www/css/lttl.css @@ -42,6 +42,7 @@ table.grid td { /* outline:1px solid rgba(255,255,255,0.1); */ #ai textarea { width:90%; height:100px; } #viewport { position:relative; width:500px; height:500px; margin:1em auto; cursor:crosshair; } + #viewport .layer.grid { outline:1px solid rgba(255,255,255,0.1); } #overlay { position:fixed; top:0; left:0; width:100%; height:100%; background-color:#000; opacity:0.5; z-index:100; } -- 1.7.0.4