-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to hide scrollbar in TST 2? #1507
Comments
I use just: #tabbar.overflow { margin-left: -17px; } However I am seeing the same thing as you if the width of the sidebar is too narrow. Without this CSS, the right-click menu display logic works properly even with a narrow sidebar. |
The advantage to my example is that you don't get a glitch when transitioning from scrolling to not scrolling, where the scrollbar appears for a brief moment. Ok, I did this, which seems to fix the menu cutoff:
|
This definitely works well for me. I would say add it to the wiki and close this out. |
Ok, I added it to the wiki... |
To hide horizontal scroll in Firefox 57.0 on Mac OS X (10.11.6) I used #tabbar {
overflow-x: hidden;
} |
In order for it to work in macOS, you must set "Show scroll bars: Always" in System Preferences, or use |
Do you have an idea how to make it show only on mouseover? |
Short description
Previous solution to hide scrollbar was found in #514, by adding code to userChrome.css, but this no longer works. I found one method, but maybe it can be improved?
Steps to reproduce
It works but the context menu gets cut off:
Is there a better method?
Environment
The text was updated successfully, but these errors were encountered: