Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

hover addon bar

  • 2 回覆
  • 1 有這個問題
  • 13 次檢視
  • 最近回覆由 nebru007

more options

Hello I want to make the addon bar addon bar visible by bumping my mouse on the bottom of the page.

I installed this userstyle but it's only work in normal mood not in fullscreen. https://userstyles.org/styles/37319/autohide-add-on-bar-fx-4

I uninstalled that userstyle and added this code to my userChrome.css file and it's only work in fullscreen mood:

#main-window[sizemode="fullscreen"] #addon-bar {
visibility: visible!important; }

#main-window[sizemode="fullscreen"] #addon-bar:not(:hover) > * {
visibility: collapse!important; }

#main-window[sizemode="fullscreen"] #addon-bar:not(:hover) {
min-height:3px!important; }

I tried the following userstyle but the problem is the addon bar appear even without reaching the mouse to the bottom of the page https://userstyles.org/styles/55623/firefox-better-add-on-bar-status-bar

so my question is how to make this userstyle https://userstyles.org/styles/37319/autohide-add-on-bar-fx-4

or that userChrome.css code work in both normal mood and fullscreen mood?
Hello I want to make the addon bar addon bar visible by bumping my mouse on the bottom of the page. I installed this userstyle but it's only work in normal mood not in fullscreen. https://userstyles.org/styles/37319/autohide-add-on-bar-fx-4 I uninstalled that userstyle and added this code to my userChrome.css file and it's only work in fullscreen mood: <pre><nowiki>#main-window[sizemode="fullscreen"] #addon-bar { visibility: visible!important; } #main-window[sizemode="fullscreen"] #addon-bar:not(:hover) > * { visibility: collapse!important; } #main-window[sizemode="fullscreen"] #addon-bar:not(:hover) { min-height:3px!important; }</nowiki></pre> I tried the following userstyle but the problem is the addon bar appear even without reaching the mouse to the bottom of the page https://userstyles.org/styles/55623/firefox-better-add-on-bar-status-bar so my question is how to make this userstyle https://userstyles.org/styles/37319/autohide-add-on-bar-fx-4 or that userChrome.css code work in both normal mood and fullscreen mood?

由 cor-el 於 修改

被選擇的解決方法

Try to add only this rule to the original code below the @namespace line.

#main-window[sizemode="fullscreen"] #addon-bar {
visibility: visible !important;
}
從原來的回覆中察看解決方案 👍 0

所有回覆 (2)

more options

選擇的解決方法

Try to add only this rule to the original code below the @namespace line.

#main-window[sizemode="fullscreen"] #addon-bar {
visibility: visible !important;
}
more options

It worked, thanks