@secretstache/wordpress-gutenberg 0.4.11 → 0.4.12
Sign up to get free protection for your applications and to get access to all the features.
- package/build/styles.css +14 -15
- package/package.json +1 -1
- package/src/styles/styles.scss +1 -1
package/build/styles.css
CHANGED
@@ -154,6 +154,20 @@
|
|
154
154
|
justify-content: center;
|
155
155
|
width: 24px;
|
156
156
|
height: 24px; }
|
157
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-add-new-child-btn {
|
158
|
+
display: flex;
|
159
|
+
margin: 20px auto !important;
|
160
|
+
align-items: center;
|
161
|
+
flex-direction: column;
|
162
|
+
height: 50px;
|
163
|
+
justify-content: center;
|
164
|
+
width: 100%;
|
165
|
+
user-select: text;
|
166
|
+
font-family: inherit;
|
167
|
+
font-size: 100%;
|
168
|
+
padding: 12px !important;
|
169
|
+
box-shadow: inset 0 0 0 1px #1e1e1e;
|
170
|
+
color: #1e1e1e; }
|
157
171
|
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container:has(.root-block-appender) {
|
158
172
|
margin-bottom: 3rem;
|
159
173
|
padding-bottom: 200px; }
|
@@ -253,21 +267,6 @@
|
|
253
267
|
.editor-sidebar .bc-spacing-range-control .components-base-control__help {
|
254
268
|
margin-left: -11px; }
|
255
269
|
|
256
|
-
.editor-sidebar .bc-add-new-child-btn {
|
257
|
-
display: flex;
|
258
|
-
margin: 20px auto !important;
|
259
|
-
align-items: center;
|
260
|
-
flex-direction: column;
|
261
|
-
height: 50px;
|
262
|
-
justify-content: center;
|
263
|
-
width: 100%;
|
264
|
-
user-select: text;
|
265
|
-
font-family: inherit;
|
266
|
-
font-size: 100%;
|
267
|
-
padding: 12px !important;
|
268
|
-
box-shadow: inset 0 0 0 1px #1e1e1e;
|
269
|
-
color: #1e1e1e; }
|
270
|
-
|
271
270
|
.block-editor-block-types-list > [role=presentation] {
|
272
271
|
justify-content: center; }
|
273
272
|
|
package/package.json
CHANGED
package/src/styles/styles.scss
CHANGED
@@ -36,6 +36,7 @@
|
|
36
36
|
@import "image-wrapper";
|
37
37
|
@import "root-block-appender";
|
38
38
|
@import "empty-block-appender";
|
39
|
+
@import "new-child-btn";
|
39
40
|
|
40
41
|
margin-bottom: 0;
|
41
42
|
padding-bottom: 0;
|
@@ -71,7 +72,6 @@
|
|
71
72
|
@import "media-picker";
|
72
73
|
@import "sortable-select";
|
73
74
|
@import "responsive-spacing";
|
74
|
-
@import "new-child-btn";
|
75
75
|
}
|
76
76
|
|
77
77
|
.block-editor-block-types-list > [role=presentation] {
|