From a8d37bf22ebbd88e328cba76241ad7f57af0e5db Mon Sep 17 00:00:00 2001 From: libccy Date: Tue, 29 Mar 2016 14:45:48 +0800 Subject: [PATCH] 2 --- game/game.js | 20 ++++++++++++++------ game/package.js | 1 + game/update.js | 5 +++-- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/game/game.js b/game/game.js index 76fab1ff8..064b095db 100755 --- a/game/game.js +++ b/game/game.js @@ -17591,12 +17591,15 @@ var text=document.createElement('div'); text.style.width='194px'; text.style.height='104px'; - text.style.marginTop='12px'; text.style.padding='3px'; - text.style.boxShadow='rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 0 0'; + text.style.borderRadius='2px'; + text.style.boxShadow='rgba(0, 0, 0, 0.2) 0 0 0 1px'; text.style.textAlign='left'; text.style.webkitUserSelect='initial'; text.style.overflow='scroll'; + text.style.position='absolute'; + text.style.left='30px'; + text.style.top='12px'; page.appendChild(text); var caption=ui.create.div('','输入命令',page); @@ -17604,13 +17607,18 @@ caption.style.position='absolute'; caption.style.width='120px'; caption.style.top='129px'; - caption.style.left='calc(50% - 68px)'; + caption.style.left='64px'; var text2=document.createElement('input'); - text2.style.width='200px'; + text2.style.width='200px'; + text2.style.height='20px'; + text2.style.padding='0'; text2.style.position='absolute'; - text2.style.top='159px'; - text2.style.left='calc(50% - 102px)'; + text2.style.top='162px'; + text2.style.left='30px'; text2.style.resize='none'; + text2.style.border='none'; + text2.style.borderRadius='2px'; + text2.style.boxShadow='rgba(0, 0, 0, 0.2) 0 0 0 1px'; var g={}; var logs=[]; var logindex=-1; diff --git a/game/package.js b/game/package.js index 55b4df612..3cc72bb05 100755 --- a/game/package.js +++ b/game/package.js @@ -48,6 +48,7 @@ background.pack={ zhulian_bg:'璧合', zhulin_bg:'竹林', shengshi_bg:'盛世', + xueji_bg:'雪霁', yinxiang_bg:'印象', huangtian_bg:'黄天', }; diff --git a/game/update.js b/game/update.js index c42008fd1..fa12cea95 100644 --- a/game/update.js +++ b/game/update.js @@ -1,6 +1,7 @@ window.noname_update={ - version:'1.8.1.1', + version:'1.8.1.2', changeLog:[ - '自由选将改进' + '自由选将改进', + '命令输入改进' ] }