PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.7.0
Block Animations, Motion & Scroll Effects – Ghost Kit v3.7.0
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 / components / active-indicator / editor.scss

editor.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.7.0, at gutenberg/components/active-indicator/editor.scss

52 lines 974 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "../../variables";
2
3 .ghostkit-component-active-indicator {
4 width: 7px;
5 height: 7px;
6 background-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
7 border-radius: 7px;
8
9 // Panel toggle.
10 .components-panel__body-toggle & {
11 position: absolute;
12 top: 50%;
13 right: 40px;
14 transform: translateY(-50%);
15 }
16
17 // Responsive tabs.
18 .ghostkit-control-tabs-icon & {
19 position: absolute;
20 top: -7px;
21 left: 50%;
22 width: 3px;
23 height: 3px;
24 transform: translateX(-50%);
25 }
26
27 // Responsive Toggle.
28 .ghostkit-control-responsive-toggle & {
29 position: absolute;
30 top: 0;
31 left: 75%;
32 width: 5px;
33 height: 5px;
34 outline: 2px solid #fff;
35 }
36
37 // Element State Toggle.
38 .ghostkit-control-element-state-toggle & {
39 position: absolute;
40 top: 0;
41 left: 12px;
42 width: 5px;
43 height: 5px;
44 outline: 2px solid #fff;
45 }
46
47 .is-active > .ghostkit-control-responsive-toggle-icon & {
48 background-color: #fff;
49 outline: 2px solid #000;
50 }
51 }
52