From ac5549fbc5bc3ed66d55857ce7fbb653d2492323 Mon Sep 17 00:00:00 2001 From: jasmussen Date: Mon, 11 Jun 2018 14:35:07 +0200 Subject: [PATCH] Get tab working again. This needs a little testing, but it seems solid to me. --- editor/components/block-list/style.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/editor/components/block-list/style.scss b/editor/components/block-list/style.scss index b27328a44ad90d..3073541769869b 100644 --- a/editor/components/block-list/style.scss +++ b/editor/components/block-list/style.scss @@ -706,7 +706,13 @@ // Don't show the sibling inserter before the selected block. .edit-post-layout:not( .has-fixed-toolbar ) .is-selected .editor-block-list__insertion-point-inserter { - display: none; + opacity: 0; + pointer-events: none; + + &.is-visible { + opacity: 1; + pointer-events: auto; + } } .editor-block-list__block {