@wordpress/editor 14.36.0 → 14.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/README.md +2 -2
- package/build/components/autocompleters/user.js.map +2 -2
- package/build/components/collab-sidebar/comments.js +4 -12
- package/build/components/collab-sidebar/comments.js.map +2 -2
- package/build/components/collab-sidebar/hooks.js +7 -19
- package/build/components/collab-sidebar/hooks.js.map +2 -2
- package/build/components/document-bar/index.js +19 -8
- package/build/components/document-bar/index.js.map +3 -3
- package/build/components/document-bar/useEditedSectionDetails.js +95 -0
- package/build/components/document-bar/useEditedSectionDetails.js.map +7 -0
- package/build/components/page-attributes/parent.js +1 -0
- package/build/components/page-attributes/parent.js.map +2 -2
- package/build/components/post-card-panel/index.js +1 -1
- package/build/components/post-card-panel/index.js.map +2 -2
- package/build/dataviews/store/private-actions.js +9 -1
- package/build/dataviews/store/private-actions.js.map +2 -2
- package/build/utils/get-template-part-icon.js +9 -4
- package/build/utils/get-template-part-icon.js.map +3 -3
- package/build-module/components/autocompleters/user.js.map +2 -2
- package/build-module/components/collab-sidebar/comments.js +4 -12
- package/build-module/components/collab-sidebar/comments.js.map +2 -2
- package/build-module/components/collab-sidebar/hooks.js +7 -20
- package/build-module/components/collab-sidebar/hooks.js.map +2 -2
- package/build-module/components/document-bar/index.js +20 -9
- package/build-module/components/document-bar/index.js.map +2 -2
- package/build-module/components/document-bar/useEditedSectionDetails.js +74 -0
- package/build-module/components/document-bar/useEditedSectionDetails.js.map +7 -0
- package/build-module/components/page-attributes/parent.js +1 -0
- package/build-module/components/page-attributes/parent.js.map +2 -2
- package/build-module/components/post-card-panel/index.js +1 -1
- package/build-module/components/post-card-panel/index.js.map +2 -2
- package/build-module/dataviews/store/private-actions.js +11 -2
- package/build-module/dataviews/store/private-actions.js.map +2 -2
- package/build-module/utils/get-template-part-icon.js +10 -4
- package/build-module/utils/get-template-part-icon.js.map +2 -2
- package/build-style/style-rtl.css +44 -126
- package/build-style/style.css +44 -126
- package/build-types/components/autocompleters/user.d.ts +8 -2
- package/build-types/components/autocompleters/user.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/comments.d.ts.map +1 -1
- package/build-types/components/collab-sidebar/hooks.d.ts +0 -1
- package/build-types/components/collab-sidebar/hooks.d.ts.map +1 -1
- package/build-types/components/document-bar/index.d.ts.map +1 -1
- package/build-types/components/document-bar/useEditedSectionDetails.d.ts +8 -0
- package/build-types/components/document-bar/useEditedSectionDetails.d.ts.map +1 -0
- package/build-types/components/page-attributes/parent.d.ts.map +1 -1
- package/build-types/components/post-template/hooks.d.ts +1 -1
- package/build-types/components/post-template/hooks.d.ts.map +1 -1
- package/build-types/dataviews/store/private-actions.d.ts.map +1 -1
- package/build-types/store/index.d.ts +1 -1
- package/build-types/store/index.d.ts.map +1 -1
- package/build-types/utils/get-template-part-icon.d.ts +3 -3
- package/build-types/utils/get-template-part-icon.d.ts.map +1 -1
- package/package.json +40 -40
- package/src/components/autocompleters/user.js +6 -0
- package/src/components/collab-sidebar/comments.js +16 -23
- package/src/components/collab-sidebar/hooks.js +7 -24
- package/src/components/document-bar/index.js +41 -9
- package/src/components/document-bar/useEditedSectionDetails.js +103 -0
- package/src/components/global-styles-sidebar/style.scss +2 -2
- package/src/components/page-attributes/parent.js +2 -1
- package/src/components/post-card-panel/index.js +1 -1
- package/src/dataviews/store/private-actions.ts +16 -0
- package/src/utils/get-template-part-icon.js +19 -6
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -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;
|
|
@@ -802,7 +790,7 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
802
790
|
|
|
803
791
|
.font-library-modal .components-modal__content {
|
|
804
792
|
padding-top: 0;
|
|
805
|
-
margin-bottom:
|
|
793
|
+
margin-bottom: 60px !important;
|
|
806
794
|
}
|
|
807
795
|
|
|
808
796
|
.font-library-modal .font-library-modal__subtitle {
|
|
@@ -816,7 +804,7 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
816
804
|
}
|
|
817
805
|
|
|
818
806
|
.font-library-modal__tabpanel-layout {
|
|
819
|
-
margin-top:
|
|
807
|
+
margin-top: 24px;
|
|
820
808
|
}
|
|
821
809
|
|
|
822
810
|
.font-library-modal__tabpanel-layout .font-library-modal__loading {
|
|
@@ -833,19 +821,15 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
833
821
|
|
|
834
822
|
.font-library-modal__footer {
|
|
835
823
|
border-top: 1px solid #ddd;
|
|
836
|
-
margin: 0 -
|
|
837
|
-
padding: 16px
|
|
824
|
+
margin: 0 -24px -24px;
|
|
825
|
+
padding: 16px 24px;
|
|
838
826
|
position: absolute;
|
|
839
|
-
bottom:
|
|
827
|
+
bottom: 24px;
|
|
840
828
|
width: 100%;
|
|
841
|
-
height:
|
|
829
|
+
height: 60px;
|
|
842
830
|
background-color: #fff;
|
|
843
831
|
}
|
|
844
832
|
|
|
845
|
-
.font-library-modal__category-select {
|
|
846
|
-
min-width: 40%;
|
|
847
|
-
}
|
|
848
|
-
|
|
849
833
|
.font-library-modal__page-selection {
|
|
850
834
|
font-size: 11px;
|
|
851
835
|
font-weight: 499;
|
|
@@ -883,13 +867,16 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
883
867
|
height: auto !important;
|
|
884
868
|
padding: 16px;
|
|
885
869
|
margin-top: -1px; /* To collapse the margin with the previous element */
|
|
886
|
-
background-color: #f0f0f0;
|
|
887
870
|
}
|
|
888
871
|
|
|
889
872
|
.font-library-modal__font-card:hover {
|
|
890
873
|
background-color: #f0f0f0;
|
|
891
874
|
}
|
|
892
875
|
|
|
876
|
+
.font-library-modal__font-card:focus {
|
|
877
|
+
position: relative;
|
|
878
|
+
}
|
|
879
|
+
|
|
893
880
|
.font-library-modal__font-card .font-library-modal__font-card__name {
|
|
894
881
|
font-weight: bold;
|
|
895
882
|
}
|
|
@@ -919,7 +906,7 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
919
906
|
top: 0;
|
|
920
907
|
border-bottom: 1px solid #ddd;
|
|
921
908
|
background: #fff;
|
|
922
|
-
margin: 0 -
|
|
909
|
+
margin: 0 -24px;
|
|
923
910
|
padding: 0 16px;
|
|
924
911
|
z-index: 1;
|
|
925
912
|
}
|
|
@@ -1227,7 +1214,6 @@ button.font-library-modal__upload-area {
|
|
|
1227
1214
|
max-width: 100%;
|
|
1228
1215
|
display: block;
|
|
1229
1216
|
width: 100%;
|
|
1230
|
-
clip-path: border-box;
|
|
1231
1217
|
}
|
|
1232
1218
|
|
|
1233
1219
|
.global-styles-ui-typography-preview {
|
|
@@ -1252,10 +1238,6 @@ button.font-library-modal__upload-area {
|
|
|
1252
1238
|
color: #757575;
|
|
1253
1239
|
}
|
|
1254
1240
|
|
|
1255
|
-
.global-styles-ui-screen {
|
|
1256
|
-
margin: 12px 16px 16px;
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
1241
|
.global-styles-ui-screen-typography__indicator {
|
|
1260
1242
|
height: 24px;
|
|
1261
1243
|
width: 24px;
|
|
@@ -1287,14 +1269,18 @@ button.font-library-modal__upload-area {
|
|
|
1287
1269
|
row-gap: 12px;
|
|
1288
1270
|
}
|
|
1289
1271
|
|
|
1290
|
-
.global-styles-ui-
|
|
1291
|
-
|
|
1272
|
+
.global-styles-ui-screen-header {
|
|
1273
|
+
margin-bottom: 12px;
|
|
1292
1274
|
}
|
|
1293
1275
|
|
|
1294
1276
|
.global-styles-ui-header {
|
|
1295
1277
|
margin-bottom: 0 !important;
|
|
1296
1278
|
}
|
|
1297
1279
|
|
|
1280
|
+
.global-styles-ui-header__description {
|
|
1281
|
+
margin: 12px 0 !important;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1298
1284
|
.global-styles-ui-subtitle {
|
|
1299
1285
|
margin-bottom: 0 !important;
|
|
1300
1286
|
text-transform: uppercase;
|
|
@@ -1443,10 +1429,12 @@ button.font-library-modal__upload-area {
|
|
|
1443
1429
|
height: 100%;
|
|
1444
1430
|
}
|
|
1445
1431
|
|
|
1446
|
-
.global-styles-ui-sidebar__navigator-screen {
|
|
1432
|
+
.global-styles-ui-sidebar__navigator-screen.components-navigator-screen {
|
|
1447
1433
|
display: flex;
|
|
1448
1434
|
flex-direction: column;
|
|
1449
1435
|
height: 100%;
|
|
1436
|
+
padding: 24px;
|
|
1437
|
+
outline: none;
|
|
1450
1438
|
}
|
|
1451
1439
|
|
|
1452
1440
|
.global-styles-ui-sidebar__navigator-screen .single-column {
|
|
@@ -1467,15 +1455,15 @@ button.font-library-modal__upload-area {
|
|
|
1467
1455
|
border-radius: 2px;
|
|
1468
1456
|
}
|
|
1469
1457
|
|
|
1458
|
+
.global-styles-ui-screen-root__active-style-tile-preview {
|
|
1459
|
+
clip-path: border-box;
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1470
1462
|
.global-styles-ui-color-palette-panel,
|
|
1471
1463
|
.global-styles-ui-gradient-palette-panel {
|
|
1472
1464
|
padding: 16px;
|
|
1473
1465
|
}
|
|
1474
1466
|
|
|
1475
|
-
.components-navigator-screen {
|
|
1476
|
-
padding: 12px;
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
1467
|
/**
|
|
1480
1468
|
* Colors
|
|
1481
1469
|
*/
|
|
@@ -1579,7 +1567,7 @@ button.font-library-modal__upload-area {
|
|
|
1579
1567
|
.dataviews__view-actions,
|
|
1580
1568
|
.dataviews-filters__container {
|
|
1581
1569
|
box-sizing: border-box;
|
|
1582
|
-
padding: 16px
|
|
1570
|
+
padding: 16px 24px;
|
|
1583
1571
|
flex-shrink: 0;
|
|
1584
1572
|
position: sticky;
|
|
1585
1573
|
right: 0;
|
|
@@ -1594,7 +1582,7 @@ button.font-library-modal__upload-area {
|
|
|
1594
1582
|
}
|
|
1595
1583
|
.dataviews-no-results,
|
|
1596
1584
|
.dataviews-loading {
|
|
1597
|
-
padding: 0
|
|
1585
|
+
padding: 0 24px;
|
|
1598
1586
|
flex-grow: 1;
|
|
1599
1587
|
display: flex;
|
|
1600
1588
|
align-items: center;
|
|
@@ -1616,11 +1604,6 @@ button.font-library-modal__upload-area {
|
|
|
1616
1604
|
.dataviews-filters__container {
|
|
1617
1605
|
padding: 12px 24px;
|
|
1618
1606
|
}
|
|
1619
|
-
.dataviews-no-results,
|
|
1620
|
-
.dataviews-loading {
|
|
1621
|
-
padding-right: 24px;
|
|
1622
|
-
padding-left: 24px;
|
|
1623
|
-
}
|
|
1624
1607
|
}
|
|
1625
1608
|
.dataviews-title-field {
|
|
1626
1609
|
font-size: 13px;
|
|
@@ -1682,7 +1665,7 @@ button.font-library-modal__upload-area {
|
|
|
1682
1665
|
}
|
|
1683
1666
|
|
|
1684
1667
|
/**
|
|
1685
|
-
*
|
|
1668
|
+
* When DataViews are placed within cards, apply a consistent top padding.
|
|
1686
1669
|
*/
|
|
1687
1670
|
.components-card__body:has(> .dataviews-wrapper),
|
|
1688
1671
|
.components-card__body:has(> .dataviews-picker-wrapper) {
|
|
@@ -1690,35 +1673,6 @@ button.font-library-modal__upload-area {
|
|
|
1690
1673
|
overflow: hidden;
|
|
1691
1674
|
}
|
|
1692
1675
|
|
|
1693
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews__view-actions,
|
|
1694
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-filters__container,
|
|
1695
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-footer,
|
|
1696
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-grid,
|
|
1697
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-loading,
|
|
1698
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-no-results,
|
|
1699
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews__view-actions,
|
|
1700
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-filters__container,
|
|
1701
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-footer,
|
|
1702
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-grid,
|
|
1703
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-loading,
|
|
1704
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-no-results {
|
|
1705
|
-
padding-inline: 24px;
|
|
1706
|
-
}
|
|
1707
|
-
|
|
1708
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr td:first-child,
|
|
1709
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr th:first-child,
|
|
1710
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr td:first-child,
|
|
1711
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr th:first-child {
|
|
1712
|
-
padding-inline-start: 24px;
|
|
1713
|
-
}
|
|
1714
|
-
|
|
1715
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr td:last-child,
|
|
1716
|
-
.components-card__body:has(> .dataviews-wrapper) .dataviews-view-table tr th:last-child,
|
|
1717
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr td:last-child,
|
|
1718
|
-
.components-card__body:has(> .dataviews-picker-wrapper) .dataviews-view-table tr th:last-child {
|
|
1719
|
-
padding-inline-end: 24px;
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
1676
|
.dataviews-bulk-actions-footer__item-count {
|
|
1723
1677
|
color: #1e1e1e;
|
|
1724
1678
|
font-weight: 499;
|
|
@@ -2320,7 +2274,7 @@ button.font-library-modal__upload-area {
|
|
|
2320
2274
|
bottom: 0;
|
|
2321
2275
|
right: 0;
|
|
2322
2276
|
background-color: inherit;
|
|
2323
|
-
padding: 12px
|
|
2277
|
+
padding: 12px 24px;
|
|
2324
2278
|
border-top: 1px solid #f0f0f0;
|
|
2325
2279
|
flex-shrink: 0;
|
|
2326
2280
|
}
|
|
@@ -2334,11 +2288,6 @@ button.font-library-modal__upload-area {
|
|
|
2334
2288
|
z-index: 2;
|
|
2335
2289
|
}
|
|
2336
2290
|
|
|
2337
|
-
@container (max-width: 430px) {
|
|
2338
|
-
.dataviews-footer {
|
|
2339
|
-
padding: 12px 24px;
|
|
2340
|
-
}
|
|
2341
|
-
}
|
|
2342
2291
|
@container (max-width: 560px) {
|
|
2343
2292
|
.dataviews-footer {
|
|
2344
2293
|
flex-direction: column !important;
|
|
@@ -2465,31 +2414,22 @@ button.font-library-modal__upload-area {
|
|
|
2465
2414
|
gap: 32px;
|
|
2466
2415
|
grid-template-rows: max-content;
|
|
2467
2416
|
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
|
2468
|
-
padding: 0
|
|
2417
|
+
padding: 0 24px 24px;
|
|
2469
2418
|
container-type: inline-size;
|
|
2470
|
-
/**
|
|
2471
|
-
* Breakpoints were adjusted from media queries breakpoints to account for
|
|
2472
|
-
* the sidebar width. This was done to match the existing styles we had.
|
|
2473
|
-
*/
|
|
2474
2419
|
}
|
|
2475
2420
|
|
|
2476
|
-
@container (max-width: 430px) {
|
|
2477
|
-
.dataviews-view-grid-items {
|
|
2478
|
-
padding-right: 24px;
|
|
2479
|
-
padding-left: 24px;
|
|
2480
|
-
}
|
|
2481
|
-
}
|
|
2482
2421
|
@media not (prefers-reduced-motion) {
|
|
2483
2422
|
.dataviews-view-grid-items {
|
|
2484
2423
|
transition: padding ease-out 0.1s;
|
|
2485
2424
|
}
|
|
2486
2425
|
}
|
|
2487
2426
|
.dataviews-view-grid {
|
|
2488
|
-
padding: 0
|
|
2427
|
+
padding: 0 24px 24px;
|
|
2489
2428
|
display: flex;
|
|
2490
2429
|
flex-direction: column;
|
|
2491
2430
|
gap: 32px;
|
|
2492
2431
|
container-type: inline-size;
|
|
2432
|
+
margin-bottom: auto;
|
|
2493
2433
|
}
|
|
2494
2434
|
|
|
2495
2435
|
@media not (prefers-reduced-motion) {
|
|
@@ -2497,12 +2437,6 @@ button.font-library-modal__upload-area {
|
|
|
2497
2437
|
transition: padding ease-out 0.1s;
|
|
2498
2438
|
}
|
|
2499
2439
|
}
|
|
2500
|
-
@container (max-width: 430px) {
|
|
2501
|
-
.dataviews-view-grid {
|
|
2502
|
-
padding-right: 24px;
|
|
2503
|
-
padding-left: 24px;
|
|
2504
|
-
}
|
|
2505
|
-
}
|
|
2506
2440
|
.dataviews-view-grid .dataviews-view-grid__row {
|
|
2507
2441
|
display: grid;
|
|
2508
2442
|
gap: 32px;
|
|
@@ -2703,16 +2637,10 @@ button.font-library-modal__upload-area {
|
|
|
2703
2637
|
font-weight: 499;
|
|
2704
2638
|
color: #1e1e1e;
|
|
2705
2639
|
margin: 0 0 8px 0;
|
|
2706
|
-
padding: 0
|
|
2640
|
+
padding: 0 24px;
|
|
2707
2641
|
container-type: inline-size;
|
|
2708
2642
|
}
|
|
2709
2643
|
|
|
2710
|
-
@container (max-width: 430px) {
|
|
2711
|
-
.dataviews-view-grid__group-header {
|
|
2712
|
-
padding-right: 24px;
|
|
2713
|
-
padding-left: 24px;
|
|
2714
|
-
}
|
|
2715
|
-
}
|
|
2716
2644
|
div.dataviews-view-list {
|
|
2717
2645
|
list-style-type: none;
|
|
2718
2646
|
}
|
|
@@ -3001,12 +2929,12 @@ div.dataviews-view-list {
|
|
|
3001
2929
|
|
|
3002
2930
|
.dataviews-view-table tr td:first-child,
|
|
3003
2931
|
.dataviews-view-table tr th:first-child {
|
|
3004
|
-
padding-right:
|
|
2932
|
+
padding-right: 24px;
|
|
3005
2933
|
}
|
|
3006
2934
|
|
|
3007
2935
|
.dataviews-view-table tr td:last-child,
|
|
3008
2936
|
.dataviews-view-table tr th:last-child {
|
|
3009
|
-
padding-left:
|
|
2937
|
+
padding-left: 24px;
|
|
3010
2938
|
}
|
|
3011
2939
|
|
|
3012
2940
|
.dataviews-view-table tr:last-child {
|
|
@@ -3170,16 +3098,6 @@ div.dataviews-view-list {
|
|
|
3170
3098
|
padding-left: 0;
|
|
3171
3099
|
}
|
|
3172
3100
|
|
|
3173
|
-
@container (max-width: 430px) {
|
|
3174
|
-
.dataviews-view-table tr td:first-child,
|
|
3175
|
-
.dataviews-view-table tr th:first-child {
|
|
3176
|
-
padding-right: 24px;
|
|
3177
|
-
}
|
|
3178
|
-
.dataviews-view-table tr td:last-child,
|
|
3179
|
-
.dataviews-view-table tr th:last-child {
|
|
3180
|
-
padding-left: 24px;
|
|
3181
|
-
}
|
|
3182
|
-
}
|
|
3183
3101
|
.dataviews-view-table-selection-checkbox {
|
|
3184
3102
|
--checkbox-input-size: 24px;
|
|
3185
3103
|
}
|
|
@@ -3223,12 +3141,12 @@ div.dataviews-view-list {
|
|
|
3223
3141
|
|
|
3224
3142
|
.dataviews-view-table__group-header-row .dataviews-view-table__group-header-cell {
|
|
3225
3143
|
font-weight: 499;
|
|
3226
|
-
padding: 12px
|
|
3144
|
+
padding: 12px 24px;
|
|
3227
3145
|
color: #1e1e1e;
|
|
3228
3146
|
}
|
|
3229
3147
|
|
|
3230
3148
|
/* Column width intents via colgroup: make non-primary columns shrink-to-fit */
|
|
3231
|
-
.dataviews-view-table col[class^=dataviews-view-table__col-]:not(.dataviews-view-table__col-
|
|
3149
|
+
.dataviews-view-table col[class^=dataviews-view-table__col-]:not(.dataviews-view-table__col-first-data) {
|
|
3232
3150
|
width: 1%;
|
|
3233
3151
|
}
|
|
3234
3152
|
|
|
@@ -3426,7 +3344,7 @@ div.dataviews-view-list {
|
|
|
3426
3344
|
|
|
3427
3345
|
.dataviews-view-activity {
|
|
3428
3346
|
margin: 0 0 auto;
|
|
3429
|
-
padding: 8px
|
|
3347
|
+
padding: 8px 24px;
|
|
3430
3348
|
}
|
|
3431
3349
|
|
|
3432
3350
|
.dataviews-view-activity .dataviews-view-activity__group-header {
|
|
@@ -4481,8 +4399,8 @@ div.dataviews-view-list {
|
|
|
4481
4399
|
.editor-global-styles-sidebar__panel {
|
|
4482
4400
|
flex: 1;
|
|
4483
4401
|
}
|
|
4484
|
-
.editor-global-styles-sidebar .components-navigator-screen {
|
|
4485
|
-
padding:
|
|
4402
|
+
.editor-global-styles-sidebar .global-styles-ui-sidebar__navigator-screen.components-navigator-screen {
|
|
4403
|
+
padding: 12px;
|
|
4486
4404
|
}
|
|
4487
4405
|
|
|
4488
4406
|
.editor-global-styles-sidebar .editor-global-styles-sidebar__header-title {
|