@wordpress/edit-site 6.26.1-next.719a03cbe.0 → 6.27.1-next.46f643fa0.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 +2 -0
- package/build/components/add-new-template/utils.js +8 -1
- package/build/components/add-new-template/utils.js.map +1 -1
- package/build-module/components/add-new-template/utils.js +8 -1
- package/build-module/components/add-new-template/utils.js.map +1 -1
- package/build-style/posts-rtl.css +72 -50
- package/build-style/posts.css +72 -50
- package/build-style/style-rtl.css +100 -71
- package/build-style/style.css +100 -71
- package/package.json +42 -42
- package/src/components/add-new-template/utils.js +14 -4
- package/src/components/editor/style.scss +2 -2
- package/src/components/global-styles/font-library-modal/style.scss +4 -0
- package/src/components/page-templates/style.scss +0 -11
- package/src/components/sidebar-navigation-screen-navigation-menus/style.scss +0 -4
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -400,7 +400,9 @@
|
|
|
400
400
|
line-height: 1.4;
|
|
401
401
|
}
|
|
402
402
|
.dataviews-filters__summary-popover .components-popover__content {
|
|
403
|
-
width:
|
|
403
|
+
width: 100%;
|
|
404
|
+
min-width: 230px;
|
|
405
|
+
max-width: 250px;
|
|
404
406
|
border-radius: 4px;
|
|
405
407
|
}
|
|
406
408
|
.dataviews-filters__summary-popover.components-dropdown__content .components-popover__content {
|
|
@@ -1045,9 +1047,22 @@
|
|
|
1045
1047
|
|
|
1046
1048
|
.dataviews-view-grid {
|
|
1047
1049
|
margin-bottom: auto;
|
|
1050
|
+
display: grid;
|
|
1051
|
+
gap: 32px;
|
|
1048
1052
|
grid-template-rows: max-content;
|
|
1053
|
+
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
|
1049
1054
|
padding: 0 48px 24px;
|
|
1050
1055
|
container-type: inline-size;
|
|
1056
|
+
/**
|
|
1057
|
+
* Breakpoints were adjusted from media queries breakpoints to account for
|
|
1058
|
+
* the sidebar width. This was done to match the existing styles we had.
|
|
1059
|
+
*/
|
|
1060
|
+
}
|
|
1061
|
+
@container (max-width: 480px) {
|
|
1062
|
+
.dataviews-view-grid {
|
|
1063
|
+
padding-right: 24px;
|
|
1064
|
+
padding-left: 24px;
|
|
1065
|
+
}
|
|
1051
1066
|
}
|
|
1052
1067
|
@media not (prefers-reduced-motion) {
|
|
1053
1068
|
.dataviews-view-grid {
|
|
@@ -1087,7 +1102,7 @@
|
|
|
1087
1102
|
width: 100%;
|
|
1088
1103
|
min-height: 200px;
|
|
1089
1104
|
aspect-ratio: 1/1;
|
|
1090
|
-
background-color: #
|
|
1105
|
+
background-color: #fff;
|
|
1091
1106
|
border-radius: 4px;
|
|
1092
1107
|
position: relative;
|
|
1093
1108
|
}
|
|
@@ -1141,40 +1156,6 @@
|
|
|
1141
1156
|
padding-bottom: 12px;
|
|
1142
1157
|
}
|
|
1143
1158
|
|
|
1144
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1145
|
-
/**
|
|
1146
|
-
* Breakpoints were adjusted from media queries breakpoints to account for
|
|
1147
|
-
* the sidebar width. This was done to match the existing styles we had.
|
|
1148
|
-
*/
|
|
1149
|
-
}
|
|
1150
|
-
@container (max-width: 480px) {
|
|
1151
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1152
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1153
|
-
padding-right: 24px;
|
|
1154
|
-
padding-left: 24px;
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
@container (min-width: 480px) {
|
|
1158
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1159
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1160
|
-
}
|
|
1161
|
-
}
|
|
1162
|
-
@container (min-width: 780px) {
|
|
1163
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1164
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
@container (min-width: 1140px) {
|
|
1168
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1169
|
-
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1170
|
-
}
|
|
1171
|
-
}
|
|
1172
|
-
@container (min-width: 1520px) {
|
|
1173
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1174
|
-
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
1159
|
.dataviews-view-grid__field-value:empty,
|
|
1179
1160
|
.dataviews-view-grid__field:empty {
|
|
1180
1161
|
display: none;
|
|
@@ -1202,6 +1183,14 @@
|
|
|
1202
1183
|
cursor: pointer;
|
|
1203
1184
|
}
|
|
1204
1185
|
|
|
1186
|
+
.dataviews-view-grid__group-header {
|
|
1187
|
+
font-size: 16px;
|
|
1188
|
+
font-weight: 600;
|
|
1189
|
+
color: #1e1e1e;
|
|
1190
|
+
margin: 0 0 8px 0;
|
|
1191
|
+
padding: 0 48px;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1205
1194
|
div.dataviews-view-list {
|
|
1206
1195
|
list-style-type: none;
|
|
1207
1196
|
}
|
|
@@ -1315,7 +1304,7 @@ div.dataviews-view-list {
|
|
|
1315
1304
|
overflow: hidden;
|
|
1316
1305
|
position: relative;
|
|
1317
1306
|
flex-shrink: 0;
|
|
1318
|
-
background-color: #
|
|
1307
|
+
background-color: #fff;
|
|
1319
1308
|
border-radius: 4px;
|
|
1320
1309
|
}
|
|
1321
1310
|
.dataviews-view-list .dataviews-view-list__media-wrapper img {
|
|
@@ -1567,6 +1556,26 @@ div.dataviews-view-list {
|
|
|
1567
1556
|
|
|
1568
1557
|
.dataviews-column-primary__media {
|
|
1569
1558
|
max-width: 60px;
|
|
1559
|
+
overflow: hidden;
|
|
1560
|
+
position: relative;
|
|
1561
|
+
flex-shrink: 0;
|
|
1562
|
+
background-color: #fff;
|
|
1563
|
+
border-radius: 4px;
|
|
1564
|
+
}
|
|
1565
|
+
.dataviews-column-primary__media img {
|
|
1566
|
+
width: 100%;
|
|
1567
|
+
height: 100%;
|
|
1568
|
+
object-fit: cover;
|
|
1569
|
+
}
|
|
1570
|
+
.dataviews-column-primary__media::after {
|
|
1571
|
+
content: "";
|
|
1572
|
+
position: absolute;
|
|
1573
|
+
top: 0;
|
|
1574
|
+
right: 0;
|
|
1575
|
+
width: 100%;
|
|
1576
|
+
height: 100%;
|
|
1577
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
1578
|
+
border-radius: 4px;
|
|
1570
1579
|
}
|
|
1571
1580
|
|
|
1572
1581
|
.dataviews-controls__datetime {
|
|
@@ -1574,11 +1583,24 @@ div.dataviews-view-list {
|
|
|
1574
1583
|
padding: 0;
|
|
1575
1584
|
}
|
|
1576
1585
|
|
|
1577
|
-
.dataviews-
|
|
1578
|
-
.dataviews-
|
|
1586
|
+
.dataviews-controls__relative-date-number,
|
|
1587
|
+
.dataviews-controls__relative-date-unit {
|
|
1579
1588
|
flex: 1 1 50%;
|
|
1580
1589
|
}
|
|
1581
1590
|
|
|
1591
|
+
.dataviews-controls__date input[type=date]::-webkit-inner-spin-button,
|
|
1592
|
+
.dataviews-controls__date input[type=date]::-webkit-calendar-picker-indicator {
|
|
1593
|
+
display: none;
|
|
1594
|
+
-webkit-appearance: none;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.dataviews-controls__date-preset {
|
|
1598
|
+
border: 1px solid #ddd;
|
|
1599
|
+
}
|
|
1600
|
+
.dataviews-controls__date-preset:active {
|
|
1601
|
+
background-color: #000;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1582
1604
|
.dataforms-layouts-panel__field {
|
|
1583
1605
|
width: 100%;
|
|
1584
1606
|
min-height: 32px;
|
|
@@ -1821,11 +1843,28 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
1821
1843
|
height: 16px;
|
|
1822
1844
|
}
|
|
1823
1845
|
|
|
1824
|
-
.dataviews-view-
|
|
1825
|
-
.dataviews-view-
|
|
1846
|
+
.dataviews-view-grid__media .fields-controls__featured-image-image,
|
|
1847
|
+
.dataviews-view-grid__media .fields-controls__featured-image-placeholder,
|
|
1848
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-image,
|
|
1849
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-placeholder,
|
|
1850
|
+
.dataviews-view-list__media-wrapper .fields-controls__featured-image-image,
|
|
1851
|
+
.dataviews-view-list__media-wrapper .fields-controls__featured-image-placeholder {
|
|
1852
|
+
width: 100%;
|
|
1853
|
+
height: 100%;
|
|
1854
|
+
display: block;
|
|
1855
|
+
border-radius: 4px;
|
|
1856
|
+
}
|
|
1857
|
+
.dataviews-view-grid__media .fields-controls__featured-image-placeholder,
|
|
1858
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-placeholder,
|
|
1859
|
+
.dataviews-view-list__media-wrapper .fields-controls__featured-image-placeholder {
|
|
1860
|
+
box-shadow: none;
|
|
1861
|
+
background: #f0f0f0;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-image,
|
|
1865
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-placeholder {
|
|
1826
1866
|
width: 32px;
|
|
1827
1867
|
height: 32px;
|
|
1828
|
-
display: block;
|
|
1829
1868
|
}
|
|
1830
1869
|
|
|
1831
1870
|
.fields-controls__template-modal {
|
|
@@ -2711,16 +2750,6 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2711
2750
|
text-wrap: balance;
|
|
2712
2751
|
text-wrap: pretty;
|
|
2713
2752
|
}
|
|
2714
|
-
.dataviews-view-table .page-templates-preview-field::after {
|
|
2715
|
-
content: "";
|
|
2716
|
-
position: absolute;
|
|
2717
|
-
top: 0;
|
|
2718
|
-
right: 0;
|
|
2719
|
-
width: 100%;
|
|
2720
|
-
height: 100%;
|
|
2721
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
2722
|
-
border-radius: 4px;
|
|
2723
|
-
}
|
|
2724
2753
|
|
|
2725
2754
|
.page-templates-description {
|
|
2726
2755
|
max-width: 50em;
|
|
@@ -2814,8 +2843,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2814
2843
|
/* stylelint-enable */
|
|
2815
2844
|
top: 0;
|
|
2816
2845
|
right: 0;
|
|
2817
|
-
height:
|
|
2818
|
-
width:
|
|
2846
|
+
height: 64px;
|
|
2847
|
+
width: 64px;
|
|
2819
2848
|
z-index: 100;
|
|
2820
2849
|
}
|
|
2821
2850
|
.edit-site-editor__view-mode-toggle .components-button {
|
|
@@ -2845,8 +2874,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2845
2874
|
position: absolute;
|
|
2846
2875
|
top: 0;
|
|
2847
2876
|
right: 0;
|
|
2848
|
-
width:
|
|
2849
|
-
height:
|
|
2877
|
+
width: 64px;
|
|
2878
|
+
height: 64px;
|
|
2850
2879
|
display: flex;
|
|
2851
2880
|
align-items: center;
|
|
2852
2881
|
justify-content: center;
|
|
@@ -3074,8 +3103,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3074
3103
|
/* stylelint-enable */
|
|
3075
3104
|
position: relative;
|
|
3076
3105
|
color: #fff;
|
|
3077
|
-
height:
|
|
3078
|
-
width:
|
|
3106
|
+
height: 64px;
|
|
3107
|
+
width: 64px;
|
|
3079
3108
|
overflow: hidden;
|
|
3080
3109
|
padding: 0;
|
|
3081
3110
|
display: flex;
|
|
@@ -3110,8 +3139,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3110
3139
|
}
|
|
3111
3140
|
.edit-site-layout__view-mode-toggle.components-button .edit-site-layout__view-mode-toggle-icon {
|
|
3112
3141
|
display: flex;
|
|
3113
|
-
height:
|
|
3114
|
-
width:
|
|
3142
|
+
height: 64px;
|
|
3143
|
+
width: 64px;
|
|
3115
3144
|
justify-content: center;
|
|
3116
3145
|
align-items: center;
|
|
3117
3146
|
}
|
|
@@ -3197,7 +3226,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3197
3226
|
contain: content;
|
|
3198
3227
|
}
|
|
3199
3228
|
|
|
3200
|
-
@keyframes
|
|
3229
|
+
@keyframes _gzxpw_slide-from-right {
|
|
3201
3230
|
from {
|
|
3202
3231
|
transform: translateX(-50px);
|
|
3203
3232
|
opacity: 0;
|
|
@@ -3207,7 +3236,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3207
3236
|
opacity: 1;
|
|
3208
3237
|
}
|
|
3209
3238
|
}
|
|
3210
|
-
@keyframes
|
|
3239
|
+
@keyframes _gzxpw_slide-from-left {
|
|
3211
3240
|
from {
|
|
3212
3241
|
transform: translateX(50px);
|
|
3213
3242
|
opacity: 0;
|
|
@@ -3263,10 +3292,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3263
3292
|
}
|
|
3264
3293
|
}
|
|
3265
3294
|
.edit-site-sidebar__screen-wrapper.slide-from-left {
|
|
3266
|
-
animation-name:
|
|
3295
|
+
animation-name: _gzxpw_slide-from-left;
|
|
3267
3296
|
}
|
|
3268
3297
|
.edit-site-sidebar__screen-wrapper.slide-from-right {
|
|
3269
|
-
animation-name:
|
|
3298
|
+
animation-name: _gzxpw_slide-from-right;
|
|
3270
3299
|
}
|
|
3271
3300
|
|
|
3272
3301
|
.edit-site-sidebar-button {
|
|
@@ -3481,9 +3510,6 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3481
3510
|
margin-left: -16px;
|
|
3482
3511
|
}
|
|
3483
3512
|
|
|
3484
|
-
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block__contents-cell {
|
|
3485
|
-
width: 100%;
|
|
3486
|
-
}
|
|
3487
3513
|
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
|
|
3488
3514
|
white-space: normal;
|
|
3489
3515
|
}
|
|
@@ -3565,7 +3591,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3565
3591
|
justify-content: space-between;
|
|
3566
3592
|
gap: 8px;
|
|
3567
3593
|
margin-left: 12px;
|
|
3568
|
-
height:
|
|
3594
|
+
height: 64px;
|
|
3569
3595
|
}
|
|
3570
3596
|
|
|
3571
3597
|
.edit-site-site-hub__actions {
|
|
@@ -3573,8 +3599,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3573
3599
|
}
|
|
3574
3600
|
|
|
3575
3601
|
.edit-site-site-hub__view-mode-toggle-container {
|
|
3576
|
-
height:
|
|
3577
|
-
width:
|
|
3602
|
+
height: 64px;
|
|
3603
|
+
width: 64px;
|
|
3578
3604
|
flex-shrink: 0;
|
|
3579
3605
|
}
|
|
3580
3606
|
.edit-site-site-hub__view-mode-toggle-container.has-transparent-background .edit-site-layout__view-mode-toggle-icon {
|
|
@@ -3911,7 +3937,7 @@ body:has(.edit-site-resizable-frame__inner.is-resizing) {
|
|
|
3911
3937
|
top: 0;
|
|
3912
3938
|
align-items: center;
|
|
3913
3939
|
justify-content: center;
|
|
3914
|
-
padding-top:
|
|
3940
|
+
padding-top: 124px;
|
|
3915
3941
|
}
|
|
3916
3942
|
|
|
3917
3943
|
.font-library-modal__footer {
|
|
@@ -3964,6 +3990,9 @@ body:has(.edit-site-resizable-frame__inner.is-resizing) {
|
|
|
3964
3990
|
.font-library-modal__font-card:hover {
|
|
3965
3991
|
background-color: #f0f0f0;
|
|
3966
3992
|
}
|
|
3993
|
+
.font-library-modal__font-card:focus {
|
|
3994
|
+
position: relative;
|
|
3995
|
+
}
|
|
3967
3996
|
.font-library-modal__font-card .font-library-modal__font-card__name {
|
|
3968
3997
|
font-weight: bold;
|
|
3969
3998
|
}
|
package/build-style/style.css
CHANGED
|
@@ -400,7 +400,9 @@
|
|
|
400
400
|
line-height: 1.4;
|
|
401
401
|
}
|
|
402
402
|
.dataviews-filters__summary-popover .components-popover__content {
|
|
403
|
-
width:
|
|
403
|
+
width: 100%;
|
|
404
|
+
min-width: 230px;
|
|
405
|
+
max-width: 250px;
|
|
404
406
|
border-radius: 4px;
|
|
405
407
|
}
|
|
406
408
|
.dataviews-filters__summary-popover.components-dropdown__content .components-popover__content {
|
|
@@ -1045,9 +1047,22 @@
|
|
|
1045
1047
|
|
|
1046
1048
|
.dataviews-view-grid {
|
|
1047
1049
|
margin-bottom: auto;
|
|
1050
|
+
display: grid;
|
|
1051
|
+
gap: 32px;
|
|
1048
1052
|
grid-template-rows: max-content;
|
|
1053
|
+
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
|
1049
1054
|
padding: 0 48px 24px;
|
|
1050
1055
|
container-type: inline-size;
|
|
1056
|
+
/**
|
|
1057
|
+
* Breakpoints were adjusted from media queries breakpoints to account for
|
|
1058
|
+
* the sidebar width. This was done to match the existing styles we had.
|
|
1059
|
+
*/
|
|
1060
|
+
}
|
|
1061
|
+
@container (max-width: 480px) {
|
|
1062
|
+
.dataviews-view-grid {
|
|
1063
|
+
padding-left: 24px;
|
|
1064
|
+
padding-right: 24px;
|
|
1065
|
+
}
|
|
1051
1066
|
}
|
|
1052
1067
|
@media not (prefers-reduced-motion) {
|
|
1053
1068
|
.dataviews-view-grid {
|
|
@@ -1087,7 +1102,7 @@
|
|
|
1087
1102
|
width: 100%;
|
|
1088
1103
|
min-height: 200px;
|
|
1089
1104
|
aspect-ratio: 1/1;
|
|
1090
|
-
background-color: #
|
|
1105
|
+
background-color: #fff;
|
|
1091
1106
|
border-radius: 4px;
|
|
1092
1107
|
position: relative;
|
|
1093
1108
|
}
|
|
@@ -1141,40 +1156,6 @@
|
|
|
1141
1156
|
padding-bottom: 12px;
|
|
1142
1157
|
}
|
|
1143
1158
|
|
|
1144
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1145
|
-
/**
|
|
1146
|
-
* Breakpoints were adjusted from media queries breakpoints to account for
|
|
1147
|
-
* the sidebar width. This was done to match the existing styles we had.
|
|
1148
|
-
*/
|
|
1149
|
-
}
|
|
1150
|
-
@container (max-width: 480px) {
|
|
1151
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1152
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1153
|
-
padding-left: 24px;
|
|
1154
|
-
padding-right: 24px;
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
@container (min-width: 480px) {
|
|
1158
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1159
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1160
|
-
}
|
|
1161
|
-
}
|
|
1162
|
-
@container (min-width: 780px) {
|
|
1163
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1164
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
@container (min-width: 1140px) {
|
|
1168
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1169
|
-
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1170
|
-
}
|
|
1171
|
-
}
|
|
1172
|
-
@container (min-width: 1520px) {
|
|
1173
|
-
.dataviews-view-grid.dataviews-view-grid {
|
|
1174
|
-
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
1159
|
.dataviews-view-grid__field-value:empty,
|
|
1179
1160
|
.dataviews-view-grid__field:empty {
|
|
1180
1161
|
display: none;
|
|
@@ -1202,6 +1183,14 @@
|
|
|
1202
1183
|
cursor: pointer;
|
|
1203
1184
|
}
|
|
1204
1185
|
|
|
1186
|
+
.dataviews-view-grid__group-header {
|
|
1187
|
+
font-size: 16px;
|
|
1188
|
+
font-weight: 600;
|
|
1189
|
+
color: #1e1e1e;
|
|
1190
|
+
margin: 0 0 8px 0;
|
|
1191
|
+
padding: 0 48px;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1205
1194
|
div.dataviews-view-list {
|
|
1206
1195
|
list-style-type: none;
|
|
1207
1196
|
}
|
|
@@ -1315,7 +1304,7 @@ div.dataviews-view-list {
|
|
|
1315
1304
|
overflow: hidden;
|
|
1316
1305
|
position: relative;
|
|
1317
1306
|
flex-shrink: 0;
|
|
1318
|
-
background-color: #
|
|
1307
|
+
background-color: #fff;
|
|
1319
1308
|
border-radius: 4px;
|
|
1320
1309
|
}
|
|
1321
1310
|
.dataviews-view-list .dataviews-view-list__media-wrapper img {
|
|
@@ -1567,6 +1556,26 @@ div.dataviews-view-list {
|
|
|
1567
1556
|
|
|
1568
1557
|
.dataviews-column-primary__media {
|
|
1569
1558
|
max-width: 60px;
|
|
1559
|
+
overflow: hidden;
|
|
1560
|
+
position: relative;
|
|
1561
|
+
flex-shrink: 0;
|
|
1562
|
+
background-color: #fff;
|
|
1563
|
+
border-radius: 4px;
|
|
1564
|
+
}
|
|
1565
|
+
.dataviews-column-primary__media img {
|
|
1566
|
+
width: 100%;
|
|
1567
|
+
height: 100%;
|
|
1568
|
+
object-fit: cover;
|
|
1569
|
+
}
|
|
1570
|
+
.dataviews-column-primary__media::after {
|
|
1571
|
+
content: "";
|
|
1572
|
+
position: absolute;
|
|
1573
|
+
top: 0;
|
|
1574
|
+
left: 0;
|
|
1575
|
+
width: 100%;
|
|
1576
|
+
height: 100%;
|
|
1577
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
1578
|
+
border-radius: 4px;
|
|
1570
1579
|
}
|
|
1571
1580
|
|
|
1572
1581
|
.dataviews-controls__datetime {
|
|
@@ -1574,11 +1583,24 @@ div.dataviews-view-list {
|
|
|
1574
1583
|
padding: 0;
|
|
1575
1584
|
}
|
|
1576
1585
|
|
|
1577
|
-
.dataviews-
|
|
1578
|
-
.dataviews-
|
|
1586
|
+
.dataviews-controls__relative-date-number,
|
|
1587
|
+
.dataviews-controls__relative-date-unit {
|
|
1579
1588
|
flex: 1 1 50%;
|
|
1580
1589
|
}
|
|
1581
1590
|
|
|
1591
|
+
.dataviews-controls__date input[type=date]::-webkit-inner-spin-button,
|
|
1592
|
+
.dataviews-controls__date input[type=date]::-webkit-calendar-picker-indicator {
|
|
1593
|
+
display: none;
|
|
1594
|
+
-webkit-appearance: none;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.dataviews-controls__date-preset {
|
|
1598
|
+
border: 1px solid #ddd;
|
|
1599
|
+
}
|
|
1600
|
+
.dataviews-controls__date-preset:active {
|
|
1601
|
+
background-color: #000;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1582
1604
|
.dataforms-layouts-panel__field {
|
|
1583
1605
|
width: 100%;
|
|
1584
1606
|
min-height: 32px;
|
|
@@ -1821,11 +1843,28 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
1821
1843
|
height: 16px;
|
|
1822
1844
|
}
|
|
1823
1845
|
|
|
1824
|
-
.dataviews-view-
|
|
1825
|
-
.dataviews-view-
|
|
1846
|
+
.dataviews-view-grid__media .fields-controls__featured-image-image,
|
|
1847
|
+
.dataviews-view-grid__media .fields-controls__featured-image-placeholder,
|
|
1848
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-image,
|
|
1849
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-placeholder,
|
|
1850
|
+
.dataviews-view-list__media-wrapper .fields-controls__featured-image-image,
|
|
1851
|
+
.dataviews-view-list__media-wrapper .fields-controls__featured-image-placeholder {
|
|
1852
|
+
width: 100%;
|
|
1853
|
+
height: 100%;
|
|
1854
|
+
display: block;
|
|
1855
|
+
border-radius: 4px;
|
|
1856
|
+
}
|
|
1857
|
+
.dataviews-view-grid__media .fields-controls__featured-image-placeholder,
|
|
1858
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-placeholder,
|
|
1859
|
+
.dataviews-view-list__media-wrapper .fields-controls__featured-image-placeholder {
|
|
1860
|
+
box-shadow: none;
|
|
1861
|
+
background: #f0f0f0;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-image,
|
|
1865
|
+
.dataviews-view-table__cell-content-wrapper.dataviews-column-primary__media .fields-controls__featured-image-placeholder {
|
|
1826
1866
|
width: 32px;
|
|
1827
1867
|
height: 32px;
|
|
1828
|
-
display: block;
|
|
1829
1868
|
}
|
|
1830
1869
|
|
|
1831
1870
|
.fields-controls__template-modal {
|
|
@@ -2712,16 +2751,6 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2712
2751
|
text-wrap: balance;
|
|
2713
2752
|
text-wrap: pretty;
|
|
2714
2753
|
}
|
|
2715
|
-
.dataviews-view-table .page-templates-preview-field::after {
|
|
2716
|
-
content: "";
|
|
2717
|
-
position: absolute;
|
|
2718
|
-
top: 0;
|
|
2719
|
-
left: 0;
|
|
2720
|
-
width: 100%;
|
|
2721
|
-
height: 100%;
|
|
2722
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
2723
|
-
border-radius: 4px;
|
|
2724
|
-
}
|
|
2725
2754
|
|
|
2726
2755
|
.page-templates-description {
|
|
2727
2756
|
max-width: 50em;
|
|
@@ -2815,8 +2844,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2815
2844
|
/* stylelint-enable */
|
|
2816
2845
|
top: 0;
|
|
2817
2846
|
left: 0;
|
|
2818
|
-
height:
|
|
2819
|
-
width:
|
|
2847
|
+
height: 64px;
|
|
2848
|
+
width: 64px;
|
|
2820
2849
|
z-index: 100;
|
|
2821
2850
|
}
|
|
2822
2851
|
.edit-site-editor__view-mode-toggle .components-button {
|
|
@@ -2846,8 +2875,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2846
2875
|
position: absolute;
|
|
2847
2876
|
top: 0;
|
|
2848
2877
|
left: 0;
|
|
2849
|
-
width:
|
|
2850
|
-
height:
|
|
2878
|
+
width: 64px;
|
|
2879
|
+
height: 64px;
|
|
2851
2880
|
display: flex;
|
|
2852
2881
|
align-items: center;
|
|
2853
2882
|
justify-content: center;
|
|
@@ -3075,8 +3104,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3075
3104
|
/* stylelint-enable */
|
|
3076
3105
|
position: relative;
|
|
3077
3106
|
color: #fff;
|
|
3078
|
-
height:
|
|
3079
|
-
width:
|
|
3107
|
+
height: 64px;
|
|
3108
|
+
width: 64px;
|
|
3080
3109
|
overflow: hidden;
|
|
3081
3110
|
padding: 0;
|
|
3082
3111
|
display: flex;
|
|
@@ -3111,8 +3140,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3111
3140
|
}
|
|
3112
3141
|
.edit-site-layout__view-mode-toggle.components-button .edit-site-layout__view-mode-toggle-icon {
|
|
3113
3142
|
display: flex;
|
|
3114
|
-
height:
|
|
3115
|
-
width:
|
|
3143
|
+
height: 64px;
|
|
3144
|
+
width: 64px;
|
|
3116
3145
|
justify-content: center;
|
|
3117
3146
|
align-items: center;
|
|
3118
3147
|
}
|
|
@@ -3198,7 +3227,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3198
3227
|
contain: content;
|
|
3199
3228
|
}
|
|
3200
3229
|
|
|
3201
|
-
@keyframes
|
|
3230
|
+
@keyframes _gzxpw_slide-from-right {
|
|
3202
3231
|
from {
|
|
3203
3232
|
transform: translateX(50px);
|
|
3204
3233
|
opacity: 0;
|
|
@@ -3208,7 +3237,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3208
3237
|
opacity: 1;
|
|
3209
3238
|
}
|
|
3210
3239
|
}
|
|
3211
|
-
@keyframes
|
|
3240
|
+
@keyframes _gzxpw_slide-from-left {
|
|
3212
3241
|
from {
|
|
3213
3242
|
transform: translateX(-50px);
|
|
3214
3243
|
opacity: 0;
|
|
@@ -3264,10 +3293,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3264
3293
|
}
|
|
3265
3294
|
}
|
|
3266
3295
|
.edit-site-sidebar__screen-wrapper.slide-from-left {
|
|
3267
|
-
animation-name:
|
|
3296
|
+
animation-name: _gzxpw_slide-from-left;
|
|
3268
3297
|
}
|
|
3269
3298
|
.edit-site-sidebar__screen-wrapper.slide-from-right {
|
|
3270
|
-
animation-name:
|
|
3299
|
+
animation-name: _gzxpw_slide-from-right;
|
|
3271
3300
|
}
|
|
3272
3301
|
|
|
3273
3302
|
.edit-site-sidebar-button {
|
|
@@ -3482,9 +3511,6 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3482
3511
|
margin-right: -16px;
|
|
3483
3512
|
}
|
|
3484
3513
|
|
|
3485
|
-
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block__contents-cell {
|
|
3486
|
-
width: 100%;
|
|
3487
|
-
}
|
|
3488
3514
|
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
|
|
3489
3515
|
white-space: normal;
|
|
3490
3516
|
}
|
|
@@ -3566,7 +3592,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3566
3592
|
justify-content: space-between;
|
|
3567
3593
|
gap: 8px;
|
|
3568
3594
|
margin-right: 12px;
|
|
3569
|
-
height:
|
|
3595
|
+
height: 64px;
|
|
3570
3596
|
}
|
|
3571
3597
|
|
|
3572
3598
|
.edit-site-site-hub__actions {
|
|
@@ -3574,8 +3600,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3574
3600
|
}
|
|
3575
3601
|
|
|
3576
3602
|
.edit-site-site-hub__view-mode-toggle-container {
|
|
3577
|
-
height:
|
|
3578
|
-
width:
|
|
3603
|
+
height: 64px;
|
|
3604
|
+
width: 64px;
|
|
3579
3605
|
flex-shrink: 0;
|
|
3580
3606
|
}
|
|
3581
3607
|
.edit-site-site-hub__view-mode-toggle-container.has-transparent-background .edit-site-layout__view-mode-toggle-icon {
|
|
@@ -3912,7 +3938,7 @@ body:has(.edit-site-resizable-frame__inner.is-resizing) {
|
|
|
3912
3938
|
top: 0;
|
|
3913
3939
|
align-items: center;
|
|
3914
3940
|
justify-content: center;
|
|
3915
|
-
padding-top:
|
|
3941
|
+
padding-top: 124px;
|
|
3916
3942
|
}
|
|
3917
3943
|
|
|
3918
3944
|
.font-library-modal__footer {
|
|
@@ -3965,6 +3991,9 @@ body:has(.edit-site-resizable-frame__inner.is-resizing) {
|
|
|
3965
3991
|
.font-library-modal__font-card:hover {
|
|
3966
3992
|
background-color: #f0f0f0;
|
|
3967
3993
|
}
|
|
3994
|
+
.font-library-modal__font-card:focus {
|
|
3995
|
+
position: relative;
|
|
3996
|
+
}
|
|
3968
3997
|
.font-library-modal__font-card .font-library-modal__font-card__name {
|
|
3969
3998
|
font-weight: bold;
|
|
3970
3999
|
}
|