Chat box autohide fix

This commit is contained in:
lindenkron 2023-04-14 16:45:57 +02:00
parent c49d24d77a
commit b58253f4d4
2 changed files with 0 additions and 6 deletions

View File

@ -2221,11 +2221,6 @@ label {
animation: fadeout 1s;
opacity: 0!important;
}
.zeroHeight {
max-height:0!important;
height:0!important;
bottom:30px!important;
}
.partialFadeout{
opacity: 0.2 !important;

View File

@ -4410,7 +4410,6 @@ async function main(){ // main asyncronous thread; mostly initializes the user s
if (session.autohide && (session.scene===false)){// && (session.roomid!==false)){
getById("main").onmouseover = showControl; // this is correct. (it's not session.showControls)
document.ontouchstart = showControl; // this is correct. (it's not session.showControls)
getById("controlButtons").classList.add("zeroHeight");
getById("gridlayout").classList.add("nocontrolbar");
}