@secretstache/wordpress-gutenberg 0.3.15 → 0.3.16
Sign up to get free protection for your applications and to get access to all the features.
package/build/styles.css
CHANGED
@@ -146,6 +146,9 @@
|
|
146
146
|
box-shadow: inset 0 0 0 1px #1e1e1e;
|
147
147
|
color: #1e1e1e; }
|
148
148
|
|
149
|
+
.block-editor__container .editor-visual-editor.is-resizable .root-block-appender {
|
150
|
+
display: none; }
|
151
|
+
|
149
152
|
.block-editor__container .root-block-appender {
|
150
153
|
position: absolute;
|
151
154
|
bottom: 30px;
|
package/package.json
CHANGED
@@ -17,16 +17,19 @@ export const setRootBlock = (rootBlockName, initAppender = true, appenderTooltip
|
|
17
17
|
'blocks.registerBlockType',
|
18
18
|
'ssm/with-root-block',
|
19
19
|
(settings, name) => {
|
20
|
-
|
21
|
-
|
20
|
+
const isRootBlock = name === rootBlockName;
|
21
|
+
const isBaseBlock = name === 'core/block';
|
22
|
+
const hasAncestor = !!settings?.ancestor;
|
23
|
+
|
24
|
+
if (!isRootBlock && !isBaseBlock && !hasAncestor) {
|
22
25
|
settings.ancestor = [rootBlockName];
|
23
26
|
}
|
24
27
|
|
25
28
|
return settings;
|
26
|
-
}
|
29
|
+
},
|
27
30
|
);
|
28
31
|
|
29
32
|
if (initAppender) {
|
30
33
|
initRootBlockAppender(rootBlockName, appenderTooltipText);
|
31
34
|
}
|
32
|
-
}
|
35
|
+
};
|