Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

autohide everything when not hovered anywhere on browser 2

  • 답글 없음
  • 0 이 문제를 만남
more options

this was asked before by myself

/questions/1284841

and again by another user

/questions/1402855

the code was

  1. navigator-toolbox {
 max-height: 0;
 overflow: hidden;
 transition: ease all 3s;

}

  1. main-window:hover #navigator-toolbox {
 max-height: 100vh;
 animation: 0s pop-in;
 animation-fill-mode: both;
 animation-delay: 2s;

}

@keyframes pop-in {

 from {overflow: hidden}
 to {overflow: unset}

}

the issue now i have with firefox 124.0.2 is that the transition is now instant when my mouse enters or leaves the window and one of my addon buttons (roboform) no longer works with this userchrome.css edit.

its been a few updates ago it broke maybe 15 or so and now im wondering if there is a better updated script that works like it used to.

this was asked before by myself /questions/1284841 and again by another user /questions/1402855 the code was #navigator-toolbox { max-height: 0; overflow: hidden; transition: ease all 3s; } #main-window:hover #navigator-toolbox { max-height: 100vh; animation: 0s pop-in; animation-fill-mode: both; animation-delay: 2s; } @keyframes pop-in { from {overflow: hidden} to {overflow: unset} } the issue now i have with firefox 124.0.2 is that the transition is now instant when my mouse enters or leaves the window and one of my addon buttons (roboform) no longer works with this userchrome.css edit. its been a few updates ago it broke maybe 15 or so and now im wondering if there is a better updated script that works like it used to.

글에 답글을 달기 위해서는 계정으로 로그인해야만 합니다. 계정이 아직 없다면 새로운 질문을 올려주세요.