-
-
Notifications
You must be signed in to change notification settings - Fork 2.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
fix: audit list window covered by tooltip and highlight #13373
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 8dbd586 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@@ -83,7 +83,7 @@ export class DevToolbarAuditListWindow extends HTMLElement { | |||
"Noto Color Emoji"; | |||
color: rgba(191, 193, 201, 1); | |||
position: fixed; | |||
z-index: 999999999; | |||
z-index: 2000000009; |
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.
Highlights have a z-index of 2000000000, tooltips have a z-index of 2000000001
Updated the z-index here to 2000000009 for rare cases where the audit list window is rendered in the same space as the dev toolbar, which has a z-index of 2000000010
I suspect the visibility of the dev toolbar would be higher than the audit list window.
CodSpeed Performance ReportMerging #13373 will not alter performanceComparing Summary
|
f4eb754
to
a6c9822
Compare
a063190
to
48ffd4a
Compare
a24fb15
to
8dbd586
Compare
Changes
This fixes pop-ups and highlights rendering over the audit list window.
Fixes #11114
Testing
Added e2e test.
Docs