-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Missing scrollbar on latest Debian's Firefox ESR #3346
Comments
Thanks for the screenshot. My guess is that the scrollbar is not the problem. The problem is that there's likely some error in the console that will hinder the JavaScript from mounting the sidebar. Please check the console and see whether there's anything there that helps to understand the source of error. |
You are correct. The console error message is:
|
Thanks for checking the console. I'm quite astonished that this throws in Firefox because
Testing it in Firefox 94 in the console works nicely BTW: document.querySelector(":not(td.code) > .highlight, .highlighttable")
// => <div class="highlight">...</div> |
The problem seems to be the I.e. a plain |
Okay, one final idea – we might split it into the super ugly |
Yes, indeed it works! |
Then try to patch the |
After the following command, everything seems fine: sed 's/:not(td.code)/:not(td):not(.code)/' -i assets/javascripts/bundle.*.min.js |
Ok great, we can integrate this into the code base, as it's a simple fix. |
Fixed in dea3ad8. |
Released as part of 8.1.1. |
Contribution guidelines
I've found a bug and checked that ...
mkdocs
orreadthedocs
themescustom_dir
,extra_javascript
andextra_css
Description
On the latest Debian stable with Firefox ESR 78.14, the sidebar doesn't show any scrollbars.
This means that users can't see all of our menu and can't navigate properly.
Expected behaviour
A scrollbar should appear.
Actual behaviour
A scrollbar doesn't appear.
Steps to reproduce
Package versions
3.9.9
1.2.3
8.1.0
Configuration
System information
Attaching a screenshot where you can see that the scrollbar doesn't exist.
Note that in the screenshot, a second issue appears, that rarely happens: when scrolling up with the mouse "too much", something malfunctions and the bottom bar gets scrolled. I should probably file a different issue for this, but I thought I'd upload the screenshot now as it's rare to reproduce it...
The text was updated successfully, but these errors were encountered: