-
Notifications
You must be signed in to change notification settings - Fork 212
help menu for doc make the whole page blur #52
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
Thanks for reporting. But I am not sure when this occurs, can you give a link? |
go on this page https://docs.rs/keen/1.2.0/keen/ and press the key |
woah thanks for reporting, I have an addon replacing |
What is this addon ? 😄 And what is it for ? |
Ahh it's nothing related with rust. VimFx was replacing help content for me. This issue is caused by this CSS rules defined in rustdoc.css: body.blur > :not(#help) {
filter: blur(8px);
-webkit-filter: blur(8px);
opacity: .7;
} It is adding a blur filter to every child element of |
Why not using https://blog.guillaume-gomez.fr/articles/2016-09-16+Generating+doc+with+rustdoc+and+a+custom+theme |
Well actually docs.rs is not just extending css. It is adding some navigation and moving rustdoc content to div.rustdoc. You can see it in rustdoc.hbs. I don't think |
Can we just erase this rule:
by this one:
and erase the previous rule: http://stackoverflow.com/questions/15901030/reset-remove-css-styles-for-element-only This is ugly, no ? |
In fact that's the javascript script ! |
@Kerollmops your rule worked with a little bit workaround, thanks again! |
Great 👍 |
Closes: rust-lang#52 Thanks @Kerollmops for reporting and finding a workaround for this!
When pressing
?
the whole page is blur, a little error in the css I supposedThe text was updated successfully, but these errors were encountered: