You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found it annoying that the Firefox tab bar and other UI elements would still pop up when the mouse is near the top.
This can be effectively hidden/disabled completely by changing line 25 in userChrome.css from --browser-area-z-index-toolbox: 3; to --browser-area-z-index-toolbox: 0;. This is a bit of a hack but makes the WebApp feel native by not having the Firefox UI popping up.
The text was updated successfully, but these errors were encountered:
For those who also struggled with this but can't find the profiles folder; check common.py (lines-51-61) to see where the profiles are for your specific browser.
replacing the entirety of userChrome.css with the following seemed to work well for me.
/* hides the native tabs */
#TabsToolbar {
visibility: collapse;
}
/* leaves space for the window buttons */
#nav-bar {
visibility: collapse;
}
I found it annoying that the Firefox tab bar and other UI elements would still pop up when the mouse is near the top.
This can be effectively hidden/disabled completely by changing line 25 in
userChrome.css
from--browser-area-z-index-toolbox: 3;
to--browser-area-z-index-toolbox: 0;
. This is a bit of a hack but makes the WebApp feel native by not having the Firefox UI popping up.The text was updated successfully, but these errors were encountered: