Skip to content

Commit

Permalink
Address remaining feedback and style fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tellthemachines committed Sep 1, 2020
1 parent 84c9811 commit 52785f0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/dropdown-menu/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function DropdownMenu( {
aria-haspopup="true"
aria-expanded={ isOpen }
label={ label }
showTooltip={ toggleProps?.showTooltip ?? true }
showTooltip={ !! toggleProps?.showTooltip }
>
{ mergedToggleProps.children }
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,11 @@ function HeaderToolbar() {
choices={ [
{
value: 'edit',
label: <>{ __( 'Edit' ) }</>,
label: __( 'Edit' ),
},
{
value: 'select',
label: <>{ __( 'Select' ) }</>,
label: __( 'Select' ),
},
] }
/>
Expand Down
5 changes: 5 additions & 0 deletions packages/edit-post/src/components/header/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,13 @@
}
.components-dropdown-menu__toggle {
margin-left: $grid-unit;
padding-left: $grid-unit;
padding-right: $grid-unit;

@include break-small {
margin-left: $grid-unit-15;
padding-left: $grid-unit-15;
padding-right: $grid-unit-15;
}
}
// The inserter has a custom label, different from its aria-label, so we don't want to display both.
Expand All @@ -199,6 +203,7 @@
}

.edit-post-header__dropdown {
.components-menu-item__button.components-menu-item__button,
.components-button.editor-history__undo,
.components-button.editor-history__redo,
.table-of-contents .components-button,
Expand Down

0 comments on commit 52785f0

Please sign in to comment.