Skip to content

Commit

Permalink
Maybe this one?
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmussen committed Apr 22, 2021
1 parent 9ff795e commit 4464ead
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@
opacity: 1;
transition: all 0.1s ease;
@include reduce-motion("transition");

// Show one appender at a time.
visibility: hidden;
transform: scale(0);
}
}

.block-editor-block-list__block.is-selected .block-list-appender .block-list-appender__toggle {
// Show one appender at a time.
.block-editor-inserter__toggle,
.block-list-appender__toggle {
visibility: hidden;
transform: scale(0);
}

.block-editor-block-list__block.is-selected .block-editor-inserter__toggle,
.block-editor-block-list__block.is-selected .block-list-appender__toggle {
visibility: visible;
transform: scale(1);
}
Expand Down

0 comments on commit 4464ead

Please sign in to comment.