From b58253f4d4200abcd44de1af16b90de083a07db5 Mon Sep 17 00:00:00 2001 From: lindenkron Date: Fri, 14 Apr 2023 16:45:57 +0200 Subject: [PATCH] Chat box autohide fix --- main.css | 5 ----- main.js | 1 - 2 files changed, 6 deletions(-) diff --git a/main.css b/main.css index ada8093..3c2bacd 100644 --- a/main.css +++ b/main.css @@ -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; diff --git a/main.js b/main.js index a558f68..28e2cac 100644 --- a/main.js +++ b/main.js @@ -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"); }