Skip to content

Commit

Permalink
Fix issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmussen committed Sep 14, 2022
1 parent d829412 commit 849de8b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/block-editor/src/components/block-list/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@
}
}

// Hide the selection indicator on .block-editor-block-list__layout, else Safari will show it stacked.
.has-multi-selection &::selection {
background: transparent;
}

.block-editor-block-list__block.is-highlighted::after {
box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
outline: $border-width solid transparent;
Expand Down Expand Up @@ -129,7 +134,7 @@
// `unset` only when selected, it has to start out unset.
&.is-selected,
&.has-block-overlay,
&.is-multi-selected,
&.is-multi-selected:not(.is-partially-selected),
&.is-highlighted {
position: relative;
}
Expand Down

0 comments on commit 849de8b

Please sign in to comment.