layout
This commit is contained in:
parent
6acccc0fdc
commit
52c5225514
|
@ -21889,9 +21889,9 @@
|
|||
break;
|
||||
case 'auto':
|
||||
ui.click.auto();
|
||||
if(!ui.system1.classList.contains('shown')){
|
||||
ui.system1.classList.add('shown');
|
||||
}
|
||||
// if(!ui.system1.classList.contains('shown')){
|
||||
// ui.system1.classList.add('shown');
|
||||
// }
|
||||
break;
|
||||
case 'chat':
|
||||
if(ui.chatButton){
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#arena.paused,#arena.unfocus,#arena.right,
|
||||
#arena.menupaused,#window.shortcutpaused>div:not(#shortcut):not(#system){
|
||||
#arena.menupaused,
|
||||
#window.shortcutpaused>#arena{
|
||||
filter:blur(3px);
|
||||
-webkit-filter:blur(3px);
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ table{table-layout: fixed;}
|
|||
position: absolute;
|
||||
transition: all 1s;
|
||||
}
|
||||
#window.shortcutpaused>div:not(.background):not(#shortcut):not(#system):not(#arena):not(.hidden):not(.removing){opacity: 0.3 !important}
|
||||
#window.shortcutpaused>div:not(.background):not(#shortcut):not(#system):not(#arena):not(.hidden):not(.removing):not(.dialog.popped){opacity: 0.3 !important}
|
||||
#window.shortcutpaused>#arena>div:not(#timer):not(.removing):not(.hidden){opacity: 0.3 !important}
|
||||
#window.noclick_important *{pointer-events: none !important;}
|
||||
#window.noclick_important .noclick_click_important div{pointer-events: auto !important}
|
||||
|
@ -49,7 +49,7 @@ table{table-layout: fixed;}
|
|||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
z-index: 30;
|
||||
z-index: 10;
|
||||
/*background-color: rgba(0, 0, 0, 0.6);*/
|
||||
}
|
||||
#shortcut>div{
|
||||
|
@ -64,6 +64,8 @@ table{table-layout: fixed;}
|
|||
white-space: nowrap;
|
||||
text-align: center;
|
||||
letter-spacing: -6px;
|
||||
transform: scale(1.3);
|
||||
/*transition: all 0.3s;*/
|
||||
}
|
||||
#shortcut>div>span{
|
||||
width: 200px;
|
||||
|
@ -73,26 +75,39 @@ table{table-layout: fixed;}
|
|||
}
|
||||
#shortcut>div[data-position="1"]{
|
||||
left:calc(50% - 50px);
|
||||
top: calc(50% - 250px);
|
||||
top: calc(50% - 200px);
|
||||
}
|
||||
#shortcut.hidden>div[data-position="1"]{
|
||||
transform: scale(1) translateY(150px);
|
||||
}
|
||||
#shortcut>div[data-position="2"]{
|
||||
left:calc(50% + 150px);
|
||||
left:calc(50% + 100px);
|
||||
top: calc(50% - 50px);
|
||||
}
|
||||
#shortcut.hidden>div[data-position="2"]{
|
||||
transform: scale(1) translateX(-150px);
|
||||
}
|
||||
#shortcut>div[data-position="3"]{
|
||||
left:calc(50% - 50px);
|
||||
top: calc(50% + 150px);
|
||||
top: calc(50% + 100px);
|
||||
}
|
||||
#shortcut.hidden>div[data-position="3"]{
|
||||
transform: scale(1) translateY(-150px);
|
||||
}
|
||||
#shortcut>div[data-position="4"]{
|
||||
left:calc(50% - 250px);
|
||||
left:calc(50% - 200px);
|
||||
top: calc(50% - 50px);
|
||||
}
|
||||
#shortcut.hidden>div[data-position="4"]{
|
||||
transform: scale(1) translateX(150px);
|
||||
}
|
||||
#shortcut>div[data-position="5"]{
|
||||
left:calc(50% - 50px);
|
||||
top: calc(50% - 50px);
|
||||
}
|
||||
#shortcut.hidden{
|
||||
pointer-events: none;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
#splash{
|
||||
width:100%;
|
||||
|
|
|
@ -20,6 +20,9 @@
|
|||
#system{
|
||||
z-index: 31 !important;
|
||||
}
|
||||
#window>.dialog.popped{
|
||||
z-index: 11 !important;
|
||||
}
|
||||
#system>div{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
|
@ -52,9 +55,6 @@
|
|||
#system>div:not(.shown)>div{
|
||||
pointer-events: none;
|
||||
}
|
||||
#shortcut>div{
|
||||
transform: scale(1.3);
|
||||
}
|
||||
#pausebutton,#autobutton{
|
||||
display: none !important;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue