-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Data views: Fix actions scrim in list layout #64696
Conversation
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Size Change: +75 B (0%) Total Size: 1.77 MB
ℹ️ View Unchanged
|
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 spotted that too. It's because the buttons are hidden using absolute positioning, and repositioned to be visible when the row is hovered. But for some reason the hover class is removed when you cursor out of the browser. If you have a moment it would be good to open a separate issue. cc @oandregal for awareness, iirc you worked on this. |
Co-authored-by: jameskoster <[email protected]> Co-authored-by: jasmussen <[email protected]>
In data views list layout, actions are positioned absolutely and there's a subtle shadow to 'truncate' titles when the actions appear on hover/focus-within:
There is currently a bug with the implementation. When you open the ellipsis menu, the hover styles are not applied to the row, and the shadow becomes visible independently:
Note: You may have to increase screen brightness to see the issue.
This PR fixes this by ensuring the hover styles remain applied when the ellipsis menu is opened.
Testing Instructions