PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / extend / display / editor.scss

editor.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.3, at gutenberg/extend/display/editor.scss

29 lines 694 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "../../variables";
2
3 .ghostkit-tools-panel-display {
4 grid-column: 1/-1;
5 }
6
7 // Classes for visual styling hidden blocks
8 @each $breakpoint in map-keys($grid-breakpoints) {
9 @include media-breakpoint-down($breakpoint) {
10 $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
11
12 .ghostkit-d#{$infix}-none {
13 filter: opacity(0.4) saturate(0);
14
15 &::after {
16 background-image: linear-gradient(45deg, rgba(0, 0, 0, 15%) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 15%) 50%, rgba(0, 0, 0, 15%) 75%, transparent 75%, transparent);
17 background-size: 6px 6px;
18 }
19 }
20 .ghostkit-d#{$infix}-block {
21 filter: none;
22
23 &::after {
24 background-image: none;
25 }
26 }
27 }
28 }
29