-
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
BlockSwitcher: Refactor to use Button layout properly #67502
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,15 +26,6 @@ | |
} | ||
} | ||
|
||
.block-editor-block-switcher__toggle-text { | ||
margin-left: $grid-unit-10; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unnecessary due to built-in Button styles. |
||
|
||
// Account for double label when show-text-buttons is set. | ||
.show-icon-labels & { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the cleanup! |
||
display: none; | ||
} | ||
Comment on lines
-33
to
-35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved to JS logic (see |
||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like there are more custom styles that can be removed, but out of scope for this PR. |
||
.components-button.block-editor-block-switcher__no-switcher-icon { | ||
display: flex; | ||
|
||
|
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.
This existing
title
implementation can show redundant tooltips not only inshowIconLabels
mode, but also for patterns. I will address this separately.