@secretstache/wordpress-gutenberg 0.4.12 → 0.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/styles.css
CHANGED
@@ -180,9 +180,13 @@
|
|
180
180
|
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > p.wp-block:only-child {
|
181
181
|
margin: 2rem 0; }
|
182
182
|
|
183
|
-
.editor-sidebar .bc-url-input
|
184
|
-
width: 100%;
|
185
|
-
|
183
|
+
.editor-sidebar .bc-url-input {
|
184
|
+
min-width: 100%; }
|
185
|
+
.editor-sidebar .bc-url-input input {
|
186
|
+
width: 100%;
|
187
|
+
border: 1px solid #949494; }
|
188
|
+
.editor-sidebar .bc-url-input__suggestions {
|
189
|
+
max-width: 245px; }
|
186
190
|
|
187
191
|
.editor-sidebar .components-base-control .block-editor-link-control .block-editor-url-input {
|
188
192
|
margin-top: 0; }
|
package/package.json
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
// Backward compatibility
|
2
2
|
// TODO: remove when the custom LinkControl will be removed
|
3
3
|
.bc-url-input {
|
4
|
+
min-width: 100%;
|
5
|
+
|
4
6
|
input {
|
5
7
|
width: 100%;
|
6
8
|
border: 1px solid #949494;
|
7
9
|
}
|
10
|
+
|
11
|
+
&__suggestions {
|
12
|
+
max-width: 245px;
|
13
|
+
}
|
8
14
|
}
|
9
15
|
|
10
16
|
// if the LinkControl is placed inside the BaseControl
|