-
Notifications
You must be signed in to change notification settings - Fork 1.7k
something recent broke RBE #553
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
Comments
We recently merged a couple CSS/JS changes, so it may be related to one of the recent PRs. Presumably #538 or #535. When you pull up the dev tools console does it mention any scripts or stylesheets returning a 404? CC: @sorin-davidoi I don't think I can replicate the issue. The code blocks seem to render normally on my machine. |
Yes, just took a look too but I can't tell what is broken. Can you post some screenshots of how it's supposed to look? |
Found the issue: document.querySelector("[href='ayu-highlight.css']").setAttribute('disabled', true); does not disable the stylesheet in Firefox, we need to do document.querySelector("[href='ayu-highlight.css']").disabled = true; Will open a PR. Sorry about that. |
We render rust by example with the latest mdbook, and today, something is messed up. Look at the code blocks here: https://rustbyexample.com/flow_control/match.html
They're dark black, and impossible to read.
I haven't dug into the details yet, but maybe someone else knows?
The text was updated successfully, but these errors were encountered: