@secretstache/wordpress-gutenberg 0.4.13 → 0.4.14
Sign up to get free protection for your applications and to get access to all the features.
- package/build/styles.css +53 -44
- package/package.json +1 -1
- package/src/styles/styles.scss +5 -1
package/build/styles.css
CHANGED
@@ -20,50 +20,6 @@
|
|
20
20
|
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container {
|
21
21
|
margin-bottom: 0;
|
22
22
|
padding-bottom: 0; }
|
23
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper {
|
24
|
-
position: relative;
|
25
|
-
height: auto;
|
26
|
-
align-self: start; }
|
27
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__actions {
|
28
|
-
display: none;
|
29
|
-
position: absolute;
|
30
|
-
top: 0;
|
31
|
-
left: 0;
|
32
|
-
right: 0;
|
33
|
-
bottom: 0;
|
34
|
-
flex-wrap: nowrap;
|
35
|
-
justify-content: center;
|
36
|
-
align-items: center;
|
37
|
-
gap: 20px;
|
38
|
-
padding: 5px 15px;
|
39
|
-
z-index: 20; }
|
40
|
-
@media screen and (max-width: 768px) {
|
41
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__actions {
|
42
|
-
gap: 15px; } }
|
43
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__btn {
|
44
|
-
font-size: 14px !important;
|
45
|
-
backdrop-filter: blur(16px) saturate(180%);
|
46
|
-
background: rgba(255, 255, 255, 0.75);
|
47
|
-
flex-grow: 1;
|
48
|
-
justify-content: center;
|
49
|
-
max-width: 130px; }
|
50
|
-
@media screen and (max-width: 768px) {
|
51
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__btn {
|
52
|
-
padding: 5px; } }
|
53
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__overlay {
|
54
|
-
display: none;
|
55
|
-
position: absolute;
|
56
|
-
top: 0;
|
57
|
-
left: 0;
|
58
|
-
right: 0;
|
59
|
-
bottom: 0;
|
60
|
-
z-index: 10;
|
61
|
-
background: rgba(255, 255, 255, 0.3);
|
62
|
-
backdrop-filter: blur(3px); }
|
63
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper:hover .bc-image-wrapper__actions {
|
64
|
-
display: flex; }
|
65
|
-
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper:hover .bc-image-wrapper__overlay {
|
66
|
-
display: block; }
|
67
23
|
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .root-block-appender {
|
68
24
|
position: absolute;
|
69
25
|
bottom: 30px;
|
@@ -271,6 +227,59 @@
|
|
271
227
|
.editor-sidebar .bc-spacing-range-control .components-base-control__help {
|
272
228
|
margin-left: -11px; }
|
273
229
|
|
230
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper,
|
231
|
+
.editor-sidebar .bc-image-wrapper {
|
232
|
+
position: relative;
|
233
|
+
height: auto;
|
234
|
+
align-self: start; }
|
235
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__actions,
|
236
|
+
.editor-sidebar .bc-image-wrapper__actions {
|
237
|
+
display: none;
|
238
|
+
position: absolute;
|
239
|
+
top: 0;
|
240
|
+
left: 0;
|
241
|
+
right: 0;
|
242
|
+
bottom: 0;
|
243
|
+
flex-wrap: nowrap;
|
244
|
+
justify-content: center;
|
245
|
+
align-items: center;
|
246
|
+
gap: 20px;
|
247
|
+
padding: 5px 15px;
|
248
|
+
z-index: 20; }
|
249
|
+
@media screen and (max-width: 768px) {
|
250
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__actions,
|
251
|
+
.editor-sidebar .bc-image-wrapper__actions {
|
252
|
+
gap: 15px; } }
|
253
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__btn,
|
254
|
+
.editor-sidebar .bc-image-wrapper__btn {
|
255
|
+
font-size: 14px !important;
|
256
|
+
backdrop-filter: blur(16px) saturate(180%);
|
257
|
+
background: rgba(255, 255, 255, 0.75);
|
258
|
+
flex-grow: 1;
|
259
|
+
justify-content: center;
|
260
|
+
max-width: 130px; }
|
261
|
+
@media screen and (max-width: 768px) {
|
262
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__btn,
|
263
|
+
.editor-sidebar .bc-image-wrapper__btn {
|
264
|
+
padding: 5px; } }
|
265
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper__overlay,
|
266
|
+
.editor-sidebar .bc-image-wrapper__overlay {
|
267
|
+
display: none;
|
268
|
+
position: absolute;
|
269
|
+
top: 0;
|
270
|
+
left: 0;
|
271
|
+
right: 0;
|
272
|
+
bottom: 0;
|
273
|
+
z-index: 10;
|
274
|
+
background: rgba(255, 255, 255, 0.3);
|
275
|
+
backdrop-filter: blur(3px); }
|
276
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper:hover .bc-image-wrapper__actions,
|
277
|
+
.editor-sidebar .bc-image-wrapper:hover .bc-image-wrapper__actions {
|
278
|
+
display: flex; }
|
279
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .bc-image-wrapper:hover .bc-image-wrapper__overlay,
|
280
|
+
.editor-sidebar .bc-image-wrapper:hover .bc-image-wrapper__overlay {
|
281
|
+
display: block; }
|
282
|
+
|
274
283
|
.block-editor-block-types-list > [role=presentation] {
|
275
284
|
justify-content: center; }
|
276
285
|
|
package/package.json
CHANGED
package/src/styles/styles.scss
CHANGED
@@ -33,7 +33,6 @@
|
|
33
33
|
}
|
34
34
|
|
35
35
|
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container {
|
36
|
-
@import "image-wrapper";
|
37
36
|
@import "root-block-appender";
|
38
37
|
@import "empty-block-appender";
|
39
38
|
@import "new-child-btn";
|
@@ -74,6 +73,11 @@
|
|
74
73
|
@import "responsive-spacing";
|
75
74
|
}
|
76
75
|
|
76
|
+
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container,
|
77
|
+
.editor-sidebar {
|
78
|
+
@import "image-wrapper";
|
79
|
+
}
|
80
|
+
|
77
81
|
.block-editor-block-types-list > [role=presentation] {
|
78
82
|
justify-content: center;
|
79
83
|
}
|