@wordpress/edit-site 6.35.2-next.dc3f6d3c1.0 → 6.36.1-next.6deb34194.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.
- package/CHANGELOG.md +1 -1
- package/build/components/add-new-template-legacy/add-custom-generic-template-modal-content.js +109 -0
- package/build/components/add-new-template-legacy/add-custom-generic-template-modal-content.js.map +7 -0
- package/build/components/add-new-template-legacy/add-custom-template-modal-content.js +328 -0
- package/build/components/add-new-template-legacy/add-custom-template-modal-content.js.map +7 -0
- package/build/components/add-new-template-legacy/index.js +389 -0
- package/build/components/add-new-template-legacy/index.js.map +7 -0
- package/build/components/add-new-template-legacy/utils.js +620 -0
- package/build/components/add-new-template-legacy/utils.js.map +7 -0
- package/build/components/block-editor/use-site-editor-settings.js +3 -3
- package/build/components/block-editor/use-site-editor-settings.js.map +2 -2
- package/build/components/page-templates/fields.js +3 -1
- package/build/components/page-templates/fields.js.map +2 -2
- package/build/components/page-templates/index-legacy.js +185 -0
- package/build/components/page-templates/index-legacy.js.map +7 -0
- package/build/components/post-list/index.js +27 -4
- package/build/components/post-list/index.js.map +3 -3
- package/build/components/post-list/use-notes-count.js +56 -0
- package/build/components/post-list/use-notes-count.js.map +7 -0
- package/build/components/sidebar-navigation-screen-patterns/use-template-part-areas.js +2 -1
- package/build/components/sidebar-navigation-screen-patterns/use-template-part-areas.js.map +2 -2
- package/build/components/sidebar-navigation-screen-templates-browse/content-legacy.js +101 -0
- package/build/components/sidebar-navigation-screen-templates-browse/content-legacy.js.map +7 -0
- package/build/components/sidebar-navigation-screen-templates-browse/index.js +2 -1
- package/build/components/sidebar-navigation-screen-templates-browse/index.js.map +3 -3
- package/build/components/site-editor-routes/templates.js +10 -2
- package/build/components/site-editor-routes/templates.js.map +3 -3
- package/build/components/site-hub/index.js +1 -1
- package/build/components/site-hub/index.js.map +2 -2
- package/build/utils/constants.js +6 -0
- package/build/utils/constants.js.map +2 -2
- package/build-module/components/add-new-template-legacy/add-custom-generic-template-modal-content.js +93 -0
- package/build-module/components/add-new-template-legacy/add-custom-generic-template-modal-content.js.map +7 -0
- package/build-module/components/add-new-template-legacy/add-custom-template-modal-content.js +316 -0
- package/build-module/components/add-new-template-legacy/add-custom-template-modal-content.js.map +7 -0
- package/build-module/components/add-new-template-legacy/index.js +390 -0
- package/build-module/components/add-new-template-legacy/index.js.map +7 -0
- package/build-module/components/add-new-template-legacy/utils.js +589 -0
- package/build-module/components/add-new-template-legacy/utils.js.map +7 -0
- package/build-module/components/block-editor/use-site-editor-settings.js +3 -3
- package/build-module/components/block-editor/use-site-editor-settings.js.map +2 -2
- package/build-module/components/page-templates/fields.js +3 -1
- package/build-module/components/page-templates/fields.js.map +2 -2
- package/build-module/components/page-templates/index-legacy.js +154 -0
- package/build-module/components/page-templates/index-legacy.js.map +7 -0
- package/build-module/components/post-list/index.js +29 -4
- package/build-module/components/post-list/index.js.map +2 -2
- package/build-module/components/post-list/use-notes-count.js +35 -0
- package/build-module/components/post-list/use-notes-count.js.map +7 -0
- package/build-module/components/sidebar-navigation-screen-patterns/use-template-part-areas.js +2 -1
- package/build-module/components/sidebar-navigation-screen-patterns/use-template-part-areas.js.map +2 -2
- package/build-module/components/sidebar-navigation-screen-templates-browse/content-legacy.js +70 -0
- package/build-module/components/sidebar-navigation-screen-templates-browse/content-legacy.js.map +7 -0
- package/build-module/components/sidebar-navigation-screen-templates-browse/index.js +2 -1
- package/build-module/components/sidebar-navigation-screen-templates-browse/index.js.map +2 -2
- package/build-module/components/site-editor-routes/templates.js +10 -2
- package/build-module/components/site-editor-routes/templates.js.map +2 -2
- package/build-module/components/site-hub/index.js +1 -1
- package/build-module/components/site-hub/index.js.map +2 -2
- package/build-module/utils/constants.js +4 -0
- package/build-module/utils/constants.js.map +2 -2
- package/build-style/style-rtl.css +294 -147
- package/build-style/style.css +294 -147
- package/package.json +46 -46
- package/src/components/add-new-template-legacy/add-custom-generic-template-modal-content.js +94 -0
- package/src/components/add-new-template-legacy/add-custom-template-modal-content.js +314 -0
- package/src/components/add-new-template-legacy/index.js +454 -0
- package/src/components/add-new-template-legacy/utils.js +760 -0
- package/src/components/block-editor/use-site-editor-settings.js +3 -7
- package/src/components/page-templates/fields.js +13 -9
- package/src/components/page-templates/index-legacy.js +166 -0
- package/src/components/post-list/index.js +34 -4
- package/src/components/post-list/use-notes-count.js +48 -0
- package/src/components/sidebar-global-styles/style.scss +0 -8
- package/src/components/sidebar-navigation-screen-patterns/use-template-part-areas.js +1 -0
- package/src/components/sidebar-navigation-screen-templates-browse/content-legacy.js +79 -0
- package/src/components/sidebar-navigation-screen-templates-browse/index.js +8 -1
- package/src/components/site-editor-routes/templates.js +22 -3
- package/src/components/site-hub/index.js +1 -1
- package/src/utils/constants.js +2 -0
|
@@ -196,27 +196,20 @@
|
|
|
196
196
|
position: relative;
|
|
197
197
|
z-index: 1;
|
|
198
198
|
flex-flow: column;
|
|
199
|
-
container: admin-ui-page/inline-size;
|
|
200
199
|
}
|
|
201
200
|
|
|
202
|
-
@media not (prefers-reduced-motion) {
|
|
203
|
-
.admin-ui-page {
|
|
204
|
-
transition: width ease-out 0.2s;
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
201
|
.admin-ui-page__header {
|
|
208
|
-
padding: 16px
|
|
202
|
+
padding: 16px 24px;
|
|
209
203
|
border-bottom: 1px solid #f0f0f0;
|
|
210
204
|
background: #fff;
|
|
211
205
|
position: sticky;
|
|
212
206
|
top: 0;
|
|
213
207
|
}
|
|
214
208
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
padding: 16px 24px;
|
|
218
|
-
}
|
|
209
|
+
.admin-ui-page__sidebar-toggle-slot:empty {
|
|
210
|
+
display: none;
|
|
219
211
|
}
|
|
212
|
+
|
|
220
213
|
.admin-ui-page__header-subtitle {
|
|
221
214
|
padding-block-end: 8px;
|
|
222
215
|
color: #757575;
|
|
@@ -235,14 +228,9 @@
|
|
|
235
228
|
}
|
|
236
229
|
|
|
237
230
|
.admin-ui-page__content.has-padding {
|
|
238
|
-
padding: 16px
|
|
231
|
+
padding: 16px 24px;
|
|
239
232
|
}
|
|
240
233
|
|
|
241
|
-
@container (max-width: 430px) {
|
|
242
|
-
.admin-ui-page__content.has-padding {
|
|
243
|
-
padding: 16px 24px;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
234
|
.show-icon-labels .admin-ui-page__header-actions .components-button.has-icon {
|
|
247
235
|
width: auto;
|
|
248
236
|
padding: 0 8px;
|
|
@@ -374,13 +362,13 @@
|
|
|
374
362
|
flex-direction: column;
|
|
375
363
|
font-size: 13px;
|
|
376
364
|
line-height: 1.4;
|
|
377
|
-
background-color:
|
|
365
|
+
background-color: var(--wp-dataviews-color-background, #fff);
|
|
378
366
|
}
|
|
379
367
|
|
|
380
368
|
.dataviews__view-actions,
|
|
381
369
|
.dataviews-filters__container {
|
|
382
370
|
box-sizing: border-box;
|
|
383
|
-
padding: 16px
|
|
371
|
+
padding: 16px 24px;
|
|
384
372
|
flex-shrink: 0;
|
|
385
373
|
position: sticky;
|
|
386
374
|
right: 0;
|
|
@@ -395,7 +383,7 @@
|
|
|
395
383
|
}
|
|
396
384
|
.dataviews-no-results,
|
|
397
385
|
.dataviews-loading {
|
|
398
|
-
padding: 0
|
|
386
|
+
padding: 0 24px;
|
|
399
387
|
flex-grow: 1;
|
|
400
388
|
display: flex;
|
|
401
389
|
align-items: center;
|
|
@@ -417,11 +405,6 @@
|
|
|
417
405
|
.dataviews-filters__container {
|
|
418
406
|
padding: 12px 24px;
|
|
419
407
|
}
|
|
420
|
-
.dataviews-no-results,
|
|
421
|
-
.dataviews-loading {
|
|
422
|
-
padding-right: 24px;
|
|
423
|
-
padding-left: 24px;
|
|
424
|
-
}
|
|
425
408
|
}
|
|
426
409
|
.dataviews-title-field {
|
|
427
410
|
font-size: 13px;
|
|
@@ -483,7 +466,7 @@
|
|
|
483
466
|
}
|
|
484
467
|
|
|
485
468
|
/**
|
|
486
|
-
*
|
|
469
|
+
* When DataViews are placed within cards, apply a consistent top padding.
|
|
487
470
|
*/
|
|
488
471
|
.components-card__body:has(> .dataviews-wrapper),
|
|
489
472
|
.components-card__body:has(> .dataviews-picker-wrapper) {
|
|
@@ -491,35 +474,6 @@
|
|
|
491
474
|
overflow: hidden;
|
|
492
475
|
}
|
|
493
476
|
|
|
494
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews__view-actions,
|
|
495
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-filters__container,
|
|
496
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-footer,
|
|
497
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-grid,
|
|
498
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-loading,
|
|
499
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-no-results,
|
|
500
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews__view-actions,
|
|
501
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-filters__container,
|
|
502
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-footer,
|
|
503
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-grid,
|
|
504
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-loading,
|
|
505
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-no-results {
|
|
506
|
-
padding-inline: 24px;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr td:first-child,
|
|
510
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr th:first-child,
|
|
511
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr td:first-child,
|
|
512
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr th:first-child {
|
|
513
|
-
padding-inline-start: 24px;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr td:last-child,
|
|
517
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr th:last-child,
|
|
518
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr td:last-child,
|
|
519
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr th:last-child {
|
|
520
|
-
padding-inline-end: 24px;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
477
|
.dataviews-bulk-actions-footer__item-count {
|
|
524
478
|
color: #1e1e1e;
|
|
525
479
|
font-weight: 499;
|
|
@@ -1121,7 +1075,7 @@
|
|
|
1121
1075
|
bottom: 0;
|
|
1122
1076
|
right: 0;
|
|
1123
1077
|
background-color: inherit;
|
|
1124
|
-
padding: 12px
|
|
1078
|
+
padding: 12px 24px;
|
|
1125
1079
|
border-top: 1px solid #f0f0f0;
|
|
1126
1080
|
flex-shrink: 0;
|
|
1127
1081
|
}
|
|
@@ -1135,11 +1089,6 @@
|
|
|
1135
1089
|
z-index: 2;
|
|
1136
1090
|
}
|
|
1137
1091
|
|
|
1138
|
-
@container (max-width: 430px) {
|
|
1139
|
-
.dataviews-footer {
|
|
1140
|
-
padding: 12px 24px;
|
|
1141
|
-
}
|
|
1142
|
-
}
|
|
1143
1092
|
@container (max-width: 560px) {
|
|
1144
1093
|
.dataviews-footer {
|
|
1145
1094
|
flex-direction: column !important;
|
|
@@ -1266,25 +1215,52 @@
|
|
|
1266
1215
|
gap: 32px;
|
|
1267
1216
|
grid-template-rows: max-content;
|
|
1268
1217
|
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
|
1269
|
-
padding: 0
|
|
1218
|
+
padding: 0 24px 24px;
|
|
1270
1219
|
container-type: inline-size;
|
|
1271
|
-
/**
|
|
1272
|
-
* Breakpoints were adjusted from media queries breakpoints to account for
|
|
1273
|
-
* the sidebar width. This was done to match the existing styles we had.
|
|
1274
|
-
*/
|
|
1275
1220
|
}
|
|
1276
1221
|
|
|
1277
|
-
@
|
|
1222
|
+
@media not (prefers-reduced-motion) {
|
|
1278
1223
|
.dataviews-view-grid-items {
|
|
1279
|
-
padding-
|
|
1280
|
-
padding-left: 24px;
|
|
1224
|
+
transition: padding ease-out 0.1s;
|
|
1281
1225
|
}
|
|
1282
1226
|
}
|
|
1227
|
+
.dataviews-view-grid {
|
|
1228
|
+
padding: 0 24px 24px;
|
|
1229
|
+
display: flex;
|
|
1230
|
+
flex-direction: column;
|
|
1231
|
+
gap: 32px;
|
|
1232
|
+
container-type: inline-size;
|
|
1233
|
+
margin-bottom: auto;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1283
1236
|
@media not (prefers-reduced-motion) {
|
|
1284
|
-
.dataviews-view-grid
|
|
1237
|
+
.dataviews-view-grid {
|
|
1285
1238
|
transition: padding ease-out 0.1s;
|
|
1286
1239
|
}
|
|
1287
1240
|
}
|
|
1241
|
+
.dataviews-view-grid .dataviews-view-grid__row {
|
|
1242
|
+
display: grid;
|
|
1243
|
+
gap: 32px;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.dataviews-view-grid .dataviews-view-grid__row .dataviews-view-grid__row__gridcell {
|
|
1247
|
+
border-radius: 4px;
|
|
1248
|
+
position: relative;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.dataviews-view-grid .dataviews-view-grid__row .dataviews-view-grid__row__gridcell[data-focus-visible]::after {
|
|
1252
|
+
content: "";
|
|
1253
|
+
position: absolute;
|
|
1254
|
+
top: 0;
|
|
1255
|
+
right: 0;
|
|
1256
|
+
width: 100%;
|
|
1257
|
+
height: 100%;
|
|
1258
|
+
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
|
1259
|
+
border-radius: 4px;
|
|
1260
|
+
pointer-events: none;
|
|
1261
|
+
outline: 2px solid transparent;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1288
1264
|
.dataviews-view-grid .dataviews-view-grid__card {
|
|
1289
1265
|
height: 100%;
|
|
1290
1266
|
justify-content: flex-start;
|
|
@@ -1462,16 +1438,10 @@
|
|
|
1462
1438
|
font-weight: 499;
|
|
1463
1439
|
color: #1e1e1e;
|
|
1464
1440
|
margin: 0 0 8px 0;
|
|
1465
|
-
padding: 0
|
|
1441
|
+
padding: 0 24px;
|
|
1466
1442
|
container-type: inline-size;
|
|
1467
1443
|
}
|
|
1468
1444
|
|
|
1469
|
-
@container (max-width: 430px) {
|
|
1470
|
-
.dataviews-view-grid__group-header {
|
|
1471
|
-
padding-right: 24px;
|
|
1472
|
-
padding-left: 24px;
|
|
1473
|
-
}
|
|
1474
|
-
}
|
|
1475
1445
|
div.dataviews-view-list {
|
|
1476
1446
|
list-style-type: none;
|
|
1477
1447
|
}
|
|
@@ -1758,35 +1728,22 @@ div.dataviews-view-list {
|
|
|
1758
1728
|
background-color: inherit;
|
|
1759
1729
|
}
|
|
1760
1730
|
|
|
1761
|
-
.dataviews-view-table tr .dataviews-view-table-header-button {
|
|
1762
|
-
gap: 4px;
|
|
1763
|
-
}
|
|
1764
|
-
|
|
1765
1731
|
.dataviews-view-table tr td:first-child,
|
|
1766
1732
|
.dataviews-view-table tr th:first-child {
|
|
1767
|
-
padding-right:
|
|
1768
|
-
}
|
|
1769
|
-
|
|
1770
|
-
.dataviews-view-table tr td:first-child .dataviews-view-table-header-button,
|
|
1771
|
-
.dataviews-view-table tr th:first-child .dataviews-view-table-header-button {
|
|
1772
|
-
margin-right: -8px;
|
|
1733
|
+
padding-right: 24px;
|
|
1773
1734
|
}
|
|
1774
1735
|
|
|
1775
1736
|
.dataviews-view-table tr td:last-child,
|
|
1776
1737
|
.dataviews-view-table tr th:last-child {
|
|
1777
|
-
padding-left:
|
|
1738
|
+
padding-left: 24px;
|
|
1778
1739
|
}
|
|
1779
1740
|
|
|
1780
1741
|
.dataviews-view-table tr:last-child {
|
|
1781
1742
|
border-bottom: 0;
|
|
1782
1743
|
}
|
|
1783
1744
|
|
|
1784
|
-
.dataviews-view-table tr .
|
|
1785
|
-
|
|
1786
|
-
}
|
|
1787
|
-
|
|
1788
|
-
.dataviews-view-table tr .components-checkbox-control__input.components-checkbox-control__input:checked, .dataviews-view-table tr .components-checkbox-control__input.components-checkbox-control__input:indeterminate, .dataviews-view-table tr .components-checkbox-control__input.components-checkbox-control__input:focus {
|
|
1789
|
-
opacity: 1;
|
|
1745
|
+
.dataviews-view-table tr.is-hovered, .dataviews-view-table tr.is-hovered .dataviews-view-table__actions-column--sticky {
|
|
1746
|
+
background-color: #f8f8f8;
|
|
1790
1747
|
}
|
|
1791
1748
|
|
|
1792
1749
|
.dataviews-view-table tr .dataviews-item-actions .components-button:not(.dataviews-all-actions-button) {
|
|
@@ -1794,7 +1751,6 @@ div.dataviews-view-list {
|
|
|
1794
1751
|
}
|
|
1795
1752
|
|
|
1796
1753
|
@media (hover: none) {
|
|
1797
|
-
.dataviews-view-table tr .components-checkbox-control__input.components-checkbox-control__input,
|
|
1798
1754
|
.dataviews-view-table tr .dataviews-item-actions .components-button:not(.dataviews-all-actions-button) {
|
|
1799
1755
|
opacity: 1;
|
|
1800
1756
|
}
|
|
@@ -1842,22 +1798,30 @@ div.dataviews-view-list {
|
|
|
1842
1798
|
border: 0;
|
|
1843
1799
|
}
|
|
1844
1800
|
|
|
1845
|
-
.dataviews-view-table thead tr .components-checkbox-control__input.components-checkbox-control__input {
|
|
1846
|
-
opacity: 1;
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
1801
|
.dataviews-view-table thead th {
|
|
1850
1802
|
background-color: inherit;
|
|
1851
1803
|
padding-top: 8px;
|
|
1852
1804
|
padding-bottom: 8px;
|
|
1853
|
-
padding-right: 12px;
|
|
1854
1805
|
font-size: 11px;
|
|
1855
1806
|
text-transform: uppercase;
|
|
1856
1807
|
font-weight: 499;
|
|
1857
1808
|
}
|
|
1858
1809
|
|
|
1859
|
-
.dataviews-view-table thead th:has(.dataviews-view-table-header-button)
|
|
1810
|
+
.dataviews-view-table thead th:has(.dataviews-view-table-header-button) {
|
|
1860
1811
|
padding-right: 4px;
|
|
1812
|
+
padding-left: 4px;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
.dataviews-view-table thead th:has(.dataviews-view-table-header-button) .dataviews-view-table-header-button {
|
|
1816
|
+
gap: 4px;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
.dataviews-view-table thead th:has(.dataviews-view-table-header-button):first-child {
|
|
1820
|
+
padding-right: 40px;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.dataviews-view-table thead th:has(.dataviews-view-table-header-button):last-child {
|
|
1824
|
+
padding-left: 40px;
|
|
1861
1825
|
}
|
|
1862
1826
|
|
|
1863
1827
|
.dataviews-view-table tbody td {
|
|
@@ -1911,14 +1875,14 @@ div.dataviews-view-list {
|
|
|
1911
1875
|
white-space: nowrap;
|
|
1912
1876
|
}
|
|
1913
1877
|
|
|
1914
|
-
.dataviews-view-table:has(tr.is-selected) .components-checkbox-control__input {
|
|
1915
|
-
opacity: 1;
|
|
1916
|
-
}
|
|
1917
|
-
|
|
1918
1878
|
.dataviews-view-table.has-compact-density thead th:has(.dataviews-view-table-header-button):not(:first-child) {
|
|
1919
1879
|
padding-right: 0;
|
|
1920
1880
|
}
|
|
1921
1881
|
|
|
1882
|
+
.dataviews-view-table.has-compact-density thead th:has(.dataviews-view-table-header-button):not(:last-child) {
|
|
1883
|
+
padding-left: 0;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1922
1886
|
.dataviews-view-table.has-compact-density td,
|
|
1923
1887
|
.dataviews-view-table.has-compact-density th {
|
|
1924
1888
|
padding: 4px 8px;
|
|
@@ -1935,16 +1899,6 @@ div.dataviews-view-list {
|
|
|
1935
1899
|
padding-left: 0;
|
|
1936
1900
|
}
|
|
1937
1901
|
|
|
1938
|
-
@container (max-width: 430px) {
|
|
1939
|
-
.dataviews-view-table tr td:first-child,
|
|
1940
|
-
.dataviews-view-table tr th:first-child {
|
|
1941
|
-
padding-right: 24px;
|
|
1942
|
-
}
|
|
1943
|
-
.dataviews-view-table tr td:last-child,
|
|
1944
|
-
.dataviews-view-table tr th:last-child {
|
|
1945
|
-
padding-left: 24px;
|
|
1946
|
-
}
|
|
1947
|
-
}
|
|
1948
1902
|
.dataviews-view-table-selection-checkbox {
|
|
1949
1903
|
--checkbox-input-size: 24px;
|
|
1950
1904
|
}
|
|
@@ -1988,12 +1942,12 @@ div.dataviews-view-list {
|
|
|
1988
1942
|
|
|
1989
1943
|
.dataviews-view-table__group-header-row .dataviews-view-table__group-header-cell {
|
|
1990
1944
|
font-weight: 499;
|
|
1991
|
-
padding: 12px
|
|
1945
|
+
padding: 12px 24px;
|
|
1992
1946
|
color: #1e1e1e;
|
|
1993
1947
|
}
|
|
1994
1948
|
|
|
1995
1949
|
/* Column width intents via colgroup: make non-primary columns shrink-to-fit */
|
|
1996
|
-
.dataviews-view-table col[class^=dataviews-view-table__col-]:not(.dataviews-view-table__col-
|
|
1950
|
+
.dataviews-view-table col[class^=dataviews-view-table__col-]:not(.dataviews-view-table__col-first-data) {
|
|
1997
1951
|
width: 1%;
|
|
1998
1952
|
}
|
|
1999
1953
|
|
|
@@ -2189,6 +2143,205 @@ div.dataviews-view-list {
|
|
|
2189
2143
|
background-color: rgba(var(--wp-admin-theme-color--rgb), 0.12);
|
|
2190
2144
|
}
|
|
2191
2145
|
|
|
2146
|
+
.dataviews-view-activity {
|
|
2147
|
+
margin: 0 0 auto;
|
|
2148
|
+
padding: 8px 24px;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.dataviews-view-activity .dataviews-view-activity__group-header {
|
|
2152
|
+
font-size: 15px;
|
|
2153
|
+
font-weight: 499;
|
|
2154
|
+
color: #949494;
|
|
2155
|
+
margin: 0 0 8px 0;
|
|
2156
|
+
padding: 0;
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
.dataviews-view-activity .dataviews-view-activity__item-actions {
|
|
2160
|
+
min-width: 24px;
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
.dataviews-view-activity .dataviews-view-activity__item-content {
|
|
2164
|
+
flex-grow: 1;
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-title,
|
|
2168
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-description,
|
|
2169
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-fields {
|
|
2170
|
+
min-height: 16px;
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-title {
|
|
2174
|
+
position: relative;
|
|
2175
|
+
display: flex;
|
|
2176
|
+
align-items: center;
|
|
2177
|
+
flex: 1;
|
|
2178
|
+
overflow: hidden;
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-title--clickable {
|
|
2182
|
+
cursor: pointer;
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-title--clickable:focus-visible {
|
|
2186
|
+
outline: var(--wp-admin-border-width-focus) solid var(--wp-admin-theme-color);
|
|
2187
|
+
outline-offset: var(--wp-admin-border-width-focus);
|
|
2188
|
+
border-radius: 2px;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__primary-actions {
|
|
2192
|
+
display: flex;
|
|
2193
|
+
width: max-content;
|
|
2194
|
+
flex: 0 0 auto;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__primary-actions .components-button {
|
|
2198
|
+
position: relative;
|
|
2199
|
+
z-index: 1;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-fields {
|
|
2203
|
+
color: #757575;
|
|
2204
|
+
display: flex;
|
|
2205
|
+
gap: 12px;
|
|
2206
|
+
row-gap: 4px;
|
|
2207
|
+
flex-wrap: wrap;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-fields:empty {
|
|
2211
|
+
display: none;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-fields .dataviews-view-activity__item-field:has(.dataviews-view-activity__item-field-value:empty) {
|
|
2215
|
+
display: none;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
.dataviews-view-activity .dataviews-view-activity__item-content .dataviews-view-activity__item-fields .dataviews-view-activity__item-field-value {
|
|
2219
|
+
display: flex;
|
|
2220
|
+
align-items: center;
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
.dataviews-view-activity .dataviews-view-activity__item-type {
|
|
2224
|
+
align-self: stretch;
|
|
2225
|
+
flex-shrink: 0;
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
.dataviews-view-activity .dataviews-view-activity__item-type::after {
|
|
2229
|
+
content: "";
|
|
2230
|
+
flex: 1 1 auto;
|
|
2231
|
+
width: 1px;
|
|
2232
|
+
margin: 0 auto;
|
|
2233
|
+
background-color: #ddd;
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
.dataviews-view-activity .dataviews-view-activity__item-type::before {
|
|
2237
|
+
content: "";
|
|
2238
|
+
flex: 0 0 auto;
|
|
2239
|
+
width: 1px;
|
|
2240
|
+
margin: 0 auto;
|
|
2241
|
+
background-color: #ddd;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-compact .dataviews-view-activity__item-type {
|
|
2245
|
+
width: 8px;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-compact .dataviews-view-activity__item-type::before {
|
|
2249
|
+
height: 12px;
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-compact .dataviews-view-activity__item-type-icon {
|
|
2253
|
+
width: 11px;
|
|
2254
|
+
height: 11px;
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-compact .dataviews-view-activity__item-content {
|
|
2258
|
+
margin: 12px 0;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-balanced .dataviews-view-activity__item-type {
|
|
2262
|
+
width: 24px;
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-balanced .dataviews-view-activity__item-type::before {
|
|
2266
|
+
height: 12px;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-balanced .dataviews-view-activity__item-type-icon {
|
|
2270
|
+
width: 25px;
|
|
2271
|
+
height: 25px;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-balanced .dataviews-view-activity__item-content {
|
|
2275
|
+
margin: 12px 0;
|
|
2276
|
+
padding-top: 8px;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-comfortable .dataviews-view-activity__item-type {
|
|
2280
|
+
width: 32px;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-comfortable .dataviews-view-activity__item-type::before {
|
|
2284
|
+
height: 8px;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-comfortable .dataviews-view-activity__item-type-icon {
|
|
2288
|
+
width: 33px;
|
|
2289
|
+
height: 33px;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-comfortable .dataviews-view-activity__item-content {
|
|
2293
|
+
margin: 8px 0 16px;
|
|
2294
|
+
padding-top: 12px;
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
.dataviews-view-activity .dataviews-view-activity__item.is-comfortable .dataviews-view-activity__item-bullet, .dataviews-view-activity .dataviews-view-activity__item.is-balanced .dataviews-view-activity__item-bullet {
|
|
2298
|
+
width: 9px;
|
|
2299
|
+
height: 9px;
|
|
2300
|
+
position: relative;
|
|
2301
|
+
top: 50%;
|
|
2302
|
+
transform: translateY(-50%);
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
.dataviews-view-activity .dataviews-view-activity__item:first-child .dataviews-view-activity__item-type::before {
|
|
2306
|
+
visibility: hidden;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
.dataviews-view-activity .dataviews-view-activity__group:last-of-type > .dataviews-view-activity__item:last-of-type .dataviews-view-activity__item-type::after, .dataviews-view-activity > .dataviews-view-activity__item:last-child .dataviews-view-activity__item-type::after {
|
|
2310
|
+
background: linear-gradient(to bottom, #ddd 0%, rgba(221, 221, 221, 0.2) 60%, rgba(221, 221, 221, 0) 100%);
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
.dataviews-view-activity .dataviews-view-activity__item-type-icon {
|
|
2314
|
+
overflow: hidden;
|
|
2315
|
+
flex-shrink: 0;
|
|
2316
|
+
background-color: #fff;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
.dataviews-view-activity .dataviews-view-activity__item-type-icon img,
|
|
2320
|
+
.dataviews-view-activity .dataviews-view-activity__item-type-icon svg,
|
|
2321
|
+
.dataviews-view-activity .dataviews-view-activity__item-type-icon .dataviews-view-activity__item-bullet {
|
|
2322
|
+
display: block;
|
|
2323
|
+
width: 100%;
|
|
2324
|
+
height: 100%;
|
|
2325
|
+
margin: 0 auto;
|
|
2326
|
+
object-fit: cover;
|
|
2327
|
+
border-radius: 50%;
|
|
2328
|
+
box-sizing: border-box;
|
|
2329
|
+
box-shadow: inset 0 0 0 1px #ddd;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
.dataviews-view-activity .dataviews-view-activity__item-type-icon svg {
|
|
2333
|
+
padding: 4px;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
.dataviews-view-activity .dataviews-view-activity__item-type-icon .dataviews-view-activity__item-bullet {
|
|
2337
|
+
content: "";
|
|
2338
|
+
background-color: #ddd;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
.dataviews-view-activity + .dataviews-pagination {
|
|
2342
|
+
justify-content: space-between;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2192
2345
|
.dataviews-controls__datetime {
|
|
2193
2346
|
border: none;
|
|
2194
2347
|
padding: 0;
|
|
@@ -2815,7 +2968,7 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2815
2968
|
|
|
2816
2969
|
.font-library-modal .components-modal__content {
|
|
2817
2970
|
padding-top: 0;
|
|
2818
|
-
margin-bottom:
|
|
2971
|
+
margin-bottom: 60px !important;
|
|
2819
2972
|
}
|
|
2820
2973
|
|
|
2821
2974
|
.font-library-modal .font-library-modal__subtitle {
|
|
@@ -2829,7 +2982,7 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2829
2982
|
}
|
|
2830
2983
|
|
|
2831
2984
|
.font-library-modal__tabpanel-layout {
|
|
2832
|
-
margin-top:
|
|
2985
|
+
margin-top: 24px;
|
|
2833
2986
|
}
|
|
2834
2987
|
|
|
2835
2988
|
.font-library-modal__tabpanel-layout .font-library-modal__loading {
|
|
@@ -2846,19 +2999,15 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2846
2999
|
|
|
2847
3000
|
.font-library-modal__footer {
|
|
2848
3001
|
border-top: 1px solid #ddd;
|
|
2849
|
-
margin: 0 -
|
|
2850
|
-
padding: 16px
|
|
3002
|
+
margin: 0 -24px -24px;
|
|
3003
|
+
padding: 16px 24px;
|
|
2851
3004
|
position: absolute;
|
|
2852
|
-
bottom:
|
|
3005
|
+
bottom: 24px;
|
|
2853
3006
|
width: 100%;
|
|
2854
|
-
height:
|
|
3007
|
+
height: 60px;
|
|
2855
3008
|
background-color: #fff;
|
|
2856
3009
|
}
|
|
2857
3010
|
|
|
2858
|
-
.font-library-modal__category-select {
|
|
2859
|
-
min-width: 40%;
|
|
2860
|
-
}
|
|
2861
|
-
|
|
2862
3011
|
.font-library-modal__page-selection {
|
|
2863
3012
|
font-size: 11px;
|
|
2864
3013
|
font-weight: 499;
|
|
@@ -2896,13 +3045,16 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2896
3045
|
height: auto !important;
|
|
2897
3046
|
padding: 16px;
|
|
2898
3047
|
margin-top: -1px; /* To collapse the margin with the previous element */
|
|
2899
|
-
background-color: #f0f0f0;
|
|
2900
3048
|
}
|
|
2901
3049
|
|
|
2902
3050
|
.font-library-modal__font-card:hover {
|
|
2903
3051
|
background-color: #f0f0f0;
|
|
2904
3052
|
}
|
|
2905
3053
|
|
|
3054
|
+
.font-library-modal__font-card:focus {
|
|
3055
|
+
position: relative;
|
|
3056
|
+
}
|
|
3057
|
+
|
|
2906
3058
|
.font-library-modal__font-card .font-library-modal__font-card__name {
|
|
2907
3059
|
font-weight: bold;
|
|
2908
3060
|
}
|
|
@@ -2932,7 +3084,7 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2932
3084
|
top: 0;
|
|
2933
3085
|
border-bottom: 1px solid #ddd;
|
|
2934
3086
|
background: #fff;
|
|
2935
|
-
margin: 0 -
|
|
3087
|
+
margin: 0 -24px;
|
|
2936
3088
|
padding: 0 16px;
|
|
2937
3089
|
z-index: 1;
|
|
2938
3090
|
}
|
|
@@ -3264,10 +3416,6 @@ button.font-library-modal__upload-area {
|
|
|
3264
3416
|
color: #757575;
|
|
3265
3417
|
}
|
|
3266
3418
|
|
|
3267
|
-
.global-styles-ui-screen {
|
|
3268
|
-
margin: 12px 16px 16px;
|
|
3269
|
-
}
|
|
3270
|
-
|
|
3271
3419
|
.global-styles-ui-screen-typography__indicator {
|
|
3272
3420
|
height: 24px;
|
|
3273
3421
|
width: 24px;
|
|
@@ -3299,14 +3447,18 @@ button.font-library-modal__upload-area {
|
|
|
3299
3447
|
row-gap: 12px;
|
|
3300
3448
|
}
|
|
3301
3449
|
|
|
3302
|
-
.global-styles-ui-
|
|
3303
|
-
|
|
3450
|
+
.global-styles-ui-screen-header {
|
|
3451
|
+
margin-bottom: 12px;
|
|
3304
3452
|
}
|
|
3305
3453
|
|
|
3306
3454
|
.global-styles-ui-header {
|
|
3307
3455
|
margin-bottom: 0 !important;
|
|
3308
3456
|
}
|
|
3309
3457
|
|
|
3458
|
+
.global-styles-ui-header__description {
|
|
3459
|
+
margin: 12px 0 !important;
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3310
3462
|
.global-styles-ui-subtitle {
|
|
3311
3463
|
margin-bottom: 0 !important;
|
|
3312
3464
|
text-transform: uppercase;
|
|
@@ -3455,10 +3607,12 @@ button.font-library-modal__upload-area {
|
|
|
3455
3607
|
height: 100%;
|
|
3456
3608
|
}
|
|
3457
3609
|
|
|
3458
|
-
.global-styles-ui-sidebar__navigator-screen {
|
|
3610
|
+
.global-styles-ui-sidebar__navigator-screen.components-navigator-screen {
|
|
3459
3611
|
display: flex;
|
|
3460
3612
|
flex-direction: column;
|
|
3461
3613
|
height: 100%;
|
|
3614
|
+
padding: 24px;
|
|
3615
|
+
outline: none;
|
|
3462
3616
|
}
|
|
3463
3617
|
|
|
3464
3618
|
.global-styles-ui-sidebar__navigator-screen .single-column {
|
|
@@ -3479,15 +3633,15 @@ button.font-library-modal__upload-area {
|
|
|
3479
3633
|
border-radius: 2px;
|
|
3480
3634
|
}
|
|
3481
3635
|
|
|
3636
|
+
.global-styles-ui-screen-root__active-style-tile-preview {
|
|
3637
|
+
clip-path: border-box;
|
|
3638
|
+
}
|
|
3639
|
+
|
|
3482
3640
|
.global-styles-ui-color-palette-panel,
|
|
3483
3641
|
.global-styles-ui-gradient-palette-panel {
|
|
3484
3642
|
padding: 16px;
|
|
3485
3643
|
}
|
|
3486
3644
|
|
|
3487
|
-
.components-navigator-screen {
|
|
3488
|
-
padding: 12px;
|
|
3489
|
-
}
|
|
3490
|
-
|
|
3491
3645
|
.edit-site-custom-template-modal__contents-wrapper {
|
|
3492
3646
|
height: 100%;
|
|
3493
3647
|
justify-content: flex-start !important;
|
|
@@ -4854,13 +5008,6 @@ body:has(.edit-site-resizable-frame__inner.is-resizing) {
|
|
|
4854
5008
|
padding-right: 0;
|
|
4855
5009
|
padding-left: 0;
|
|
4856
5010
|
}
|
|
4857
|
-
.edit-site-styles .global-styles-ui-sidebar__navigator-provider .global-styles-ui-sidebar__navigator-screen {
|
|
4858
|
-
padding-top: 12px;
|
|
4859
|
-
padding-right: 12px;
|
|
4860
|
-
padding-left: 12px;
|
|
4861
|
-
padding-bottom: 12px;
|
|
4862
|
-
outline: none;
|
|
4863
|
-
}
|
|
4864
5011
|
.edit-site-styles .edit-site-sidebar-button {
|
|
4865
5012
|
color: #1e1e1e;
|
|
4866
5013
|
}
|