- Vyriešené
- Archivované
autohide everything when not hovered anywhere on browser
all i want is the userchrome.css to hide everything until i hover anywhere on the browser. not just when i hover the titlebar, as my code does now #navigator-toolbox { … (ďalšie informácie)
all i want is the userchrome.css to hide everything until i hover anywhere on the browser. not just when i hover the titlebar, as my code does now
#navigator-toolbox { position: relative; height: 20px; margin-bottom: 0px; opacity: .3; overflow: auto;
}
#navigator-toolbox:hover { height: auto; margin-bottom: 0px; opacity: 1; overflow: show;
}
if my mouse cursor is anywhere on the browser then i want nothing to be hidden. when my mouse cursor leaves firefox, then i want everything to be hidden.