Try adding a subtle animation to innerblock selection when padding is added. #16817
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When it's necessary to prevent overlap, #14961 adds some additional padding to
.editor-inner-blocks
. This additional padding is currently only provided for the Group block, and for the Columns block.In that issue, we discussed adopting a very subtle
scale()
animation so that the addition of that extra space wasn't so jarring. This PR implements that animation.Before:
After: (The GIF is slowed down to make the animation more visible)
This seems pretty subtle, and helps make this smoother by just a little bit. The only issue I'm seeing is that it is unnecessarily applied to placeholders as well:
I don't think there's a way to turn this off, without the addition of a
has-placeholder
class on the parent block to hook into. This seemed like it might be a possibility during an earlier discussion.