PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 2.0.0
GenerateBlocks v2.0.0
trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.3.0
generateblocks / src / extend / inspector-control / controls / layout / components / editor.scss
generateblocks / src / extend / inspector-control / controls / layout / components Last commit date
Display.js 2 years ago FlexDirection.js 3 years ago LayoutCSS.js 3 years ago LayoutControl.js 3 years ago ThemeWidth.js 2 years ago ZIndex.js 3 years ago editor.scss 3 years ago
editor.scss
69 lines
1 .gblocks-flex-direction-alignItems-column svg {
2 transform: rotate(-90deg) scale(-1, 1);
3 }
4
5 .gblocks-flex-direction-justifyContent-column svg {
6 transform: rotate(90deg);
7 }
8
9 .gblocks-flex-direction-alignItems-column-reverse svg {
10 transform: rotate(-90deg);
11 }
12
13 .gblocks-flex-direction-justifyContent-column-reverse svg {
14 transform: rotate(90deg) scale(-1, 1);
15 }
16
17 .gblocks-flex-direction-alignItems-row-reverse svg,
18 .gblocks-flex-direction-justifyContent-row-reverse svg {
19 transform: scale(-1, 1);
20 }
21
22
23 .gblocks-flex-controls {
24 & > .components-base-control__field {
25 display: flex;
26 flex-wrap: wrap;
27 justify-content: space-between;
28 }
29
30 .gblocks-flex-controls-inner {
31 flex-basis: 100%;
32 display: flex;
33
34 & > .components-base-control {
35 margin-bottom: 0;
36
37 &:nth-child(1) {
38 margin-right: 1px;
39 flex-basis: 25%;
40 }
41
42 &:nth-child(2) {
43 margin-right: 1px;
44 flex-basis: 25%;
45 }
46 }
47
48 p {
49 margin-bottom: 0;
50 }
51
52 .gblocks-flex-basis-wrapper {
53 position: relative;
54 flex-basis: 50%;
55
56 .components-gblocks-units-control-header__units {
57 position: absolute;
58 right: 0;
59 top: 5px;
60 }
61 }
62 }
63 }
64
65 .gblocks-layout-gap {
66 display: flex;
67 gap: 5px;
68 }
69