@wordpress/edit-widgets 6.32.0 → 6.32.1-next.b8c8708f3.0

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.
Files changed (202) hide show
  1. package/build/blocks/widget-area/block.json +26 -0
  2. package/build/blocks/widget-area/edit/index.js +94 -87
  3. package/build/blocks/widget-area/edit/index.js.map +7 -1
  4. package/build/blocks/widget-area/edit/inner-blocks.js +68 -50
  5. package/build/blocks/widget-area/edit/inner-blocks.js.map +7 -1
  6. package/build/blocks/widget-area/edit/use-is-dragging-within.js +34 -40
  7. package/build/blocks/widget-area/edit/use-is-dragging-within.js.map +7 -1
  8. package/build/blocks/widget-area/index.js +49 -52
  9. package/build/blocks/widget-area/index.js.map +7 -1
  10. package/build/components/error-boundary/index.js +49 -51
  11. package/build/components/error-boundary/index.js.map +7 -1
  12. package/build/components/header/document-tools/index.js +104 -74
  13. package/build/components/header/document-tools/index.js.map +7 -1
  14. package/build/components/header/index.js +81 -62
  15. package/build/components/header/index.js.map +7 -1
  16. package/build/components/header/undo-redo/redo.js +50 -38
  17. package/build/components/header/undo-redo/redo.js.map +7 -1
  18. package/build/components/header/undo-redo/undo.js +49 -37
  19. package/build/components/header/undo-redo/undo.js.map +7 -1
  20. package/build/components/keyboard-shortcut-help-modal/config.js +74 -71
  21. package/build/components/keyboard-shortcut-help-modal/config.js.map +7 -1
  22. package/build/components/keyboard-shortcut-help-modal/dynamic-shortcut.js +61 -44
  23. package/build/components/keyboard-shortcut-help-modal/dynamic-shortcut.js.map +7 -1
  24. package/build/components/keyboard-shortcut-help-modal/index.js +154 -103
  25. package/build/components/keyboard-shortcut-help-modal/index.js.map +7 -1
  26. package/build/components/keyboard-shortcut-help-modal/shortcut.js +74 -56
  27. package/build/components/keyboard-shortcut-help-modal/shortcut.js.map +7 -1
  28. package/build/components/keyboard-shortcuts/index.js +89 -82
  29. package/build/components/keyboard-shortcuts/index.js.map +7 -1
  30. package/build/components/layout/index.js +75 -49
  31. package/build/components/layout/index.js.map +7 -1
  32. package/build/components/layout/interface.js +89 -75
  33. package/build/components/layout/interface.js.map +7 -1
  34. package/build/components/layout/unsaved-changes-warning.js +35 -42
  35. package/build/components/layout/unsaved-changes-warning.js.map +7 -1
  36. package/build/components/more-menu/index.js +189 -108
  37. package/build/components/more-menu/index.js.map +7 -1
  38. package/build/components/more-menu/tools-more-menu-group.js +29 -23
  39. package/build/components/more-menu/tools-more-menu-group.js.map +7 -1
  40. package/build/components/notices/index.js +62 -48
  41. package/build/components/notices/index.js.map +7 -1
  42. package/build/components/save-button/index.js +55 -47
  43. package/build/components/save-button/index.js.map +7 -1
  44. package/build/components/secondary-sidebar/index.js +41 -34
  45. package/build/components/secondary-sidebar/index.js.map +7 -1
  46. package/build/components/secondary-sidebar/inserter-sidebar.js +55 -46
  47. package/build/components/secondary-sidebar/inserter-sidebar.js.map +7 -1
  48. package/build/components/secondary-sidebar/list-view-sidebar.js +76 -67
  49. package/build/components/secondary-sidebar/list-view-sidebar.js.map +7 -1
  50. package/build/components/sidebar/index.js +149 -138
  51. package/build/components/sidebar/index.js.map +7 -1
  52. package/build/components/sidebar/widget-areas.js +73 -57
  53. package/build/components/sidebar/widget-areas.js.map +7 -1
  54. package/build/components/welcome-guide/index.js +182 -137
  55. package/build/components/welcome-guide/index.js.map +7 -1
  56. package/build/components/widget-areas-block-editor-content/index.js +64 -43
  57. package/build/components/widget-areas-block-editor-content/index.js.map +7 -1
  58. package/build/components/widget-areas-block-editor-provider/index.js +115 -92
  59. package/build/components/widget-areas-block-editor-provider/index.js.map +7 -1
  60. package/build/constants.js +30 -8
  61. package/build/constants.js.map +7 -1
  62. package/build/filters/index.js +3 -5
  63. package/build/filters/index.js.map +7 -1
  64. package/build/filters/move-to-widget-area.js +52 -59
  65. package/build/filters/move-to-widget-area.js.map +7 -1
  66. package/build/filters/replace-media-upload.js +9 -11
  67. package/build/filters/replace-media-upload.js.map +7 -1
  68. package/build/hooks/use-last-selected-widget-area.js +38 -44
  69. package/build/hooks/use-last-selected-widget-area.js.map +7 -1
  70. package/build/hooks/use-widget-library-insertion-point.js +60 -55
  71. package/build/hooks/use-widget-library-insertion-point.js.map +7 -1
  72. package/build/index.js +86 -93
  73. package/build/index.js.map +7 -1
  74. package/build/lock-unlock.js +31 -15
  75. package/build/lock-unlock.js.map +7 -1
  76. package/build/store/actions.js +181 -313
  77. package/build/store/actions.js.map +7 -1
  78. package/build/store/constants.js +27 -10
  79. package/build/store/constants.js.map +7 -1
  80. package/build/store/index.js +51 -51
  81. package/build/store/index.js.map +7 -1
  82. package/build/store/private-selectors.js +28 -7
  83. package/build/store/private-selectors.js.map +7 -1
  84. package/build/store/reducer.js +65 -118
  85. package/build/store/reducer.js.map +7 -1
  86. package/build/store/resolvers.js +64 -63
  87. package/build/store/resolvers.js.map +7 -1
  88. package/build/store/selectors.js +194 -231
  89. package/build/store/selectors.js.map +7 -1
  90. package/build/store/transformers.js +47 -41
  91. package/build/store/transformers.js.map +7 -1
  92. package/build/store/utils.js +47 -70
  93. package/build/store/utils.js.map +7 -1
  94. package/build-module/blocks/widget-area/block.json +26 -0
  95. package/build-module/blocks/widget-area/edit/index.js +63 -75
  96. package/build-module/blocks/widget-area/edit/index.js.map +7 -1
  97. package/build-module/blocks/widget-area/edit/inner-blocks.js +38 -41
  98. package/build-module/blocks/widget-area/edit/inner-blocks.js.map +7 -1
  99. package/build-module/blocks/widget-area/edit/use-is-dragging-within.js +14 -33
  100. package/build-module/blocks/widget-area/edit/use-is-dragging-within.js.map +7 -1
  101. package/build-module/blocks/widget-area/index.js +14 -46
  102. package/build-module/blocks/widget-area/index.js.map +7 -1
  103. package/build-module/components/error-boundary/index.js +30 -43
  104. package/build-module/components/error-boundary/index.js.map +7 -1
  105. package/build-module/components/header/document-tools/index.js +75 -66
  106. package/build-module/components/header/document-tools/index.js.map +7 -1
  107. package/build-module/components/header/index.js +52 -54
  108. package/build-module/components/header/index.js.map +7 -1
  109. package/build-module/components/header/undo-redo/redo.js +32 -32
  110. package/build-module/components/header/undo-redo/redo.js.map +7 -1
  111. package/build-module/components/header/undo-redo/undo.js +31 -31
  112. package/build-module/components/header/undo-redo/undo.js.map +7 -1
  113. package/build-module/components/keyboard-shortcut-help-modal/config.js +62 -75
  114. package/build-module/components/keyboard-shortcut-help-modal/config.js.map +7 -1
  115. package/build-module/components/keyboard-shortcut-help-modal/dynamic-shortcut.js +33 -37
  116. package/build-module/components/keyboard-shortcut-help-modal/dynamic-shortcut.js.map +7 -1
  117. package/build-module/components/keyboard-shortcut-help-modal/index.js +130 -97
  118. package/build-module/components/keyboard-shortcut-help-modal/index.js.map +7 -1
  119. package/build-module/components/keyboard-shortcut-help-modal/shortcut.js +56 -50
  120. package/build-module/components/keyboard-shortcut-help-modal/shortcut.js.map +7 -1
  121. package/build-module/components/keyboard-shortcuts/index.js +73 -75
  122. package/build-module/components/keyboard-shortcuts/index.js.map +7 -1
  123. package/build-module/components/layout/index.js +46 -41
  124. package/build-module/components/layout/index.js.map +7 -1
  125. package/build-module/components/layout/interface.js +63 -66
  126. package/build-module/components/layout/interface.js.map +7 -1
  127. package/build-module/components/layout/unsaved-changes-warning.js +17 -37
  128. package/build-module/components/layout/unsaved-changes-warning.js.map +7 -1
  129. package/build-module/components/more-menu/index.js +167 -102
  130. package/build-module/components/more-menu/index.js.map +7 -1
  131. package/build-module/components/more-menu/tools-more-menu-group.js +11 -17
  132. package/build-module/components/more-menu/tools-more-menu-group.js.map +7 -1
  133. package/build-module/components/notices/index.js +43 -42
  134. package/build-module/components/notices/index.js.map +7 -1
  135. package/build-module/components/save-button/index.js +37 -41
  136. package/build-module/components/save-button/index.js.map +7 -1
  137. package/build-module/components/secondary-sidebar/index.js +14 -27
  138. package/build-module/components/secondary-sidebar/index.js.map +7 -1
  139. package/build-module/components/secondary-sidebar/inserter-sidebar.js +26 -38
  140. package/build-module/components/secondary-sidebar/inserter-sidebar.js.map +7 -1
  141. package/build-module/components/secondary-sidebar/list-view-sidebar.js +57 -60
  142. package/build-module/components/secondary-sidebar/list-view-sidebar.js.map +7 -1
  143. package/build-module/components/sidebar/index.js +129 -127
  144. package/build-module/components/sidebar/index.js.map +7 -1
  145. package/build-module/components/sidebar/widget-areas.js +53 -49
  146. package/build-module/components/sidebar/widget-areas.js.map +7 -1
  147. package/build-module/components/welcome-guide/index.js +165 -132
  148. package/build-module/components/welcome-guide/index.js.map +7 -1
  149. package/build-module/components/widget-areas-block-editor-content/index.js +43 -36
  150. package/build-module/components/widget-areas-block-editor-content/index.js.map +7 -1
  151. package/build-module/components/widget-areas-block-editor-provider/index.js +85 -83
  152. package/build-module/components/widget-areas-block-editor-provider/index.js.map +7 -1
  153. package/build-module/constants.js +7 -3
  154. package/build-module/constants.js.map +7 -1
  155. package/build-module/filters/index.js +3 -6
  156. package/build-module/filters/index.js.map +7 -1
  157. package/build-module/filters/move-to-widget-area.js +52 -57
  158. package/build-module/filters/move-to-widget-area.js.map +7 -1
  159. package/build-module/filters/replace-media-upload.js +8 -7
  160. package/build-module/filters/replace-media-upload.js.map +7 -1
  161. package/build-module/hooks/use-last-selected-widget-area.js +20 -39
  162. package/build-module/hooks/use-last-selected-widget-area.js.map +7 -1
  163. package/build-module/hooks/use-widget-library-insertion-point.js +42 -49
  164. package/build-module/hooks/use-widget-library-insertion-point.js.map +7 -1
  165. package/build-module/index.js +60 -72
  166. package/build-module/index.js.map +7 -1
  167. package/build-module/lock-unlock.js +8 -7
  168. package/build-module/lock-unlock.js.map +7 -1
  169. package/build-module/store/actions.js +153 -293
  170. package/build-module/store/actions.js.map +7 -1
  171. package/build-module/store/constants.js +5 -5
  172. package/build-module/store/constants.js.map +7 -1
  173. package/build-module/store/index.js +16 -40
  174. package/build-module/store/index.js.map +7 -1
  175. package/build-module/store/private-selectors.js +7 -3
  176. package/build-module/store/private-selectors.js.map +7 -1
  177. package/build-module/store/reducer.js +42 -111
  178. package/build-module/store/reducer.js.map +7 -1
  179. package/build-module/store/resolvers.js +43 -51
  180. package/build-module/store/resolvers.js.map +7 -1
  181. package/build-module/store/selectors.js +171 -224
  182. package/build-module/store/selectors.js.map +7 -1
  183. package/build-module/store/transformers.js +23 -34
  184. package/build-module/store/transformers.js.map +7 -1
  185. package/build-module/store/utils.js +22 -63
  186. package/build-module/store/utils.js.map +7 -1
  187. package/build-style/style-rtl.css +216 -88
  188. package/build-style/style.css +216 -88
  189. package/package.json +36 -29
  190. package/src/blocks/widget-area/editor.scss +3 -0
  191. package/src/components/customizer-edit-widgets-initializer/style.scss +3 -0
  192. package/src/components/error-boundary/style.scss +2 -0
  193. package/src/components/header/style.scss +5 -0
  194. package/src/components/keyboard-shortcut-help-modal/style.scss +2 -0
  195. package/src/components/layout/style.scss +3 -0
  196. package/src/components/more-menu/style.scss +2 -0
  197. package/src/components/notices/style.scss +3 -0
  198. package/src/components/secondary-sidebar/style.scss +4 -0
  199. package/src/components/sidebar/style.scss +2 -0
  200. package/src/components/welcome-guide/style.scss +2 -0
  201. package/src/components/widget-areas-block-editor-content/style.scss +2 -0
  202. package/src/style.scss +16 -13
@@ -2,10 +2,7 @@
2
2
  * Colors
3
3
  */
4
4
  /**
5
- * Breakpoints & Media Queries
6
- */
7
- /**
8
- * Colors
5
+ * Typography
9
6
  */
10
7
  /**
11
8
  * SCSS Variables.
@@ -49,6 +46,62 @@
49
46
  * React Native specific.
50
47
  * These variables do not appear to be used anywhere else.
51
48
  */
49
+ /**
50
+ * Breakpoints & Media Queries
51
+ */
52
+ /**
53
+ * Converts a hex value into the rgb equivalent.
54
+ *
55
+ * @param {string} hex - the hexadecimal value to convert
56
+ * @return {string} comma separated rgb values
57
+ */
58
+ /**
59
+ * Long content fade mixin
60
+ *
61
+ * Creates a fading overlay to signify that the content is longer
62
+ * than the space allows.
63
+ */
64
+ /**
65
+ * Breakpoint mixins
66
+ */
67
+ /**
68
+ * Focus styles.
69
+ */
70
+ /**
71
+ * Applies editor left position to the selector passed as argument
72
+ */
73
+ /**
74
+ * Styles that are reused verbatim in a few places
75
+ */
76
+ /**
77
+ * Allows users to opt-out of animations via OS-level preferences.
78
+ */
79
+ /**
80
+ * Reset default styles for JavaScript UI based pages.
81
+ * This is a WP-admin agnostic reset
82
+ */
83
+ /**
84
+ * Reset the WP Admin page styles for Gutenberg-like pages.
85
+ */
86
+ :root {
87
+ --wp-block-synced-color: #7a00df;
88
+ --wp-block-synced-color--rgb: 122, 0, 223;
89
+ --wp-bound-block-color: var(--wp-block-synced-color);
90
+ --wp-editor-canvas-background: #ddd;
91
+ --wp-admin-theme-color: #007cba;
92
+ --wp-admin-theme-color--rgb: 0, 124, 186;
93
+ --wp-admin-theme-color-darker-10: rgb(0, 107, 160.5);
94
+ --wp-admin-theme-color-darker-10--rgb: 0, 107, 160.5;
95
+ --wp-admin-theme-color-darker-20: #005a87;
96
+ --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
97
+ --wp-admin-border-width-focus: 2px;
98
+ }
99
+ @media (min-resolution: 192dpi) {
100
+ :root {
101
+ --wp-admin-border-width-focus: 1.5px;
102
+ }
103
+ }
104
+
52
105
  /**
53
106
  * Colors
54
107
  */
@@ -94,6 +147,9 @@
94
147
  * React Native specific.
95
148
  * These variables do not appear to be used anywhere else.
96
149
  */
150
+ /**
151
+ * Typography
152
+ */
97
153
  /**
98
154
  * Breakpoints & Media Queries
99
155
  */
@@ -109,9 +165,6 @@
109
165
  * Creates a fading overlay to signify that the content is longer
110
166
  * than the space allows.
111
167
  */
112
- /**
113
- * Typography
114
- */
115
168
  /**
116
169
  * Breakpoint mixins
117
170
  */
@@ -134,6 +187,75 @@
134
187
  /**
135
188
  * Reset the WP Admin page styles for Gutenberg-like pages.
136
189
  */
190
+ .admin-ui-page {
191
+ display: flex;
192
+ height: 100%;
193
+ background-color: #fff;
194
+ color: #2f2f2f;
195
+ position: relative;
196
+ z-index: 1;
197
+ flex-flow: column;
198
+ container: admin-ui-page/inline-size;
199
+ }
200
+
201
+ @media not (prefers-reduced-motion) {
202
+ .admin-ui-page {
203
+ transition: width ease-out 0.2s;
204
+ }
205
+ }
206
+ .admin-ui-page__header {
207
+ padding: 16px 48px;
208
+ border-bottom: 1px solid #f0f0f0;
209
+ background: #fff;
210
+ position: sticky;
211
+ top: 0;
212
+ }
213
+
214
+ @container (max-width: 430px) {
215
+ .admin-ui-page__header {
216
+ padding: 16px 24px;
217
+ }
218
+ }
219
+ .admin-ui-page__header-subtitle {
220
+ padding-block-end: 8px;
221
+ color: #757575;
222
+ font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
223
+ font-weight: 400;
224
+ font-size: 13px;
225
+ line-height: 20px;
226
+ margin: 0;
227
+ }
228
+
229
+ .admin-ui-page__content {
230
+ flex-grow: 1;
231
+ overflow: auto;
232
+ display: flex;
233
+ flex-direction: column;
234
+ }
235
+
236
+ .admin-ui-page__content.has-padding {
237
+ padding: 16px 20px;
238
+ }
239
+
240
+ @container (max-width: 430px) {
241
+ .admin-ui-page__content.has-padding {
242
+ padding: 16px 24px;
243
+ }
244
+ }
245
+ .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon {
246
+ width: auto;
247
+ padding: 0 8px;
248
+ }
249
+
250
+ .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon svg {
251
+ display: none;
252
+ }
253
+
254
+ .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon::after {
255
+ content: attr(aria-label);
256
+ font-size: 12px;
257
+ }
258
+
137
259
  /**
138
260
  * Colors
139
261
  */
@@ -179,6 +301,19 @@
179
301
  * React Native specific.
180
302
  * These variables do not appear to be used anywhere else.
181
303
  */
304
+ .interface-complementary-area-header {
305
+ background: #fff;
306
+ padding-right: 8px;
307
+ gap: 4px;
308
+ }
309
+
310
+ .interface-complementary-area-header .interface-complementary-area-header__title {
311
+ margin: 0 auto 0 0;
312
+ }
313
+
314
+ /**
315
+ * Typography
316
+ */
182
317
  /**
183
318
  * Breakpoints & Media Queries
184
319
  */
@@ -194,9 +329,6 @@
194
329
  * Creates a fading overlay to signify that the content is longer
195
330
  * than the space allows.
196
331
  */
197
- /**
198
- * Typography
199
- */
200
332
  /**
201
333
  * Breakpoint mixins
202
334
  */
@@ -219,39 +351,13 @@
219
351
  /**
220
352
  * Reset the WP Admin page styles for Gutenberg-like pages.
221
353
  */
222
- :root {
223
- --wp-block-synced-color: #7a00df;
224
- --wp-block-synced-color--rgb: 122, 0, 223;
225
- --wp-bound-block-color: var(--wp-block-synced-color);
226
- --wp-admin-theme-color: #007cba;
227
- --wp-admin-theme-color--rgb: 0, 124, 186;
228
- --wp-admin-theme-color-darker-10: #006ba1;
229
- --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
230
- --wp-admin-theme-color-darker-20: #005a87;
231
- --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
232
- --wp-admin-border-width-focus: 2px;
233
- }
234
- @media (min-resolution: 192dpi) {
235
- :root {
236
- --wp-admin-border-width-focus: 1.5px;
237
- }
238
- }
239
-
240
- .interface-complementary-area-header {
241
- background: #fff;
242
- padding-right: 8px;
243
- gap: 4px;
244
- }
245
- .interface-complementary-area-header .interface-complementary-area-header__title {
246
- margin: 0 auto 0 0;
247
- }
248
-
249
354
  .interface-complementary-area {
250
355
  background: #fff;
251
356
  color: #1e1e1e;
252
357
  height: 100%;
253
358
  overflow: auto;
254
359
  }
360
+
255
361
  @media (min-width: 600px) {
256
362
  .interface-complementary-area {
257
363
  -webkit-overflow-scrolling: touch;
@@ -267,23 +373,28 @@
267
373
  position: relative;
268
374
  z-index: 0;
269
375
  }
376
+
270
377
  .interface-complementary-area .components-panel__header {
271
378
  position: sticky;
272
379
  top: 0;
273
380
  z-index: 1;
274
381
  }
382
+
275
383
  .interface-complementary-area .components-panel__header.editor-sidebar__panel-tabs {
276
384
  top: 0;
277
385
  }
386
+
278
387
  .interface-complementary-area p:not(.components-base-control__help, .components-form-token-field__help) {
279
388
  margin-top: 0;
280
389
  }
390
+
281
391
  .interface-complementary-area h2 {
282
392
  font-size: 13px;
283
393
  font-weight: 500;
284
394
  color: #1e1e1e;
285
395
  margin-bottom: 1.5em;
286
396
  }
397
+
287
398
  .interface-complementary-area h3 {
288
399
  font-size: 11px;
289
400
  text-transform: uppercase;
@@ -291,20 +402,24 @@
291
402
  color: #1e1e1e;
292
403
  margin-bottom: 1.5em;
293
404
  }
405
+
294
406
  .interface-complementary-area hr {
295
407
  border-top: none;
296
408
  border-bottom: 1px solid #f0f0f0;
297
409
  margin: 1.5em 0;
298
410
  }
411
+
299
412
  .interface-complementary-area div.components-toolbar-group,
300
413
  .interface-complementary-area div.components-toolbar {
301
414
  box-shadow: none;
302
415
  margin-bottom: 1.5em;
303
416
  }
417
+
304
418
  .interface-complementary-area div.components-toolbar-group:last-child,
305
419
  .interface-complementary-area div.components-toolbar:last-child {
306
420
  margin-bottom: 0;
307
421
  }
422
+
308
423
  .interface-complementary-area .block-editor-skip-to-selected-block:focus {
309
424
  top: auto;
310
425
  right: 10px;
@@ -322,26 +437,25 @@
322
437
  height: calc(100% + 32px);
323
438
  }
324
439
  body.js.is-fullscreen-mode #adminmenumain,
325
- body.js.is-fullscreen-mode #wpadminbar {
440
+ body.js.is-fullscreen-mode #wpadminbar {
326
441
  display: none;
327
442
  }
328
443
  body.js.is-fullscreen-mode #wpcontent,
329
- body.js.is-fullscreen-mode #wpfooter {
444
+ body.js.is-fullscreen-mode #wpfooter {
330
445
  margin-left: 0;
331
446
  }
332
447
  }
333
-
334
448
  html.interface-interface-skeleton__html-container {
335
449
  position: fixed;
336
450
  width: 100%;
337
451
  }
452
+
338
453
  @media (min-width: 782px) {
339
454
  html.interface-interface-skeleton__html-container:not(:has(.is-zoom-out)) {
340
455
  position: initial;
341
456
  width: initial;
342
457
  }
343
458
  }
344
-
345
459
  .interface-interface-skeleton {
346
460
  display: flex;
347
461
  flex-direction: row;
@@ -353,6 +467,7 @@ html.interface-interface-skeleton__html-container {
353
467
  right: 0;
354
468
  bottom: 0;
355
469
  }
470
+
356
471
  @media (min-width: 783px) {
357
472
  .interface-interface-skeleton {
358
473
  top: 32px;
@@ -361,7 +476,6 @@ html.interface-interface-skeleton__html-container {
361
476
  top: 0;
362
477
  }
363
478
  }
364
-
365
479
  .interface-interface-skeleton__editor {
366
480
  display: flex;
367
481
  flex-direction: column;
@@ -372,13 +486,14 @@ html.interface-interface-skeleton__html-container {
372
486
  .interface-interface-skeleton { /* Set left position when auto-fold is not on the body element. */
373
487
  left: 0;
374
488
  }
489
+
375
490
  @media (min-width: 783px) {
376
491
  .interface-interface-skeleton {
377
492
  left: 160px;
378
493
  }
379
494
  }
380
-
381
495
  .auto-fold .interface-interface-skeleton { /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ }
496
+
382
497
  @media (min-width: 783px) {
383
498
  .auto-fold .interface-interface-skeleton {
384
499
  left: 36px;
@@ -389,17 +504,16 @@ html.interface-interface-skeleton__html-container {
389
504
  left: 160px;
390
505
  }
391
506
  }
392
-
393
507
  /* Sidebar manually collapsed. */
394
508
  .folded .interface-interface-skeleton {
395
509
  left: 0;
396
510
  }
511
+
397
512
  @media (min-width: 783px) {
398
513
  .folded .interface-interface-skeleton {
399
514
  left: 36px;
400
515
  }
401
516
  }
402
-
403
517
  body.is-fullscreen-mode .interface-interface-skeleton {
404
518
  left: 0 !important;
405
519
  }
@@ -411,12 +525,12 @@ body.is-fullscreen-mode .interface-interface-skeleton {
411
525
  overflow: auto;
412
526
  overscroll-behavior-y: none;
413
527
  }
528
+
414
529
  @media (min-width: 782px) {
415
530
  .has-footer .interface-interface-skeleton__body {
416
531
  padding-bottom: 25px;
417
532
  }
418
533
  }
419
-
420
534
  .interface-interface-skeleton__content {
421
535
  flex-grow: 1;
422
536
  display: flex;
@@ -424,12 +538,12 @@ body.is-fullscreen-mode .interface-interface-skeleton {
424
538
  overflow: auto;
425
539
  z-index: 20;
426
540
  }
541
+
427
542
  @media (min-width: 782px) {
428
543
  .interface-interface-skeleton__content {
429
544
  z-index: auto;
430
545
  }
431
546
  }
432
-
433
547
  .interface-interface-skeleton__secondary-sidebar,
434
548
  .interface-interface-skeleton__sidebar {
435
549
  flex-shrink: 0;
@@ -442,35 +556,35 @@ body.is-fullscreen-mode .interface-interface-skeleton {
442
556
  color: #1e1e1e;
443
557
  width: auto;
444
558
  }
559
+
445
560
  @media (min-width: 782px) {
446
561
  .interface-interface-skeleton__secondary-sidebar,
447
- .interface-interface-skeleton__sidebar {
562
+ .interface-interface-skeleton__sidebar {
448
563
  position: relative !important;
449
564
  }
450
565
  }
451
-
452
566
  .interface-interface-skeleton__sidebar {
453
567
  border-top: 1px solid #e0e0e0;
454
568
  overflow: hidden;
455
569
  }
570
+
456
571
  @media (min-width: 782px) {
457
572
  .interface-interface-skeleton__sidebar {
458
573
  box-shadow: -1px 0 0 0 rgba(0, 0, 0, 0.133);
459
574
  outline: 1px solid transparent;
460
575
  }
461
576
  }
462
-
463
577
  .interface-interface-skeleton__secondary-sidebar {
464
578
  border-top: 1px solid #e0e0e0;
465
579
  right: 0;
466
580
  }
581
+
467
582
  @media (min-width: 782px) {
468
583
  .interface-interface-skeleton__secondary-sidebar {
469
584
  box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.133);
470
585
  outline: 1px solid transparent;
471
586
  }
472
587
  }
473
-
474
588
  .interface-interface-skeleton__header {
475
589
  flex-shrink: 0;
476
590
  height: auto;
@@ -493,6 +607,7 @@ body.is-fullscreen-mode .interface-interface-skeleton {
493
607
  z-index: 90;
494
608
  display: none;
495
609
  }
610
+
496
611
  @media (min-width: 782px) {
497
612
  .interface-interface-skeleton__footer {
498
613
  display: flex;
@@ -519,6 +634,7 @@ body.is-fullscreen-mode .interface-interface-skeleton {
519
634
  background: #fff;
520
635
  width: 100vw;
521
636
  }
637
+
522
638
  @media (min-width: 782px) {
523
639
  .interface-interface-skeleton__actions {
524
640
  width: 280px;
@@ -528,9 +644,11 @@ body.is-fullscreen-mode .interface-interface-skeleton {
528
644
  top: auto;
529
645
  bottom: 0;
530
646
  }
647
+
531
648
  .is-entity-save-view-open .interface-interface-skeleton__actions:focus, .is-entity-save-view-open .interface-interface-skeleton__actions:focus-within {
532
649
  top: 46px;
533
650
  }
651
+
534
652
  @media (min-width: 782px) {
535
653
  .is-entity-save-view-open .interface-interface-skeleton__actions:focus, .is-entity-save-view-open .interface-interface-skeleton__actions:focus-within {
536
654
  border-left: 1px solid #ddd;
@@ -540,27 +658,32 @@ body.is-fullscreen-mode .interface-interface-skeleton {
540
658
  top: 0;
541
659
  }
542
660
  }
543
-
544
661
  .interface-pinned-items {
545
662
  display: flex;
546
- gap: 8px;
547
663
  }
664
+
548
665
  .interface-pinned-items .components-button {
549
666
  display: none;
550
667
  margin: 0;
551
668
  }
669
+
552
670
  .interface-pinned-items .components-button[aria-controls="edit-post:document"], .interface-pinned-items .components-button[aria-controls="edit-post:block"], .interface-pinned-items .components-button[aria-controls="edit-site:template"], .interface-pinned-items .components-button[aria-controls="edit-site:block-inspector"] {
553
671
  display: flex;
554
672
  }
673
+
555
674
  .interface-pinned-items .components-button svg {
556
675
  max-width: 24px;
557
676
  max-height: 24px;
558
677
  }
678
+
559
679
  @media (min-width: 600px) {
560
680
  .interface-pinned-items .components-button {
561
681
  display: flex;
562
682
  }
563
683
  }
684
+ .interface-pinned-items {
685
+ gap: 8px;
686
+ }
564
687
 
565
688
  .wp-block[data-type="core/widget-area"] {
566
689
  max-width: 700px;
@@ -696,13 +819,15 @@ body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .c
696
819
  display: flex;
697
820
  align-items: center;
698
821
  padding-right: 4px;
699
- gap: 8px;
700
822
  }
701
823
  @media (min-width: 600px) {
702
824
  .edit-widgets-header__actions {
703
825
  padding-right: 8px;
704
826
  }
705
827
  }
828
+ .edit-widgets-header__actions {
829
+ gap: 8px;
830
+ }
706
831
 
707
832
  .edit-widgets-header-toolbar {
708
833
  gap: 8px;
@@ -969,8 +1094,6 @@ body.is-fullscreen-mode .edit-widgets-notices__snackbar {
969
1094
  body.js.appearance_page_gutenberg-widgets,
970
1095
  body.js.widgets-php {
971
1096
  background: #fff;
972
- /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
973
- Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
974
1097
  }
975
1098
  body.js.appearance_page_gutenberg-widgets #wpcontent,
976
1099
  body.js.widgets-php #wpcontent {
@@ -980,6 +1103,11 @@ body.js.appearance_page_gutenberg-widgets #wpbody-content,
980
1103
  body.js.widgets-php #wpbody-content {
981
1104
  padding-bottom: 0;
982
1105
  }
1106
+ body.js.appearance_page_gutenberg-widgets,
1107
+ body.js.widgets-php {
1108
+ /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
1109
+ Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
1110
+ }
983
1111
  body.js.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta),
984
1112
  body.js.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
985
1113
  display: none;
@@ -1048,10 +1176,10 @@ body.js.widgets-php .media-frame select.attachment-filters:last-of-type {
1048
1176
  body.admin-color-light {
1049
1177
  --wp-admin-theme-color: #0085ba;
1050
1178
  --wp-admin-theme-color--rgb: 0, 133, 186;
1051
- --wp-admin-theme-color-darker-10: #0073a1;
1052
- --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
1053
- --wp-admin-theme-color-darker-20: #006187;
1054
- --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
1179
+ --wp-admin-theme-color-darker-10: rgb(0, 114.7661290323, 160.5);
1180
+ --wp-admin-theme-color-darker-10--rgb: 0, 114.7661290323, 160.5;
1181
+ --wp-admin-theme-color-darker-20: rgb(0, 96.5322580645, 135);
1182
+ --wp-admin-theme-color-darker-20--rgb: 0, 96.5322580645, 135;
1055
1183
  --wp-admin-border-width-focus: 2px;
1056
1184
  }
1057
1185
  @media (min-resolution: 192dpi) {
@@ -1063,10 +1191,10 @@ body.admin-color-light {
1063
1191
  body.admin-color-modern {
1064
1192
  --wp-admin-theme-color: #3858e9;
1065
1193
  --wp-admin-theme-color--rgb: 56, 88, 233;
1066
- --wp-admin-theme-color-darker-10: #2145e6;
1067
- --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
1068
- --wp-admin-theme-color-darker-20: #183ad6;
1069
- --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
1194
+ --wp-admin-theme-color-darker-10: rgb(33.0384615385, 68.7307692308, 230.4615384615);
1195
+ --wp-admin-theme-color-darker-10--rgb: 33.0384615385, 68.7307692308, 230.4615384615;
1196
+ --wp-admin-theme-color-darker-20: rgb(23.6923076923, 58.1538461538, 214.3076923077);
1197
+ --wp-admin-theme-color-darker-20--rgb: 23.6923076923, 58.1538461538, 214.3076923077;
1070
1198
  --wp-admin-border-width-focus: 2px;
1071
1199
  }
1072
1200
  @media (min-resolution: 192dpi) {
@@ -1078,10 +1206,10 @@ body.admin-color-modern {
1078
1206
  body.admin-color-blue {
1079
1207
  --wp-admin-theme-color: #096484;
1080
1208
  --wp-admin-theme-color--rgb: 9, 100, 132;
1081
- --wp-admin-theme-color-darker-10: #07526c;
1082
- --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
1083
- --wp-admin-theme-color-darker-20: #064054;
1084
- --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
1209
+ --wp-admin-theme-color-darker-10: rgb(7.3723404255, 81.914893617, 108.1276595745);
1210
+ --wp-admin-theme-color-darker-10--rgb: 7.3723404255, 81.914893617, 108.1276595745;
1211
+ --wp-admin-theme-color-darker-20: rgb(5.7446808511, 63.829787234, 84.2553191489);
1212
+ --wp-admin-theme-color-darker-20--rgb: 5.7446808511, 63.829787234, 84.2553191489;
1085
1213
  --wp-admin-border-width-focus: 2px;
1086
1214
  }
1087
1215
  @media (min-resolution: 192dpi) {
@@ -1093,10 +1221,10 @@ body.admin-color-blue {
1093
1221
  body.admin-color-coffee {
1094
1222
  --wp-admin-theme-color: #46403c;
1095
1223
  --wp-admin-theme-color--rgb: 70, 64, 60;
1096
- --wp-admin-theme-color-darker-10: #383330;
1097
- --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
1098
- --wp-admin-theme-color-darker-20: #2b2724;
1099
- --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
1224
+ --wp-admin-theme-color-darker-10: rgb(56.2692307692, 51.4461538462, 48.2307692308);
1225
+ --wp-admin-theme-color-darker-10--rgb: 56.2692307692, 51.4461538462, 48.2307692308;
1226
+ --wp-admin-theme-color-darker-20: rgb(42.5384615385, 38.8923076923, 36.4615384615);
1227
+ --wp-admin-theme-color-darker-20--rgb: 42.5384615385, 38.8923076923, 36.4615384615;
1100
1228
  --wp-admin-border-width-focus: 2px;
1101
1229
  }
1102
1230
  @media (min-resolution: 192dpi) {
@@ -1108,10 +1236,10 @@ body.admin-color-coffee {
1108
1236
  body.admin-color-ectoplasm {
1109
1237
  --wp-admin-theme-color: #523f6d;
1110
1238
  --wp-admin-theme-color--rgb: 82, 63, 109;
1111
- --wp-admin-theme-color-darker-10: #46365d;
1112
- --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
1113
- --wp-admin-theme-color-darker-20: #3a2c4d;
1114
- --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
1239
+ --wp-admin-theme-color-darker-10: rgb(69.8430232558, 53.6598837209, 92.8401162791);
1240
+ --wp-admin-theme-color-darker-10--rgb: 69.8430232558, 53.6598837209, 92.8401162791;
1241
+ --wp-admin-theme-color-darker-20: rgb(57.6860465116, 44.3197674419, 76.6802325581);
1242
+ --wp-admin-theme-color-darker-20--rgb: 57.6860465116, 44.3197674419, 76.6802325581;
1115
1243
  --wp-admin-border-width-focus: 2px;
1116
1244
  }
1117
1245
  @media (min-resolution: 192dpi) {
@@ -1123,10 +1251,10 @@ body.admin-color-ectoplasm {
1123
1251
  body.admin-color-midnight {
1124
1252
  --wp-admin-theme-color: #e14d43;
1125
1253
  --wp-admin-theme-color--rgb: 225, 77, 67;
1126
- --wp-admin-theme-color-darker-10: #dd382d;
1127
- --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
1128
- --wp-admin-theme-color-darker-20: #d02c21;
1129
- --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
1254
+ --wp-admin-theme-color-darker-10: rgb(221.4908256881, 56.1788990826, 45.0091743119);
1255
+ --wp-admin-theme-color-darker-10--rgb: 221.4908256881, 56.1788990826, 45.0091743119;
1256
+ --wp-admin-theme-color-darker-20: rgb(207.8348623853, 44.2201834862, 33.1651376147);
1257
+ --wp-admin-theme-color-darker-20--rgb: 207.8348623853, 44.2201834862, 33.1651376147;
1130
1258
  --wp-admin-border-width-focus: 2px;
1131
1259
  }
1132
1260
  @media (min-resolution: 192dpi) {
@@ -1138,10 +1266,10 @@ body.admin-color-midnight {
1138
1266
  body.admin-color-ocean {
1139
1267
  --wp-admin-theme-color: #627c83;
1140
1268
  --wp-admin-theme-color--rgb: 98, 124, 131;
1141
- --wp-admin-theme-color-darker-10: #576e74;
1142
- --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
1143
- --wp-admin-theme-color-darker-20: #4c6066;
1144
- --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
1269
+ --wp-admin-theme-color-darker-10: rgb(87.0873362445, 110.192139738, 116.4126637555);
1270
+ --wp-admin-theme-color-darker-10--rgb: 87.0873362445, 110.192139738, 116.4126637555;
1271
+ --wp-admin-theme-color-darker-20: rgb(76.1746724891, 96.384279476, 101.8253275109);
1272
+ --wp-admin-theme-color-darker-20--rgb: 76.1746724891, 96.384279476, 101.8253275109;
1145
1273
  --wp-admin-border-width-focus: 2px;
1146
1274
  }
1147
1275
  @media (min-resolution: 192dpi) {
@@ -1153,10 +1281,10 @@ body.admin-color-ocean {
1153
1281
  body.admin-color-sunrise {
1154
1282
  --wp-admin-theme-color: #dd823b;
1155
1283
  --wp-admin-theme-color--rgb: 221, 130, 59;
1156
- --wp-admin-theme-color-darker-10: #d97426;
1157
- --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
1158
- --wp-admin-theme-color-darker-20: #c36922;
1159
- --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
1284
+ --wp-admin-theme-color-darker-10: rgb(216.8782608696, 116.1847826087, 37.6217391304);
1285
+ --wp-admin-theme-color-darker-10--rgb: 216.8782608696, 116.1847826087, 37.6217391304;
1286
+ --wp-admin-theme-color-darker-20: rgb(195.147826087, 104.5434782609, 33.852173913);
1287
+ --wp-admin-theme-color-darker-20--rgb: 195.147826087, 104.5434782609, 33.852173913;
1160
1288
  --wp-admin-border-width-focus: 2px;
1161
1289
  }
1162
1290
  @media (min-resolution: 192dpi) {