Steps to reproduce:
(On Chrome 85.0.4183.121 (Official Build) (64-bit), Linux)
Expected result:
Help menu pops up.
Actual result:
Help menu pops up, but it is blurred along with the whole page.

Rustdoc must have recently changed its styles. It's applying blur to body, not just to the <section id=main>. @GuillaumeGomez can you warn docs.rs before making changes like this?
There are two possible solutions:
<body> and add it to <section>; add CSS for blurring section. Rustdoc's won't work because it only applies to top-level children of body.body.blur > :not(#help) {
filter: blur(8px);
-webkit-filter: blur(8px);
opacity: .7;
}
It's been like this for ages, no?
This was fixed by #1080
Most helpful comment
This was fixed by #1080