@secretstache/wordpress-gutenberg 0.4.2 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- package/build/styles.css +6 -3
- package/package.json +1 -1
- package/src/styles/styles.scss +9 -5
package/build/styles.css
CHANGED
@@ -7,8 +7,8 @@
|
|
7
7
|
.block-editor__container .editor-visual-editor.is-resizable + .edit-post-layout__metaboxes {
|
8
8
|
display: none; }
|
9
9
|
.block-editor__container .editor-visual-editor .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper {
|
10
|
-
margin-top: 10px;
|
11
|
-
margin-bottom: 10px; }
|
10
|
+
margin-top: 10px !important;
|
11
|
+
margin-bottom: 10px !important; }
|
12
12
|
.block-editor__container .editor-visual-editor .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper h1.editor-post-title {
|
13
13
|
margin: 0;
|
14
14
|
border-bottom: 1px dashed #ddd;
|
@@ -269,5 +269,8 @@
|
|
269
269
|
box-shadow: inset 0 0 0 1px #1e1e1e;
|
270
270
|
color: #1e1e1e; }
|
271
271
|
|
272
|
-
.block-editor-
|
272
|
+
.block-editor__container .block-editor-inserter__insertable-blocks-at-selection + .block-editor-inserter__all-blocks {
|
273
|
+
display: none; }
|
274
|
+
|
275
|
+
.block-editor__container .block-editor-block-types-list > [role=presentation] {
|
273
276
|
justify-content: center; }
|
package/package.json
CHANGED
package/src/styles/styles.scss
CHANGED
@@ -21,8 +21,8 @@
|
|
21
21
|
|
22
22
|
.editor-styles-wrapper {
|
23
23
|
.edit-post-visual-editor__post-title-wrapper {
|
24
|
-
margin-top: 10px;
|
25
|
-
margin-bottom: 10px;
|
24
|
+
margin-top: 10px !important;
|
25
|
+
margin-bottom: 10px !important;
|
26
26
|
|
27
27
|
h1.editor-post-title {
|
28
28
|
margin: 0;
|
@@ -78,8 +78,12 @@
|
|
78
78
|
@import "responsive-spacing";
|
79
79
|
@import "new-child-btn";
|
80
80
|
}
|
81
|
-
}
|
82
81
|
|
83
|
-
.block-editor-
|
84
|
-
|
82
|
+
.block-editor-inserter__insertable-blocks-at-selection + .block-editor-inserter__all-blocks {
|
83
|
+
display: none;
|
84
|
+
}
|
85
|
+
|
86
|
+
.block-editor-block-types-list > [role=presentation] {
|
87
|
+
justify-content: center;
|
88
|
+
}
|
85
89
|
}
|