| 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 |
|