-
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
Add alignment buttons for embed #840
Conversation
Love it! Works great! 👍 👍 |
I notice that the toolbar position is a bit strange when it's "wide", but same for image. Let's address in a separate issue. |
This is being addressed largely in #812 |
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.
Worth nothing that if we do #830 These controls could be factorized.
LGTM 👍
@@ -50,7 +50,7 @@ registerBlock( 'core/image', { | |||
{ | |||
icon: 'align-center', | |||
title: wp.i18n.__( 'Align center' ), | |||
isActive: ( { align } ) => 'center' === align, | |||
isActive: ( { align } ) => ! align || 'center' === align, |
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.
No align isn't same as center aligned, is 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.
Maybe I'm confusing this... It has the same style.
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.
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.
Probably would be good to get #812 in, before fixing centering issues.
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'm fine with reverting that part.
Shamelessly copied from the image block. See #729.