-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Tooltip overflow #90233
Tooltip overflow #90233
Conversation
Some changes occurred in HTML/CSS/JS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r=me after fixing the selector. It might not be necessary, but it seems that removing the *
is preferred by MDN and Firefox devtools. When I tried to enter .docblock > *:not(.information)
into the devtools before, it changed it to .docblock > :not(.information)
.
@@ -528,7 +528,7 @@ nav.sub { | |||
position: relative; | |||
} | |||
|
|||
.docblock > * { | |||
.docblock > *:not(.information) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be the following:
.docblock > *:not(.information) { | |
.docblock > :not(.information) { |
See https://developer.mozilla.org/en-US/docs/Web/CSS/:not#examples for more.
And also: please squash your commits :) Adding the test as part of the fix commit makes it easier to understand the change later on. |
Ah right, I forgot we disagreed on this point. Well, since you're the reviewer I'll do it. ;) |
df57514
to
345519b
Compare
@bors: r=camelid rollup |
📌 Commit 345519b has been approved by |
…camelid Tooltip overflow Fixes rust-lang#89185. r? `@camelid`
…laumeGomez Rollup of 5 pull requests Successful merges: - rust-lang#90017 (Add a couple tests for normalize under binder issues) - rust-lang#90079 (enable `i8mm` target feature on aarch64 and arm) - rust-lang#90233 (Tooltip overflow) - rust-lang#90257 (Changed slice.swap documentation for better readability) - rust-lang#90261 (Move back to linux builder on try builds) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Fixes #89185.
r? @camelid