@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;
|
|
@@ -1835,8 +1857,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
1835
1857
|
/* stylelint-enable */
|
|
1836
1858
|
position: relative;
|
|
1837
1859
|
color: #fff;
|
|
1838
|
-
height:
|
|
1839
|
-
width:
|
|
1860
|
+
height: 64px;
|
|
1861
|
+
width: 64px;
|
|
1840
1862
|
overflow: hidden;
|
|
1841
1863
|
padding: 0;
|
|
1842
1864
|
display: flex;
|
|
@@ -1871,8 +1893,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
1871
1893
|
}
|
|
1872
1894
|
.edit-site-layout__view-mode-toggle.components-button .edit-site-layout__view-mode-toggle-icon {
|
|
1873
1895
|
display: flex;
|
|
1874
|
-
height:
|
|
1875
|
-
width:
|
|
1896
|
+
height: 64px;
|
|
1897
|
+
width: 64px;
|
|
1876
1898
|
justify-content: center;
|
|
1877
1899
|
align-items: center;
|
|
1878
1900
|
}
|
|
@@ -2012,7 +2034,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2012
2034
|
contain: content;
|
|
2013
2035
|
}
|
|
2014
2036
|
|
|
2015
|
-
@keyframes
|
|
2037
|
+
@keyframes _7yqd8_slide-from-right {
|
|
2016
2038
|
from {
|
|
2017
2039
|
transform: translateX(-50px);
|
|
2018
2040
|
opacity: 0;
|
|
@@ -2022,7 +2044,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2022
2044
|
opacity: 1;
|
|
2023
2045
|
}
|
|
2024
2046
|
}
|
|
2025
|
-
@keyframes
|
|
2047
|
+
@keyframes _7yqd8_slide-from-left {
|
|
2026
2048
|
from {
|
|
2027
2049
|
transform: translateX(50px);
|
|
2028
2050
|
opacity: 0;
|
|
@@ -2078,10 +2100,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2078
2100
|
}
|
|
2079
2101
|
}
|
|
2080
2102
|
.edit-site-sidebar__screen-wrapper.slide-from-left {
|
|
2081
|
-
animation-name:
|
|
2103
|
+
animation-name: _7yqd8_slide-from-left;
|
|
2082
2104
|
}
|
|
2083
2105
|
.edit-site-sidebar__screen-wrapper.slide-from-right {
|
|
2084
|
-
animation-name:
|
|
2106
|
+
animation-name: _7yqd8_slide-from-right;
|
|
2085
2107
|
}
|
|
2086
2108
|
|
|
2087
2109
|
.edit-site-site-hub {
|
|
@@ -2090,7 +2112,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2090
2112
|
justify-content: space-between;
|
|
2091
2113
|
gap: 8px;
|
|
2092
2114
|
margin-left: 12px;
|
|
2093
|
-
height:
|
|
2115
|
+
height: 64px;
|
|
2094
2116
|
}
|
|
2095
2117
|
|
|
2096
2118
|
.edit-site-site-hub__actions {
|
|
@@ -2098,8 +2120,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2098
2120
|
}
|
|
2099
2121
|
|
|
2100
2122
|
.edit-site-site-hub__view-mode-toggle-container {
|
|
2101
|
-
height:
|
|
2102
|
-
width:
|
|
2123
|
+
height: 64px;
|
|
2124
|
+
width: 64px;
|
|
2103
2125
|
flex-shrink: 0;
|
|
2104
2126
|
}
|
|
2105
2127
|
.edit-site-site-hub__view-mode-toggle-container.has-transparent-background .edit-site-layout__view-mode-toggle-icon {
|
package/build-style/posts.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;
|
|
@@ -1835,8 +1857,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
1835
1857
|
/* stylelint-enable */
|
|
1836
1858
|
position: relative;
|
|
1837
1859
|
color: #fff;
|
|
1838
|
-
height:
|
|
1839
|
-
width:
|
|
1860
|
+
height: 64px;
|
|
1861
|
+
width: 64px;
|
|
1840
1862
|
overflow: hidden;
|
|
1841
1863
|
padding: 0;
|
|
1842
1864
|
display: flex;
|
|
@@ -1871,8 +1893,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
1871
1893
|
}
|
|
1872
1894
|
.edit-site-layout__view-mode-toggle.components-button .edit-site-layout__view-mode-toggle-icon {
|
|
1873
1895
|
display: flex;
|
|
1874
|
-
height:
|
|
1875
|
-
width:
|
|
1896
|
+
height: 64px;
|
|
1897
|
+
width: 64px;
|
|
1876
1898
|
justify-content: center;
|
|
1877
1899
|
align-items: center;
|
|
1878
1900
|
}
|
|
@@ -2012,7 +2034,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2012
2034
|
contain: content;
|
|
2013
2035
|
}
|
|
2014
2036
|
|
|
2015
|
-
@keyframes
|
|
2037
|
+
@keyframes _7yqd8_slide-from-right {
|
|
2016
2038
|
from {
|
|
2017
2039
|
transform: translateX(50px);
|
|
2018
2040
|
opacity: 0;
|
|
@@ -2022,7 +2044,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2022
2044
|
opacity: 1;
|
|
2023
2045
|
}
|
|
2024
2046
|
}
|
|
2025
|
-
@keyframes
|
|
2047
|
+
@keyframes _7yqd8_slide-from-left {
|
|
2026
2048
|
from {
|
|
2027
2049
|
transform: translateX(-50px);
|
|
2028
2050
|
opacity: 0;
|
|
@@ -2078,10 +2100,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2078
2100
|
}
|
|
2079
2101
|
}
|
|
2080
2102
|
.edit-site-sidebar__screen-wrapper.slide-from-left {
|
|
2081
|
-
animation-name:
|
|
2103
|
+
animation-name: _7yqd8_slide-from-left;
|
|
2082
2104
|
}
|
|
2083
2105
|
.edit-site-sidebar__screen-wrapper.slide-from-right {
|
|
2084
|
-
animation-name:
|
|
2106
|
+
animation-name: _7yqd8_slide-from-right;
|
|
2085
2107
|
}
|
|
2086
2108
|
|
|
2087
2109
|
.edit-site-site-hub {
|
|
@@ -2090,7 +2112,7 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2090
2112
|
justify-content: space-between;
|
|
2091
2113
|
gap: 8px;
|
|
2092
2114
|
margin-right: 12px;
|
|
2093
|
-
height:
|
|
2115
|
+
height: 64px;
|
|
2094
2116
|
}
|
|
2095
2117
|
|
|
2096
2118
|
.edit-site-site-hub__actions {
|
|
@@ -2098,8 +2120,8 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
2098
2120
|
}
|
|
2099
2121
|
|
|
2100
2122
|
.edit-site-site-hub__view-mode-toggle-container {
|
|
2101
|
-
height:
|
|
2102
|
-
width:
|
|
2123
|
+
height: 64px;
|
|
2124
|
+
width: 64px;
|
|
2103
2125
|
flex-shrink: 0;
|
|
2104
2126
|
}
|
|
2105
2127
|
.edit-site-site-hub__view-mode-toggle-container.has-transparent-background .edit-site-layout__view-mode-toggle-icon {
|