-
Notifications
You must be signed in to change notification settings - Fork 4.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
Fix draghandle color #9948
Fix draghandle color #9948
Conversation
Fixes design nitpick from #9569 (comment).
@@ -93,6 +93,7 @@ | |||
.editor-block-mover__control-drag-handle { | |||
cursor: move; // Fallback for IE/Edge < 14 | |||
cursor: grab; | |||
fill: currentColor; |
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.
Some people asked about "dark theme" support for the drag handle, will this fix it?
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.
Can you clarify "dark theme" support? Because there's one issue for providing an actual dark theme for Gutenberg.
But yes, if paired with add_theme_support( 'dark-editor-style' ); and a dark editor style, this handle would be inverted.
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.
Yes, I believe it's about add_theme_support( 'dark-editor-style' );
I just saw this here https://wordpress.slack.com/archives/C02QB2JS7/p1537090223000100
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.
LGTM 👍
Fixes design nitpick from #9569 (comment).
Fixes design nitpick from #9569 (comment).
Before:
After: