Viser spørgsmål med mærkatet: Vis alle spørgsmål

How to view pdf with dark background in the default pdf viewer on the firefox browser

Hey, i recently came across this post https://support.mozilla.org/en-US/questions/1434510#:~:text=I%20view%20a%20lot%20of,viewer%20to%20black%2Fdark%20gray. and i coul… (læs mere)

Hey, i recently came across this post

https://support.mozilla.org/en-US/questions/1434510#:~:text=I%20view%20a%20lot%20of,viewer%20to%20black%2Fdark%20gray.

and i couldn't figure out how to do it. if anyone can tell me steps on how to do it i'll be glad.

thanks.

Stillet af Hellf0rg0d for 5 timer siden

autohide everything when not hovered anywhere on browser 2

this was asked before by myself /questions/1284841 and again by another user /questions/1402855 the code was navigator-toolbox { max-height: 0; overflow: hid… (læs mere)

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.

Stillet af roger douglas for 6 dage siden