This commit is contained in:
libccy 2016-03-29 14:45:48 +08:00
parent 53782b30e2
commit a8d37bf22e
3 changed files with 18 additions and 8 deletions

View File

@ -17591,12 +17591,15 @@
var text=document.createElement('div'); var text=document.createElement('div');
text.style.width='194px'; text.style.width='194px';
text.style.height='104px'; text.style.height='104px';
text.style.marginTop='12px';
text.style.padding='3px'; 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.textAlign='left';
text.style.webkitUserSelect='initial'; text.style.webkitUserSelect='initial';
text.style.overflow='scroll'; text.style.overflow='scroll';
text.style.position='absolute';
text.style.left='30px';
text.style.top='12px';
page.appendChild(text); page.appendChild(text);
var caption=ui.create.div('','输入命令',page); var caption=ui.create.div('','输入命令',page);
@ -17604,13 +17607,18 @@
caption.style.position='absolute'; caption.style.position='absolute';
caption.style.width='120px'; caption.style.width='120px';
caption.style.top='129px'; caption.style.top='129px';
caption.style.left='calc(50% - 68px)'; caption.style.left='64px';
var text2=document.createElement('input'); 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.position='absolute';
text2.style.top='159px'; text2.style.top='162px';
text2.style.left='calc(50% - 102px)'; text2.style.left='30px';
text2.style.resize='none'; 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 g={};
var logs=[]; var logs=[];
var logindex=-1; var logindex=-1;

View File

@ -48,6 +48,7 @@ background.pack={
zhulian_bg:'璧合', zhulian_bg:'璧合',
zhulin_bg:'竹林', zhulin_bg:'竹林',
shengshi_bg:'盛世', shengshi_bg:'盛世',
xueji_bg:'雪霁',
yinxiang_bg:'印象', yinxiang_bg:'印象',
huangtian_bg:'黄天', huangtian_bg:'黄天',
}; };

View File

@ -1,6 +1,7 @@
window.noname_update={ window.noname_update={
version:'1.8.1.1', version:'1.8.1.2',
changeLog:[ changeLog:[
'自由选将改进' '自由选将改进',
'命令输入改进'
] ]
} }