@wordpress/edit-site 6.27.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/build-style/posts-rtl.css +64 -50
- package/build-style/posts.css +64 -50
- package/build-style/style-rtl.css +89 -71
- package/build-style/style.css +89 -71
- package/package.json +42 -42
- package/src/components/editor/style.scss +2 -2
- 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;
|
|
@@ -1323,7 +1304,7 @@ div.dataviews-view-list {
|
|
|
1323
1304
|
overflow: hidden;
|
|
1324
1305
|
position: relative;
|
|
1325
1306
|
flex-shrink: 0;
|
|
1326
|
-
background-color: #
|
|
1307
|
+
background-color: #fff;
|
|
1327
1308
|
border-radius: 4px;
|
|
1328
1309
|
}
|
|
1329
1310
|
.dataviews-view-list .dataviews-view-list__media-wrapper img {
|
|
@@ -1575,6 +1556,26 @@ div.dataviews-view-list {
|
|
|
1575
1556
|
|
|
1576
1557
|
.dataviews-column-primary__media {
|
|
1577
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;
|
|
1578
1579
|
}
|
|
1579
1580
|
|
|
1580
1581
|
.dataviews-controls__datetime {
|
|
@@ -1582,11 +1583,24 @@ div.dataviews-view-list {
|
|
|
1582
1583
|
padding: 0;
|
|
1583
1584
|
}
|
|
1584
1585
|
|
|
1585
|
-
.dataviews-
|
|
1586
|
-
.dataviews-
|
|
1586
|
+
.dataviews-controls__relative-date-number,
|
|
1587
|
+
.dataviews-controls__relative-date-unit {
|
|
1587
1588
|
flex: 1 1 50%;
|
|
1588
1589
|
}
|
|
1589
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
|
+
|
|
1590
1604
|
.dataforms-layouts-panel__field {
|
|
1591
1605
|
width: 100%;
|
|
1592
1606
|
min-height: 32px;
|
|
@@ -1829,11 +1843,28 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
1829
1843
|
height: 16px;
|
|
1830
1844
|
}
|
|
1831
1845
|
|
|
1832
|
-
.dataviews-view-
|
|
1833
|
-
.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 {
|
|
1834
1866
|
width: 32px;
|
|
1835
1867
|
height: 32px;
|
|
1836
|
-
display: block;
|
|
1837
1868
|
}
|
|
1838
1869
|
|
|
1839
1870
|
.fields-controls__template-modal {
|
|
@@ -2719,16 +2750,6 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2719
2750
|
text-wrap: balance;
|
|
2720
2751
|
text-wrap: pretty;
|
|
2721
2752
|
}
|
|
2722
|
-
.dataviews-view-table .page-templates-preview-field::after {
|
|
2723
|
-
content: "";
|
|
2724
|
-
position: absolute;
|
|
2725
|
-
top: 0;
|
|
2726
|
-
right: 0;
|
|
2727
|
-
width: 100%;
|
|
2728
|
-
height: 100%;
|
|
2729
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
2730
|
-
border-radius: 4px;
|
|
2731
|
-
}
|
|
2732
2753
|
|
|
2733
2754
|
.page-templates-description {
|
|
2734
2755
|
max-width: 50em;
|
|
@@ -2822,8 +2843,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2822
2843
|
/* stylelint-enable */
|
|
2823
2844
|
top: 0;
|
|
2824
2845
|
right: 0;
|
|
2825
|
-
height:
|
|
2826
|
-
width:
|
|
2846
|
+
height: 64px;
|
|
2847
|
+
width: 64px;
|
|
2827
2848
|
z-index: 100;
|
|
2828
2849
|
}
|
|
2829
2850
|
.edit-site-editor__view-mode-toggle .components-button {
|
|
@@ -2853,8 +2874,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2853
2874
|
position: absolute;
|
|
2854
2875
|
top: 0;
|
|
2855
2876
|
right: 0;
|
|
2856
|
-
width:
|
|
2857
|
-
height:
|
|
2877
|
+
width: 64px;
|
|
2878
|
+
height: 64px;
|
|
2858
2879
|
display: flex;
|
|
2859
2880
|
align-items: center;
|
|
2860
2881
|
justify-content: center;
|
|
@@ -3082,8 +3103,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3082
3103
|
/* stylelint-enable */
|
|
3083
3104
|
position: relative;
|
|
3084
3105
|
color: #fff;
|
|
3085
|
-
height:
|
|
3086
|
-
width:
|
|
3106
|
+
height: 64px;
|
|
3107
|
+
width: 64px;
|
|
3087
3108
|
overflow: hidden;
|
|
3088
3109
|
padding: 0;
|
|
3089
3110
|
display: flex;
|
|
@@ -3118,8 +3139,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3118
3139
|
}
|
|
3119
3140
|
.edit-site-layout__view-mode-toggle.components-button .edit-site-layout__view-mode-toggle-icon {
|
|
3120
3141
|
display: flex;
|
|
3121
|
-
height:
|
|
3122
|
-
width:
|
|
3142
|
+
height: 64px;
|
|
3143
|
+
width: 64px;
|
|
3123
3144
|
justify-content: center;
|
|
3124
3145
|
align-items: center;
|
|
3125
3146
|
}
|
|
@@ -3205,7 +3226,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3205
3226
|
contain: content;
|
|
3206
3227
|
}
|
|
3207
3228
|
|
|
3208
|
-
@keyframes
|
|
3229
|
+
@keyframes _gzxpw_slide-from-right {
|
|
3209
3230
|
from {
|
|
3210
3231
|
transform: translateX(-50px);
|
|
3211
3232
|
opacity: 0;
|
|
@@ -3215,7 +3236,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3215
3236
|
opacity: 1;
|
|
3216
3237
|
}
|
|
3217
3238
|
}
|
|
3218
|
-
@keyframes
|
|
3239
|
+
@keyframes _gzxpw_slide-from-left {
|
|
3219
3240
|
from {
|
|
3220
3241
|
transform: translateX(50px);
|
|
3221
3242
|
opacity: 0;
|
|
@@ -3271,10 +3292,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3271
3292
|
}
|
|
3272
3293
|
}
|
|
3273
3294
|
.edit-site-sidebar__screen-wrapper.slide-from-left {
|
|
3274
|
-
animation-name:
|
|
3295
|
+
animation-name: _gzxpw_slide-from-left;
|
|
3275
3296
|
}
|
|
3276
3297
|
.edit-site-sidebar__screen-wrapper.slide-from-right {
|
|
3277
|
-
animation-name:
|
|
3298
|
+
animation-name: _gzxpw_slide-from-right;
|
|
3278
3299
|
}
|
|
3279
3300
|
|
|
3280
3301
|
.edit-site-sidebar-button {
|
|
@@ -3489,9 +3510,6 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3489
3510
|
margin-left: -16px;
|
|
3490
3511
|
}
|
|
3491
3512
|
|
|
3492
|
-
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block__contents-cell {
|
|
3493
|
-
width: 100%;
|
|
3494
|
-
}
|
|
3495
3513
|
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
|
|
3496
3514
|
white-space: normal;
|
|
3497
3515
|
}
|
|
@@ -3573,7 +3591,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3573
3591
|
justify-content: space-between;
|
|
3574
3592
|
gap: 8px;
|
|
3575
3593
|
margin-left: 12px;
|
|
3576
|
-
height:
|
|
3594
|
+
height: 64px;
|
|
3577
3595
|
}
|
|
3578
3596
|
|
|
3579
3597
|
.edit-site-site-hub__actions {
|
|
@@ -3581,8 +3599,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3581
3599
|
}
|
|
3582
3600
|
|
|
3583
3601
|
.edit-site-site-hub__view-mode-toggle-container {
|
|
3584
|
-
height:
|
|
3585
|
-
width:
|
|
3602
|
+
height: 64px;
|
|
3603
|
+
width: 64px;
|
|
3586
3604
|
flex-shrink: 0;
|
|
3587
3605
|
}
|
|
3588
3606
|
.edit-site-site-hub__view-mode-toggle-container.has-transparent-background .edit-site-layout__view-mode-toggle-icon {
|
|
@@ -3919,7 +3937,7 @@ body:has(.edit-site-resizable-frame__inner.is-resizing) {
|
|
|
3919
3937
|
top: 0;
|
|
3920
3938
|
align-items: center;
|
|
3921
3939
|
justify-content: center;
|
|
3922
|
-
padding-top:
|
|
3940
|
+
padding-top: 124px;
|
|
3923
3941
|
}
|
|
3924
3942
|
|
|
3925
3943
|
.font-library-modal__footer {
|
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;
|
|
@@ -1323,7 +1304,7 @@ div.dataviews-view-list {
|
|
|
1323
1304
|
overflow: hidden;
|
|
1324
1305
|
position: relative;
|
|
1325
1306
|
flex-shrink: 0;
|
|
1326
|
-
background-color: #
|
|
1307
|
+
background-color: #fff;
|
|
1327
1308
|
border-radius: 4px;
|
|
1328
1309
|
}
|
|
1329
1310
|
.dataviews-view-list .dataviews-view-list__media-wrapper img {
|
|
@@ -1575,6 +1556,26 @@ div.dataviews-view-list {
|
|
|
1575
1556
|
|
|
1576
1557
|
.dataviews-column-primary__media {
|
|
1577
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;
|
|
1578
1579
|
}
|
|
1579
1580
|
|
|
1580
1581
|
.dataviews-controls__datetime {
|
|
@@ -1582,11 +1583,24 @@ div.dataviews-view-list {
|
|
|
1582
1583
|
padding: 0;
|
|
1583
1584
|
}
|
|
1584
1585
|
|
|
1585
|
-
.dataviews-
|
|
1586
|
-
.dataviews-
|
|
1586
|
+
.dataviews-controls__relative-date-number,
|
|
1587
|
+
.dataviews-controls__relative-date-unit {
|
|
1587
1588
|
flex: 1 1 50%;
|
|
1588
1589
|
}
|
|
1589
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
|
+
|
|
1590
1604
|
.dataforms-layouts-panel__field {
|
|
1591
1605
|
width: 100%;
|
|
1592
1606
|
min-height: 32px;
|
|
@@ -1829,11 +1843,28 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
1829
1843
|
height: 16px;
|
|
1830
1844
|
}
|
|
1831
1845
|
|
|
1832
|
-
.dataviews-view-
|
|
1833
|
-
.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 {
|
|
1834
1866
|
width: 32px;
|
|
1835
1867
|
height: 32px;
|
|
1836
|
-
display: block;
|
|
1837
1868
|
}
|
|
1838
1869
|
|
|
1839
1870
|
.fields-controls__template-modal {
|
|
@@ -2720,16 +2751,6 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2720
2751
|
text-wrap: balance;
|
|
2721
2752
|
text-wrap: pretty;
|
|
2722
2753
|
}
|
|
2723
|
-
.dataviews-view-table .page-templates-preview-field::after {
|
|
2724
|
-
content: "";
|
|
2725
|
-
position: absolute;
|
|
2726
|
-
top: 0;
|
|
2727
|
-
left: 0;
|
|
2728
|
-
width: 100%;
|
|
2729
|
-
height: 100%;
|
|
2730
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
2731
|
-
border-radius: 4px;
|
|
2732
|
-
}
|
|
2733
2754
|
|
|
2734
2755
|
.page-templates-description {
|
|
2735
2756
|
max-width: 50em;
|
|
@@ -2823,8 +2844,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2823
2844
|
/* stylelint-enable */
|
|
2824
2845
|
top: 0;
|
|
2825
2846
|
left: 0;
|
|
2826
|
-
height:
|
|
2827
|
-
width:
|
|
2847
|
+
height: 64px;
|
|
2848
|
+
width: 64px;
|
|
2828
2849
|
z-index: 100;
|
|
2829
2850
|
}
|
|
2830
2851
|
.edit-site-editor__view-mode-toggle .components-button {
|
|
@@ -2854,8 +2875,8 @@ fieldset.fields-controls__featured-image .fields-controls__featured-image-remove
|
|
|
2854
2875
|
position: absolute;
|
|
2855
2876
|
top: 0;
|
|
2856
2877
|
left: 0;
|
|
2857
|
-
width:
|
|
2858
|
-
height:
|
|
2878
|
+
width: 64px;
|
|
2879
|
+
height: 64px;
|
|
2859
2880
|
display: flex;
|
|
2860
2881
|
align-items: center;
|
|
2861
2882
|
justify-content: center;
|
|
@@ -3083,8 +3104,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3083
3104
|
/* stylelint-enable */
|
|
3084
3105
|
position: relative;
|
|
3085
3106
|
color: #fff;
|
|
3086
|
-
height:
|
|
3087
|
-
width:
|
|
3107
|
+
height: 64px;
|
|
3108
|
+
width: 64px;
|
|
3088
3109
|
overflow: hidden;
|
|
3089
3110
|
padding: 0;
|
|
3090
3111
|
display: flex;
|
|
@@ -3119,8 +3140,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3119
3140
|
}
|
|
3120
3141
|
.edit-site-layout__view-mode-toggle.components-button .edit-site-layout__view-mode-toggle-icon {
|
|
3121
3142
|
display: flex;
|
|
3122
|
-
height:
|
|
3123
|
-
width:
|
|
3143
|
+
height: 64px;
|
|
3144
|
+
width: 64px;
|
|
3124
3145
|
justify-content: center;
|
|
3125
3146
|
align-items: center;
|
|
3126
3147
|
}
|
|
@@ -3206,7 +3227,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3206
3227
|
contain: content;
|
|
3207
3228
|
}
|
|
3208
3229
|
|
|
3209
|
-
@keyframes
|
|
3230
|
+
@keyframes _gzxpw_slide-from-right {
|
|
3210
3231
|
from {
|
|
3211
3232
|
transform: translateX(50px);
|
|
3212
3233
|
opacity: 0;
|
|
@@ -3216,7 +3237,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3216
3237
|
opacity: 1;
|
|
3217
3238
|
}
|
|
3218
3239
|
}
|
|
3219
|
-
@keyframes
|
|
3240
|
+
@keyframes _gzxpw_slide-from-left {
|
|
3220
3241
|
from {
|
|
3221
3242
|
transform: translateX(-50px);
|
|
3222
3243
|
opacity: 0;
|
|
@@ -3272,10 +3293,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3272
3293
|
}
|
|
3273
3294
|
}
|
|
3274
3295
|
.edit-site-sidebar__screen-wrapper.slide-from-left {
|
|
3275
|
-
animation-name:
|
|
3296
|
+
animation-name: _gzxpw_slide-from-left;
|
|
3276
3297
|
}
|
|
3277
3298
|
.edit-site-sidebar__screen-wrapper.slide-from-right {
|
|
3278
|
-
animation-name:
|
|
3299
|
+
animation-name: _gzxpw_slide-from-right;
|
|
3279
3300
|
}
|
|
3280
3301
|
|
|
3281
3302
|
.edit-site-sidebar-button {
|
|
@@ -3490,9 +3511,6 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3490
3511
|
margin-right: -16px;
|
|
3491
3512
|
}
|
|
3492
3513
|
|
|
3493
|
-
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block__contents-cell {
|
|
3494
|
-
width: 100%;
|
|
3495
|
-
}
|
|
3496
3514
|
.edit-site-sidebar-navigation-screen-navigation-menus__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
|
|
3497
3515
|
white-space: normal;
|
|
3498
3516
|
}
|
|
@@ -3574,7 +3592,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3574
3592
|
justify-content: space-between;
|
|
3575
3593
|
gap: 8px;
|
|
3576
3594
|
margin-right: 12px;
|
|
3577
|
-
height:
|
|
3595
|
+
height: 64px;
|
|
3578
3596
|
}
|
|
3579
3597
|
|
|
3580
3598
|
.edit-site-site-hub__actions {
|
|
@@ -3582,8 +3600,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
3582
3600
|
}
|
|
3583
3601
|
|
|
3584
3602
|
.edit-site-site-hub__view-mode-toggle-container {
|
|
3585
|
-
height:
|
|
3586
|
-
width:
|
|
3603
|
+
height: 64px;
|
|
3604
|
+
width: 64px;
|
|
3587
3605
|
flex-shrink: 0;
|
|
3588
3606
|
}
|
|
3589
3607
|
.edit-site-site-hub__view-mode-toggle-container.has-transparent-background .edit-site-layout__view-mode-toggle-icon {
|
|
@@ -3920,7 +3938,7 @@ body:has(.edit-site-resizable-frame__inner.is-resizing) {
|
|
|
3920
3938
|
top: 0;
|
|
3921
3939
|
align-items: center;
|
|
3922
3940
|
justify-content: center;
|
|
3923
|
-
padding-top:
|
|
3941
|
+
padding-top: 124px;
|
|
3924
3942
|
}
|
|
3925
3943
|
|
|
3926
3944
|
.font-library-modal__footer {
|