From ba4eb9ad519d9b0389a96af4fdc152e17505f7cc Mon Sep 17 00:00:00 2001 From: jasmussen Date: Thu, 19 Aug 2021 11:14:13 +0200 Subject: [PATCH] Hide subsequent multi selected blocks. --- .../block-editor/src/components/block-draggable/style.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/block-editor/src/components/block-draggable/style.scss b/packages/block-editor/src/components/block-draggable/style.scss index 03ecec53945ba1..fcdd56d8a77211 100644 --- a/packages/block-editor/src/components/block-draggable/style.scss +++ b/packages/block-editor/src/components/block-draggable/style.scss @@ -56,6 +56,11 @@ // lest the block might affect your drag operation. pointer-events: none !important; + // Hide subsequent multiselected blocks, as they can become rather tall. + &.is-multi-selected + .is-multi-selected { + display: none !important; + } + // Hide the multi selection indicator when dragging. &::selection { background: transparent !important;