Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@
display: inline-flex;
height: 2px;
position: absolute;
right: 0;
top: $grid-unit-20 - $border-width;
width: 2px;
}
Expand Down
10 changes: 10 additions & 0 deletions packages/block-editor/src/components/block-tools/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,11 @@
content: "";
}

// Hide the dot divider since the parent selector is visually separated.
&::after {
display: none;
}

.block-editor-block-parent-selector__button {
border: $border-width solid $gray-900;
padding-right: 6px;
Expand All @@ -186,6 +191,11 @@
position: relative;
left: auto;
margin-left: -$border-width;

// Show the dot divider since the parent selector is inline.
&::after {
display: inline-flex;
}
}

.block-editor-block-mover__move-button-container,
Expand Down
Loading