Version Description
- 26th March 2021 =
- Remove deprecated Gutenberg functions
- Restore hyphenation behaviour to 1.3 - it caused too many issues
- Remove Firefox fix in 1.2.4 which no longer seems to be needed and causes other issues
- Merge front.css into style.css
- Force grid preview to be desktop mode, to improve appearance in pattern inserter
Download this release
Release Info
| Developer | johnny5 |
| Plugin | |
| Version | 1.6 |
| Comparing to | |
| See all releases | |
Code changes from version 1.5 to 1.6
- blocks/front.css +0 -1051
- blocks/layout-grid.php +0 -17
- editor.css +280 -279
- index.asset.php +1 -1
- index.js +1 -1
- index.php +1 -1
- readme.txt +8 -1
- style.css +728 -0
blocks/front.css
DELETED
|
@@ -1,1051 +0,0 @@
|
|
| 1 |
-
/**
|
| 2 |
-
* Grid Block styles.
|
| 3 |
-
* These styles are loaded into both the editor, and the frontend.
|
| 4 |
-
*/
|
| 5 |
-
/**
|
| 6 |
-
* Responsive Grid Options
|
| 7 |
-
*/
|
| 8 |
-
/* autoprefixer grid: no-autoplace */
|
| 9 |
-
.wp-block-jetpack-layout-grid {
|
| 10 |
-
display: -ms-grid;
|
| 11 |
-
display: grid;
|
| 12 |
-
grid-gap: 24px;
|
| 13 |
-
-ms-grid-columns: (1fr)[4];
|
| 14 |
-
grid-template-columns: repeat(4, 1fr); }
|
| 15 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 16 |
-
-ms-grid-column: 1;
|
| 17 |
-
grid-column-start: 1; }
|
| 18 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 19 |
-
-ms-grid-column: 1;
|
| 20 |
-
grid-column-start: 1; }
|
| 21 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 22 |
-
-ms-grid-column: 1;
|
| 23 |
-
grid-column-start: 1; }
|
| 24 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 25 |
-
-ms-grid-column: 1;
|
| 26 |
-
grid-column-start: 1; }
|
| 27 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 28 |
-
-ms-grid-column: 2;
|
| 29 |
-
grid-column-start: 2; }
|
| 30 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 31 |
-
-ms-grid-column: 2;
|
| 32 |
-
grid-column-start: 2; }
|
| 33 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 34 |
-
-ms-grid-column: 2;
|
| 35 |
-
grid-column-start: 2; }
|
| 36 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 37 |
-
-ms-grid-column: 2;
|
| 38 |
-
grid-column-start: 2; }
|
| 39 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 40 |
-
-ms-grid-column: 3;
|
| 41 |
-
grid-column-start: 3; }
|
| 42 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 43 |
-
-ms-grid-column: 3;
|
| 44 |
-
grid-column-start: 3; }
|
| 45 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 46 |
-
-ms-grid-column: 3;
|
| 47 |
-
grid-column-start: 3; }
|
| 48 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 49 |
-
-ms-grid-column: 3;
|
| 50 |
-
grid-column-start: 3; }
|
| 51 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 52 |
-
-ms-grid-column: 4;
|
| 53 |
-
grid-column-start: 4; }
|
| 54 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 55 |
-
-ms-grid-column: 4;
|
| 56 |
-
grid-column-start: 4; }
|
| 57 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 58 |
-
-ms-grid-column: 4;
|
| 59 |
-
grid-column-start: 4; }
|
| 60 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 61 |
-
-ms-grid-column: 4;
|
| 62 |
-
grid-column-start: 4; }
|
| 63 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 64 |
-
-ms-grid-column: 5;
|
| 65 |
-
grid-column-start: 5; }
|
| 66 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 67 |
-
-ms-grid-column: 5;
|
| 68 |
-
grid-column-start: 5; }
|
| 69 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 70 |
-
-ms-grid-column: 5;
|
| 71 |
-
grid-column-start: 5; }
|
| 72 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 73 |
-
-ms-grid-column: 5;
|
| 74 |
-
grid-column-start: 5; }
|
| 75 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 76 |
-
-ms-grid-column: 6;
|
| 77 |
-
grid-column-start: 6; }
|
| 78 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 79 |
-
-ms-grid-column: 6;
|
| 80 |
-
grid-column-start: 6; }
|
| 81 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 82 |
-
-ms-grid-column: 6;
|
| 83 |
-
grid-column-start: 6; }
|
| 84 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 85 |
-
-ms-grid-column: 6;
|
| 86 |
-
grid-column-start: 6; }
|
| 87 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 88 |
-
-ms-grid-column: 7;
|
| 89 |
-
grid-column-start: 7; }
|
| 90 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 91 |
-
-ms-grid-column: 7;
|
| 92 |
-
grid-column-start: 7; }
|
| 93 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 94 |
-
-ms-grid-column: 7;
|
| 95 |
-
grid-column-start: 7; }
|
| 96 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 97 |
-
-ms-grid-column: 7;
|
| 98 |
-
grid-column-start: 7; }
|
| 99 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 100 |
-
-ms-grid-column: 8;
|
| 101 |
-
grid-column-start: 8; }
|
| 102 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 103 |
-
-ms-grid-column: 8;
|
| 104 |
-
grid-column-start: 8; }
|
| 105 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 106 |
-
-ms-grid-column: 8;
|
| 107 |
-
grid-column-start: 8; }
|
| 108 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 109 |
-
-ms-grid-column: 8;
|
| 110 |
-
grid-column-start: 8; }
|
| 111 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 112 |
-
-ms-grid-column: 9;
|
| 113 |
-
grid-column-start: 9; }
|
| 114 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 115 |
-
-ms-grid-column: 9;
|
| 116 |
-
grid-column-start: 9; }
|
| 117 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 118 |
-
-ms-grid-column: 9;
|
| 119 |
-
grid-column-start: 9; }
|
| 120 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 121 |
-
-ms-grid-column: 9;
|
| 122 |
-
grid-column-start: 9; }
|
| 123 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 124 |
-
-ms-grid-column: 10;
|
| 125 |
-
grid-column-start: 10; }
|
| 126 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 127 |
-
-ms-grid-column: 10;
|
| 128 |
-
grid-column-start: 10; }
|
| 129 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 130 |
-
-ms-grid-column: 10;
|
| 131 |
-
grid-column-start: 10; }
|
| 132 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 133 |
-
-ms-grid-column: 10;
|
| 134 |
-
grid-column-start: 10; }
|
| 135 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 136 |
-
-ms-grid-column: 11;
|
| 137 |
-
grid-column-start: 11; }
|
| 138 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 139 |
-
-ms-grid-column: 11;
|
| 140 |
-
grid-column-start: 11; }
|
| 141 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 142 |
-
-ms-grid-column: 11;
|
| 143 |
-
grid-column-start: 11; }
|
| 144 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 145 |
-
-ms-grid-column: 11;
|
| 146 |
-
grid-column-start: 11; }
|
| 147 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 148 |
-
-ms-grid-column: 12;
|
| 149 |
-
grid-column-start: 12; }
|
| 150 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 151 |
-
-ms-grid-column: 12;
|
| 152 |
-
grid-column-start: 12; }
|
| 153 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 154 |
-
-ms-grid-column: 12;
|
| 155 |
-
grid-column-start: 12; }
|
| 156 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 157 |
-
-ms-grid-column: 12;
|
| 158 |
-
grid-column-start: 12; }
|
| 159 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 160 |
-
-ms-grid-column-span: 1;
|
| 161 |
-
grid-column-end: span 1; }
|
| 162 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 163 |
-
-ms-grid-column-span: 1;
|
| 164 |
-
grid-column-end: span 1; }
|
| 165 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 166 |
-
-ms-grid-column-span: 1;
|
| 167 |
-
grid-column-end: span 1; }
|
| 168 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 169 |
-
-ms-grid-column-span: 1;
|
| 170 |
-
grid-column-end: span 1; }
|
| 171 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 172 |
-
-ms-grid-column-span: 2;
|
| 173 |
-
grid-column-end: span 2; }
|
| 174 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 175 |
-
-ms-grid-column-span: 2;
|
| 176 |
-
grid-column-end: span 2; }
|
| 177 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 178 |
-
-ms-grid-column-span: 2;
|
| 179 |
-
grid-column-end: span 2; }
|
| 180 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 181 |
-
-ms-grid-column-span: 2;
|
| 182 |
-
grid-column-end: span 2; }
|
| 183 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 184 |
-
-ms-grid-column-span: 3;
|
| 185 |
-
grid-column-end: span 3; }
|
| 186 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 187 |
-
-ms-grid-column-span: 3;
|
| 188 |
-
grid-column-end: span 3; }
|
| 189 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 190 |
-
-ms-grid-column-span: 3;
|
| 191 |
-
grid-column-end: span 3; }
|
| 192 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 193 |
-
-ms-grid-column-span: 3;
|
| 194 |
-
grid-column-end: span 3; }
|
| 195 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 196 |
-
-ms-grid-column-span: 4;
|
| 197 |
-
grid-column-end: span 4; }
|
| 198 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 199 |
-
-ms-grid-column-span: 4;
|
| 200 |
-
grid-column-end: span 4; }
|
| 201 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 202 |
-
-ms-grid-column-span: 4;
|
| 203 |
-
grid-column-end: span 4; }
|
| 204 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 205 |
-
-ms-grid-column-span: 4;
|
| 206 |
-
grid-column-end: span 4; }
|
| 207 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 208 |
-
-ms-grid-column-span: 5;
|
| 209 |
-
grid-column-end: span 5; }
|
| 210 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 211 |
-
-ms-grid-column-span: 5;
|
| 212 |
-
grid-column-end: span 5; }
|
| 213 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 214 |
-
-ms-grid-column-span: 5;
|
| 215 |
-
grid-column-end: span 5; }
|
| 216 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 217 |
-
-ms-grid-column-span: 5;
|
| 218 |
-
grid-column-end: span 5; }
|
| 219 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 220 |
-
-ms-grid-column-span: 6;
|
| 221 |
-
grid-column-end: span 6; }
|
| 222 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 223 |
-
-ms-grid-column-span: 6;
|
| 224 |
-
grid-column-end: span 6; }
|
| 225 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 226 |
-
-ms-grid-column-span: 6;
|
| 227 |
-
grid-column-end: span 6; }
|
| 228 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 229 |
-
-ms-grid-column-span: 6;
|
| 230 |
-
grid-column-end: span 6; }
|
| 231 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 232 |
-
-ms-grid-column-span: 7;
|
| 233 |
-
grid-column-end: span 7; }
|
| 234 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 235 |
-
-ms-grid-column-span: 7;
|
| 236 |
-
grid-column-end: span 7; }
|
| 237 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 238 |
-
-ms-grid-column-span: 7;
|
| 239 |
-
grid-column-end: span 7; }
|
| 240 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 241 |
-
-ms-grid-column-span: 7;
|
| 242 |
-
grid-column-end: span 7; }
|
| 243 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 244 |
-
-ms-grid-column-span: 8;
|
| 245 |
-
grid-column-end: span 8; }
|
| 246 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 247 |
-
-ms-grid-column-span: 8;
|
| 248 |
-
grid-column-end: span 8; }
|
| 249 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 250 |
-
-ms-grid-column-span: 8;
|
| 251 |
-
grid-column-end: span 8; }
|
| 252 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 253 |
-
-ms-grid-column-span: 8;
|
| 254 |
-
grid-column-end: span 8; }
|
| 255 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 256 |
-
-ms-grid-column-span: 9;
|
| 257 |
-
grid-column-end: span 9; }
|
| 258 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 259 |
-
-ms-grid-column-span: 9;
|
| 260 |
-
grid-column-end: span 9; }
|
| 261 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 262 |
-
-ms-grid-column-span: 9;
|
| 263 |
-
grid-column-end: span 9; }
|
| 264 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 265 |
-
-ms-grid-column-span: 9;
|
| 266 |
-
grid-column-end: span 9; }
|
| 267 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 268 |
-
-ms-grid-column-span: 10;
|
| 269 |
-
grid-column-end: span 10; }
|
| 270 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 271 |
-
-ms-grid-column-span: 10;
|
| 272 |
-
grid-column-end: span 10; }
|
| 273 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 274 |
-
-ms-grid-column-span: 10;
|
| 275 |
-
grid-column-end: span 10; }
|
| 276 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 277 |
-
-ms-grid-column-span: 10;
|
| 278 |
-
grid-column-end: span 10; }
|
| 279 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 280 |
-
-ms-grid-column-span: 11;
|
| 281 |
-
grid-column-end: span 11; }
|
| 282 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 283 |
-
-ms-grid-column-span: 11;
|
| 284 |
-
grid-column-end: span 11; }
|
| 285 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 286 |
-
-ms-grid-column-span: 11;
|
| 287 |
-
grid-column-end: span 11; }
|
| 288 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 289 |
-
-ms-grid-column-span: 11;
|
| 290 |
-
grid-column-end: span 11; }
|
| 291 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 292 |
-
-ms-grid-column-span: 12;
|
| 293 |
-
grid-column-end: span 12; }
|
| 294 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 295 |
-
-ms-grid-column-span: 12;
|
| 296 |
-
grid-column-end: span 12; }
|
| 297 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 298 |
-
-ms-grid-column-span: 12;
|
| 299 |
-
grid-column-end: span 12; }
|
| 300 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 301 |
-
-ms-grid-column-span: 12;
|
| 302 |
-
grid-column-end: span 12; }
|
| 303 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 304 |
-
-ms-grid-row: 1;
|
| 305 |
-
grid-row-start: 1; }
|
| 306 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 307 |
-
-ms-grid-row: 1;
|
| 308 |
-
grid-row-start: 1; }
|
| 309 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 310 |
-
-ms-grid-row: 1;
|
| 311 |
-
grid-row-start: 1; }
|
| 312 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 313 |
-
-ms-grid-row: 1;
|
| 314 |
-
grid-row-start: 1; }
|
| 315 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 316 |
-
-ms-grid-row: 2;
|
| 317 |
-
grid-row-start: 2; }
|
| 318 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 319 |
-
-ms-grid-row: 2;
|
| 320 |
-
grid-row-start: 2; }
|
| 321 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 322 |
-
-ms-grid-row: 2;
|
| 323 |
-
grid-row-start: 2; }
|
| 324 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 325 |
-
-ms-grid-row: 2;
|
| 326 |
-
grid-row-start: 2; }
|
| 327 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 328 |
-
-ms-grid-row: 3;
|
| 329 |
-
grid-row-start: 3; }
|
| 330 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 331 |
-
-ms-grid-row: 3;
|
| 332 |
-
grid-row-start: 3; }
|
| 333 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 334 |
-
-ms-grid-row: 3;
|
| 335 |
-
grid-row-start: 3; }
|
| 336 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 337 |
-
-ms-grid-row: 3;
|
| 338 |
-
grid-row-start: 3; }
|
| 339 |
-
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 340 |
-
-ms-grid-row: 4;
|
| 341 |
-
grid-row-start: 4; }
|
| 342 |
-
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 343 |
-
-ms-grid-row: 4;
|
| 344 |
-
grid-row-start: 4; }
|
| 345 |
-
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 346 |
-
-ms-grid-row: 4;
|
| 347 |
-
grid-row-start: 4; }
|
| 348 |
-
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 349 |
-
-ms-grid-row: 4;
|
| 350 |
-
grid-row-start: 4; }
|
| 351 |
-
@media (min-width: 600px) {
|
| 352 |
-
.wp-block-jetpack-layout-grid {
|
| 353 |
-
-ms-grid-columns: (1fr)[8];
|
| 354 |
-
grid-template-columns: repeat(8, 1fr); }
|
| 355 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 356 |
-
-ms-grid-column: 1;
|
| 357 |
-
grid-column-start: 1; }
|
| 358 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 359 |
-
-ms-grid-column: 1;
|
| 360 |
-
grid-column-start: 1; }
|
| 361 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 362 |
-
-ms-grid-column: 1;
|
| 363 |
-
grid-column-start: 1; }
|
| 364 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 365 |
-
-ms-grid-column: 1;
|
| 366 |
-
grid-column-start: 1; }
|
| 367 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 368 |
-
-ms-grid-column: 2;
|
| 369 |
-
grid-column-start: 2; }
|
| 370 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 371 |
-
-ms-grid-column: 2;
|
| 372 |
-
grid-column-start: 2; }
|
| 373 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 374 |
-
-ms-grid-column: 2;
|
| 375 |
-
grid-column-start: 2; }
|
| 376 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 377 |
-
-ms-grid-column: 2;
|
| 378 |
-
grid-column-start: 2; }
|
| 379 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 380 |
-
-ms-grid-column: 3;
|
| 381 |
-
grid-column-start: 3; }
|
| 382 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 383 |
-
-ms-grid-column: 3;
|
| 384 |
-
grid-column-start: 3; }
|
| 385 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 386 |
-
-ms-grid-column: 3;
|
| 387 |
-
grid-column-start: 3; }
|
| 388 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 389 |
-
-ms-grid-column: 3;
|
| 390 |
-
grid-column-start: 3; }
|
| 391 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 392 |
-
-ms-grid-column: 4;
|
| 393 |
-
grid-column-start: 4; }
|
| 394 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 395 |
-
-ms-grid-column: 4;
|
| 396 |
-
grid-column-start: 4; }
|
| 397 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 398 |
-
-ms-grid-column: 4;
|
| 399 |
-
grid-column-start: 4; }
|
| 400 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 401 |
-
-ms-grid-column: 4;
|
| 402 |
-
grid-column-start: 4; }
|
| 403 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 404 |
-
-ms-grid-column: 5;
|
| 405 |
-
grid-column-start: 5; }
|
| 406 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 407 |
-
-ms-grid-column: 5;
|
| 408 |
-
grid-column-start: 5; }
|
| 409 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 410 |
-
-ms-grid-column: 5;
|
| 411 |
-
grid-column-start: 5; }
|
| 412 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 413 |
-
-ms-grid-column: 5;
|
| 414 |
-
grid-column-start: 5; }
|
| 415 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 416 |
-
-ms-grid-column: 6;
|
| 417 |
-
grid-column-start: 6; }
|
| 418 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 419 |
-
-ms-grid-column: 6;
|
| 420 |
-
grid-column-start: 6; }
|
| 421 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 422 |
-
-ms-grid-column: 6;
|
| 423 |
-
grid-column-start: 6; }
|
| 424 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 425 |
-
-ms-grid-column: 6;
|
| 426 |
-
grid-column-start: 6; }
|
| 427 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 428 |
-
-ms-grid-column: 7;
|
| 429 |
-
grid-column-start: 7; }
|
| 430 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 431 |
-
-ms-grid-column: 7;
|
| 432 |
-
grid-column-start: 7; }
|
| 433 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 434 |
-
-ms-grid-column: 7;
|
| 435 |
-
grid-column-start: 7; }
|
| 436 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 437 |
-
-ms-grid-column: 7;
|
| 438 |
-
grid-column-start: 7; }
|
| 439 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 440 |
-
-ms-grid-column: 8;
|
| 441 |
-
grid-column-start: 8; }
|
| 442 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 443 |
-
-ms-grid-column: 8;
|
| 444 |
-
grid-column-start: 8; }
|
| 445 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 446 |
-
-ms-grid-column: 8;
|
| 447 |
-
grid-column-start: 8; }
|
| 448 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 449 |
-
-ms-grid-column: 8;
|
| 450 |
-
grid-column-start: 8; }
|
| 451 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 452 |
-
-ms-grid-column: 9;
|
| 453 |
-
grid-column-start: 9; }
|
| 454 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 455 |
-
-ms-grid-column: 9;
|
| 456 |
-
grid-column-start: 9; }
|
| 457 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 458 |
-
-ms-grid-column: 9;
|
| 459 |
-
grid-column-start: 9; }
|
| 460 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 461 |
-
-ms-grid-column: 9;
|
| 462 |
-
grid-column-start: 9; }
|
| 463 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 464 |
-
-ms-grid-column: 10;
|
| 465 |
-
grid-column-start: 10; }
|
| 466 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 467 |
-
-ms-grid-column: 10;
|
| 468 |
-
grid-column-start: 10; }
|
| 469 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 470 |
-
-ms-grid-column: 10;
|
| 471 |
-
grid-column-start: 10; }
|
| 472 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 473 |
-
-ms-grid-column: 10;
|
| 474 |
-
grid-column-start: 10; }
|
| 475 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 476 |
-
-ms-grid-column: 11;
|
| 477 |
-
grid-column-start: 11; }
|
| 478 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 479 |
-
-ms-grid-column: 11;
|
| 480 |
-
grid-column-start: 11; }
|
| 481 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 482 |
-
-ms-grid-column: 11;
|
| 483 |
-
grid-column-start: 11; }
|
| 484 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 485 |
-
-ms-grid-column: 11;
|
| 486 |
-
grid-column-start: 11; }
|
| 487 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 488 |
-
-ms-grid-column: 12;
|
| 489 |
-
grid-column-start: 12; }
|
| 490 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 491 |
-
-ms-grid-column: 12;
|
| 492 |
-
grid-column-start: 12; }
|
| 493 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 494 |
-
-ms-grid-column: 12;
|
| 495 |
-
grid-column-start: 12; }
|
| 496 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 497 |
-
-ms-grid-column: 12;
|
| 498 |
-
grid-column-start: 12; }
|
| 499 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 500 |
-
-ms-grid-column-span: 1;
|
| 501 |
-
grid-column-end: span 1; }
|
| 502 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 503 |
-
-ms-grid-column-span: 1;
|
| 504 |
-
grid-column-end: span 1; }
|
| 505 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 506 |
-
-ms-grid-column-span: 1;
|
| 507 |
-
grid-column-end: span 1; }
|
| 508 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 509 |
-
-ms-grid-column-span: 1;
|
| 510 |
-
grid-column-end: span 1; }
|
| 511 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 512 |
-
-ms-grid-column-span: 2;
|
| 513 |
-
grid-column-end: span 2; }
|
| 514 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 515 |
-
-ms-grid-column-span: 2;
|
| 516 |
-
grid-column-end: span 2; }
|
| 517 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 518 |
-
-ms-grid-column-span: 2;
|
| 519 |
-
grid-column-end: span 2; }
|
| 520 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 521 |
-
-ms-grid-column-span: 2;
|
| 522 |
-
grid-column-end: span 2; }
|
| 523 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 524 |
-
-ms-grid-column-span: 3;
|
| 525 |
-
grid-column-end: span 3; }
|
| 526 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 527 |
-
-ms-grid-column-span: 3;
|
| 528 |
-
grid-column-end: span 3; }
|
| 529 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 530 |
-
-ms-grid-column-span: 3;
|
| 531 |
-
grid-column-end: span 3; }
|
| 532 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 533 |
-
-ms-grid-column-span: 3;
|
| 534 |
-
grid-column-end: span 3; }
|
| 535 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 536 |
-
-ms-grid-column-span: 4;
|
| 537 |
-
grid-column-end: span 4; }
|
| 538 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 539 |
-
-ms-grid-column-span: 4;
|
| 540 |
-
grid-column-end: span 4; }
|
| 541 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 542 |
-
-ms-grid-column-span: 4;
|
| 543 |
-
grid-column-end: span 4; }
|
| 544 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 545 |
-
-ms-grid-column-span: 4;
|
| 546 |
-
grid-column-end: span 4; }
|
| 547 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 548 |
-
-ms-grid-column-span: 5;
|
| 549 |
-
grid-column-end: span 5; }
|
| 550 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 551 |
-
-ms-grid-column-span: 5;
|
| 552 |
-
grid-column-end: span 5; }
|
| 553 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 554 |
-
-ms-grid-column-span: 5;
|
| 555 |
-
grid-column-end: span 5; }
|
| 556 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 557 |
-
-ms-grid-column-span: 5;
|
| 558 |
-
grid-column-end: span 5; }
|
| 559 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 560 |
-
-ms-grid-column-span: 6;
|
| 561 |
-
grid-column-end: span 6; }
|
| 562 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 563 |
-
-ms-grid-column-span: 6;
|
| 564 |
-
grid-column-end: span 6; }
|
| 565 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 566 |
-
-ms-grid-column-span: 6;
|
| 567 |
-
grid-column-end: span 6; }
|
| 568 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 569 |
-
-ms-grid-column-span: 6;
|
| 570 |
-
grid-column-end: span 6; }
|
| 571 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 572 |
-
-ms-grid-column-span: 7;
|
| 573 |
-
grid-column-end: span 7; }
|
| 574 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 575 |
-
-ms-grid-column-span: 7;
|
| 576 |
-
grid-column-end: span 7; }
|
| 577 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 578 |
-
-ms-grid-column-span: 7;
|
| 579 |
-
grid-column-end: span 7; }
|
| 580 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 581 |
-
-ms-grid-column-span: 7;
|
| 582 |
-
grid-column-end: span 7; }
|
| 583 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 584 |
-
-ms-grid-column-span: 8;
|
| 585 |
-
grid-column-end: span 8; }
|
| 586 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 587 |
-
-ms-grid-column-span: 8;
|
| 588 |
-
grid-column-end: span 8; }
|
| 589 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 590 |
-
-ms-grid-column-span: 8;
|
| 591 |
-
grid-column-end: span 8; }
|
| 592 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 593 |
-
-ms-grid-column-span: 8;
|
| 594 |
-
grid-column-end: span 8; }
|
| 595 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 596 |
-
-ms-grid-column-span: 9;
|
| 597 |
-
grid-column-end: span 9; }
|
| 598 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 599 |
-
-ms-grid-column-span: 9;
|
| 600 |
-
grid-column-end: span 9; }
|
| 601 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 602 |
-
-ms-grid-column-span: 9;
|
| 603 |
-
grid-column-end: span 9; }
|
| 604 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 605 |
-
-ms-grid-column-span: 9;
|
| 606 |
-
grid-column-end: span 9; }
|
| 607 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 608 |
-
-ms-grid-column-span: 10;
|
| 609 |
-
grid-column-end: span 10; }
|
| 610 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 611 |
-
-ms-grid-column-span: 10;
|
| 612 |
-
grid-column-end: span 10; }
|
| 613 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 614 |
-
-ms-grid-column-span: 10;
|
| 615 |
-
grid-column-end: span 10; }
|
| 616 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 617 |
-
-ms-grid-column-span: 10;
|
| 618 |
-
grid-column-end: span 10; }
|
| 619 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 620 |
-
-ms-grid-column-span: 11;
|
| 621 |
-
grid-column-end: span 11; }
|
| 622 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 623 |
-
-ms-grid-column-span: 11;
|
| 624 |
-
grid-column-end: span 11; }
|
| 625 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 626 |
-
-ms-grid-column-span: 11;
|
| 627 |
-
grid-column-end: span 11; }
|
| 628 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 629 |
-
-ms-grid-column-span: 11;
|
| 630 |
-
grid-column-end: span 11; }
|
| 631 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 632 |
-
-ms-grid-column-span: 12;
|
| 633 |
-
grid-column-end: span 12; }
|
| 634 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 635 |
-
-ms-grid-column-span: 12;
|
| 636 |
-
grid-column-end: span 12; }
|
| 637 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 638 |
-
-ms-grid-column-span: 12;
|
| 639 |
-
grid-column-end: span 12; }
|
| 640 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 641 |
-
-ms-grid-column-span: 12;
|
| 642 |
-
grid-column-end: span 12; }
|
| 643 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 644 |
-
-ms-grid-row: 1;
|
| 645 |
-
grid-row-start: 1; }
|
| 646 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 647 |
-
-ms-grid-row: 1;
|
| 648 |
-
grid-row-start: 1; }
|
| 649 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 650 |
-
-ms-grid-row: 1;
|
| 651 |
-
grid-row-start: 1; }
|
| 652 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 653 |
-
-ms-grid-row: 1;
|
| 654 |
-
grid-row-start: 1; }
|
| 655 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 656 |
-
-ms-grid-row: 2;
|
| 657 |
-
grid-row-start: 2; }
|
| 658 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 659 |
-
-ms-grid-row: 2;
|
| 660 |
-
grid-row-start: 2; }
|
| 661 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 662 |
-
-ms-grid-row: 2;
|
| 663 |
-
grid-row-start: 2; }
|
| 664 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 665 |
-
-ms-grid-row: 2;
|
| 666 |
-
grid-row-start: 2; }
|
| 667 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 668 |
-
-ms-grid-row: 3;
|
| 669 |
-
grid-row-start: 3; }
|
| 670 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 671 |
-
-ms-grid-row: 3;
|
| 672 |
-
grid-row-start: 3; }
|
| 673 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 674 |
-
-ms-grid-row: 3;
|
| 675 |
-
grid-row-start: 3; }
|
| 676 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 677 |
-
-ms-grid-row: 3;
|
| 678 |
-
grid-row-start: 3; }
|
| 679 |
-
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 680 |
-
-ms-grid-row: 4;
|
| 681 |
-
grid-row-start: 4; }
|
| 682 |
-
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 683 |
-
-ms-grid-row: 4;
|
| 684 |
-
grid-row-start: 4; }
|
| 685 |
-
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 686 |
-
-ms-grid-row: 4;
|
| 687 |
-
grid-row-start: 4; }
|
| 688 |
-
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 689 |
-
-ms-grid-row: 4;
|
| 690 |
-
grid-row-start: 4; } }
|
| 691 |
-
@media (min-width: 1080px) {
|
| 692 |
-
.wp-block-jetpack-layout-grid {
|
| 693 |
-
-ms-grid-columns: (1fr)[12];
|
| 694 |
-
grid-template-columns: repeat(12, 1fr); }
|
| 695 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 696 |
-
-ms-grid-column: 1;
|
| 697 |
-
grid-column-start: 1; }
|
| 698 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 699 |
-
-ms-grid-column: 1;
|
| 700 |
-
grid-column-start: 1; }
|
| 701 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 702 |
-
-ms-grid-column: 1;
|
| 703 |
-
grid-column-start: 1; }
|
| 704 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 705 |
-
-ms-grid-column: 1;
|
| 706 |
-
grid-column-start: 1; }
|
| 707 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 708 |
-
-ms-grid-column: 2;
|
| 709 |
-
grid-column-start: 2; }
|
| 710 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 711 |
-
-ms-grid-column: 2;
|
| 712 |
-
grid-column-start: 2; }
|
| 713 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 714 |
-
-ms-grid-column: 2;
|
| 715 |
-
grid-column-start: 2; }
|
| 716 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 717 |
-
-ms-grid-column: 2;
|
| 718 |
-
grid-column-start: 2; }
|
| 719 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 720 |
-
-ms-grid-column: 3;
|
| 721 |
-
grid-column-start: 3; }
|
| 722 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 723 |
-
-ms-grid-column: 3;
|
| 724 |
-
grid-column-start: 3; }
|
| 725 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 726 |
-
-ms-grid-column: 3;
|
| 727 |
-
grid-column-start: 3; }
|
| 728 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 729 |
-
-ms-grid-column: 3;
|
| 730 |
-
grid-column-start: 3; }
|
| 731 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 732 |
-
-ms-grid-column: 4;
|
| 733 |
-
grid-column-start: 4; }
|
| 734 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 735 |
-
-ms-grid-column: 4;
|
| 736 |
-
grid-column-start: 4; }
|
| 737 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 738 |
-
-ms-grid-column: 4;
|
| 739 |
-
grid-column-start: 4; }
|
| 740 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 741 |
-
-ms-grid-column: 4;
|
| 742 |
-
grid-column-start: 4; }
|
| 743 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 744 |
-
-ms-grid-column: 5;
|
| 745 |
-
grid-column-start: 5; }
|
| 746 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 747 |
-
-ms-grid-column: 5;
|
| 748 |
-
grid-column-start: 5; }
|
| 749 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 750 |
-
-ms-grid-column: 5;
|
| 751 |
-
grid-column-start: 5; }
|
| 752 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 753 |
-
-ms-grid-column: 5;
|
| 754 |
-
grid-column-start: 5; }
|
| 755 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 756 |
-
-ms-grid-column: 6;
|
| 757 |
-
grid-column-start: 6; }
|
| 758 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 759 |
-
-ms-grid-column: 6;
|
| 760 |
-
grid-column-start: 6; }
|
| 761 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 762 |
-
-ms-grid-column: 6;
|
| 763 |
-
grid-column-start: 6; }
|
| 764 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 765 |
-
-ms-grid-column: 6;
|
| 766 |
-
grid-column-start: 6; }
|
| 767 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 768 |
-
-ms-grid-column: 7;
|
| 769 |
-
grid-column-start: 7; }
|
| 770 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 771 |
-
-ms-grid-column: 7;
|
| 772 |
-
grid-column-start: 7; }
|
| 773 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 774 |
-
-ms-grid-column: 7;
|
| 775 |
-
grid-column-start: 7; }
|
| 776 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 777 |
-
-ms-grid-column: 7;
|
| 778 |
-
grid-column-start: 7; }
|
| 779 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 780 |
-
-ms-grid-column: 8;
|
| 781 |
-
grid-column-start: 8; }
|
| 782 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 783 |
-
-ms-grid-column: 8;
|
| 784 |
-
grid-column-start: 8; }
|
| 785 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 786 |
-
-ms-grid-column: 8;
|
| 787 |
-
grid-column-start: 8; }
|
| 788 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 789 |
-
-ms-grid-column: 8;
|
| 790 |
-
grid-column-start: 8; }
|
| 791 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 792 |
-
-ms-grid-column: 9;
|
| 793 |
-
grid-column-start: 9; }
|
| 794 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 795 |
-
-ms-grid-column: 9;
|
| 796 |
-
grid-column-start: 9; }
|
| 797 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 798 |
-
-ms-grid-column: 9;
|
| 799 |
-
grid-column-start: 9; }
|
| 800 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 801 |
-
-ms-grid-column: 9;
|
| 802 |
-
grid-column-start: 9; }
|
| 803 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 804 |
-
-ms-grid-column: 10;
|
| 805 |
-
grid-column-start: 10; }
|
| 806 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 807 |
-
-ms-grid-column: 10;
|
| 808 |
-
grid-column-start: 10; }
|
| 809 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 810 |
-
-ms-grid-column: 10;
|
| 811 |
-
grid-column-start: 10; }
|
| 812 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 813 |
-
-ms-grid-column: 10;
|
| 814 |
-
grid-column-start: 10; }
|
| 815 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 816 |
-
-ms-grid-column: 11;
|
| 817 |
-
grid-column-start: 11; }
|
| 818 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 819 |
-
-ms-grid-column: 11;
|
| 820 |
-
grid-column-start: 11; }
|
| 821 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 822 |
-
-ms-grid-column: 11;
|
| 823 |
-
grid-column-start: 11; }
|
| 824 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 825 |
-
-ms-grid-column: 11;
|
| 826 |
-
grid-column-start: 11; }
|
| 827 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 828 |
-
-ms-grid-column: 12;
|
| 829 |
-
grid-column-start: 12; }
|
| 830 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 831 |
-
-ms-grid-column: 12;
|
| 832 |
-
grid-column-start: 12; }
|
| 833 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 834 |
-
-ms-grid-column: 12;
|
| 835 |
-
grid-column-start: 12; }
|
| 836 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 837 |
-
-ms-grid-column: 12;
|
| 838 |
-
grid-column-start: 12; }
|
| 839 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 840 |
-
-ms-grid-column-span: 1;
|
| 841 |
-
grid-column-end: span 1; }
|
| 842 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 843 |
-
-ms-grid-column-span: 1;
|
| 844 |
-
grid-column-end: span 1; }
|
| 845 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 846 |
-
-ms-grid-column-span: 1;
|
| 847 |
-
grid-column-end: span 1; }
|
| 848 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 849 |
-
-ms-grid-column-span: 1;
|
| 850 |
-
grid-column-end: span 1; }
|
| 851 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 852 |
-
-ms-grid-column-span: 2;
|
| 853 |
-
grid-column-end: span 2; }
|
| 854 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 855 |
-
-ms-grid-column-span: 2;
|
| 856 |
-
grid-column-end: span 2; }
|
| 857 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 858 |
-
-ms-grid-column-span: 2;
|
| 859 |
-
grid-column-end: span 2; }
|
| 860 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 861 |
-
-ms-grid-column-span: 2;
|
| 862 |
-
grid-column-end: span 2; }
|
| 863 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 864 |
-
-ms-grid-column-span: 3;
|
| 865 |
-
grid-column-end: span 3; }
|
| 866 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 867 |
-
-ms-grid-column-span: 3;
|
| 868 |
-
grid-column-end: span 3; }
|
| 869 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 870 |
-
-ms-grid-column-span: 3;
|
| 871 |
-
grid-column-end: span 3; }
|
| 872 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 873 |
-
-ms-grid-column-span: 3;
|
| 874 |
-
grid-column-end: span 3; }
|
| 875 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 876 |
-
-ms-grid-column-span: 4;
|
| 877 |
-
grid-column-end: span 4; }
|
| 878 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 879 |
-
-ms-grid-column-span: 4;
|
| 880 |
-
grid-column-end: span 4; }
|
| 881 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 882 |
-
-ms-grid-column-span: 4;
|
| 883 |
-
grid-column-end: span 4; }
|
| 884 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 885 |
-
-ms-grid-column-span: 4;
|
| 886 |
-
grid-column-end: span 4; }
|
| 887 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 888 |
-
-ms-grid-column-span: 5;
|
| 889 |
-
grid-column-end: span 5; }
|
| 890 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 891 |
-
-ms-grid-column-span: 5;
|
| 892 |
-
grid-column-end: span 5; }
|
| 893 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 894 |
-
-ms-grid-column-span: 5;
|
| 895 |
-
grid-column-end: span 5; }
|
| 896 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 897 |
-
-ms-grid-column-span: 5;
|
| 898 |
-
grid-column-end: span 5; }
|
| 899 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 900 |
-
-ms-grid-column-span: 6;
|
| 901 |
-
grid-column-end: span 6; }
|
| 902 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 903 |
-
-ms-grid-column-span: 6;
|
| 904 |
-
grid-column-end: span 6; }
|
| 905 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 906 |
-
-ms-grid-column-span: 6;
|
| 907 |
-
grid-column-end: span 6; }
|
| 908 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 909 |
-
-ms-grid-column-span: 6;
|
| 910 |
-
grid-column-end: span 6; }
|
| 911 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 912 |
-
-ms-grid-column-span: 7;
|
| 913 |
-
grid-column-end: span 7; }
|
| 914 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 915 |
-
-ms-grid-column-span: 7;
|
| 916 |
-
grid-column-end: span 7; }
|
| 917 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 918 |
-
-ms-grid-column-span: 7;
|
| 919 |
-
grid-column-end: span 7; }
|
| 920 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 921 |
-
-ms-grid-column-span: 7;
|
| 922 |
-
grid-column-end: span 7; }
|
| 923 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 924 |
-
-ms-grid-column-span: 8;
|
| 925 |
-
grid-column-end: span 8; }
|
| 926 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 927 |
-
-ms-grid-column-span: 8;
|
| 928 |
-
grid-column-end: span 8; }
|
| 929 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 930 |
-
-ms-grid-column-span: 8;
|
| 931 |
-
grid-column-end: span 8; }
|
| 932 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 933 |
-
-ms-grid-column-span: 8;
|
| 934 |
-
grid-column-end: span 8; }
|
| 935 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 936 |
-
-ms-grid-column-span: 9;
|
| 937 |
-
grid-column-end: span 9; }
|
| 938 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 939 |
-
-ms-grid-column-span: 9;
|
| 940 |
-
grid-column-end: span 9; }
|
| 941 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 942 |
-
-ms-grid-column-span: 9;
|
| 943 |
-
grid-column-end: span 9; }
|
| 944 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 945 |
-
-ms-grid-column-span: 9;
|
| 946 |
-
grid-column-end: span 9; }
|
| 947 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 948 |
-
-ms-grid-column-span: 10;
|
| 949 |
-
grid-column-end: span 10; }
|
| 950 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 951 |
-
-ms-grid-column-span: 10;
|
| 952 |
-
grid-column-end: span 10; }
|
| 953 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 954 |
-
-ms-grid-column-span: 10;
|
| 955 |
-
grid-column-end: span 10; }
|
| 956 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 957 |
-
-ms-grid-column-span: 10;
|
| 958 |
-
grid-column-end: span 10; }
|
| 959 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 960 |
-
-ms-grid-column-span: 11;
|
| 961 |
-
grid-column-end: span 11; }
|
| 962 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 963 |
-
-ms-grid-column-span: 11;
|
| 964 |
-
grid-column-end: span 11; }
|
| 965 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 966 |
-
-ms-grid-column-span: 11;
|
| 967 |
-
grid-column-end: span 11; }
|
| 968 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 969 |
-
-ms-grid-column-span: 11;
|
| 970 |
-
grid-column-end: span 11; }
|
| 971 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 972 |
-
-ms-grid-column-span: 12;
|
| 973 |
-
grid-column-end: span 12; }
|
| 974 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 975 |
-
-ms-grid-column-span: 12;
|
| 976 |
-
grid-column-end: span 12; }
|
| 977 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 978 |
-
-ms-grid-column-span: 12;
|
| 979 |
-
grid-column-end: span 12; }
|
| 980 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 981 |
-
-ms-grid-column-span: 12;
|
| 982 |
-
grid-column-end: span 12; }
|
| 983 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 984 |
-
-ms-grid-row: 1;
|
| 985 |
-
grid-row-start: 1; }
|
| 986 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 987 |
-
-ms-grid-row: 1;
|
| 988 |
-
grid-row-start: 1; }
|
| 989 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 990 |
-
-ms-grid-row: 1;
|
| 991 |
-
grid-row-start: 1; }
|
| 992 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 993 |
-
-ms-grid-row: 1;
|
| 994 |
-
grid-row-start: 1; }
|
| 995 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 996 |
-
-ms-grid-row: 2;
|
| 997 |
-
grid-row-start: 2; }
|
| 998 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 999 |
-
-ms-grid-row: 2;
|
| 1000 |
-
grid-row-start: 2; }
|
| 1001 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 1002 |
-
-ms-grid-row: 2;
|
| 1003 |
-
grid-row-start: 2; }
|
| 1004 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 1005 |
-
-ms-grid-row: 2;
|
| 1006 |
-
grid-row-start: 2; }
|
| 1007 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 1008 |
-
-ms-grid-row: 3;
|
| 1009 |
-
grid-row-start: 3; }
|
| 1010 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 1011 |
-
-ms-grid-row: 3;
|
| 1012 |
-
grid-row-start: 3; }
|
| 1013 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 1014 |
-
-ms-grid-row: 3;
|
| 1015 |
-
grid-row-start: 3; }
|
| 1016 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 1017 |
-
-ms-grid-row: 3;
|
| 1018 |
-
grid-row-start: 3; }
|
| 1019 |
-
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 1020 |
-
-ms-grid-row: 4;
|
| 1021 |
-
grid-row-start: 4; }
|
| 1022 |
-
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 1023 |
-
-ms-grid-row: 4;
|
| 1024 |
-
grid-row-start: 4; }
|
| 1025 |
-
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 1026 |
-
-ms-grid-row: 4;
|
| 1027 |
-
grid-row-start: 4; }
|
| 1028 |
-
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 1029 |
-
-ms-grid-row: 4;
|
| 1030 |
-
grid-row-start: 4; } }
|
| 1031 |
-
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column * {
|
| 1032 |
-
word-break: break-word;
|
| 1033 |
-
word-wrap: break-word;
|
| 1034 |
-
-webkit-hyphens: auto;
|
| 1035 |
-
-ms-hyphens: auto;
|
| 1036 |
-
hyphens: auto; }
|
| 1037 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
|
| 1038 |
-
grid-gap: 0px; }
|
| 1039 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
|
| 1040 |
-
grid-gap: 8px; }
|
| 1041 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
|
| 1042 |
-
grid-gap: 16px; }
|
| 1043 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
|
| 1044 |
-
grid-gap: 48px; }
|
| 1045 |
-
|
| 1046 |
-
@-moz-document url-prefix() {
|
| 1047 |
-
.wp-block-jetpack-layout-grid .wp-block-cover {
|
| 1048 |
-
max-height: 0; } }
|
| 1049 |
-
|
| 1050 |
-
.wp-block-jetpack-layout-grid-column {
|
| 1051 |
-
max-width: 100%; }
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
blocks/layout-grid.php
CHANGED
|
@@ -6,30 +6,13 @@ add_action( 'init', function() {
|
|
| 6 |
Â
'editor_script' => 'jetpack-layout-grid',
|
| 7 |
Â
'style' => 'jetpack-layout-grid',
|
| 8 |
Â
'editor_style' => 'jetpack-layout-grid-editor',
|
| 9 |
-
'render_callback' => function( $attribs, $content ) {
|
| 10 |
-
wp_enqueue_style( 'wpcom-layout-grid-front' );
|
| 11 |
-
return $content;
|
| 12 |
-
},
|
| 13 |
Â
] );
|
| 14 |
Â
|
| 15 |
Â
register_block_type( 'jetpack/layout-grid-column', [
|
| 16 |
Â
'editor_script' => 'jetpack-layout-grid',
|
| 17 |
Â
'style' => 'jetpack-layout-grid',
|
| 18 |
Â
'editor_style' => 'jetpack-layout-grid-editor',
|
| 19 |
-
'render_callback' => function( $attribs, $content ) {
|
| 20 |
-
wp_enqueue_style( 'wpcom-layout-grid-front' );
|
| 21 |
-
return $content;
|
| 22 |
-
},
|
| 23 |
Â
] );
|
| 24 |
Â
|
| 25 |
Â
wp_set_script_translations( 'jetpack-layout-grid', 'layout-grid' );
|
| 26 |
Â
} );
|
| 27 |
-
|
| 28 |
-
add_action( 'wp_enqueue_scripts', function() {
|
| 29 |
-
wp_register_style(
|
| 30 |
-
'wpcom-layout-grid-front',
|
| 31 |
-
plugins_url( 'front.css', __FILE__ ),
|
| 32 |
-
[], // no dependencies
|
| 33 |
-
filemtime( plugin_dir_path( __FILE__ ) . 'front.css' )
|
| 34 |
-
);
|
| 35 |
-
} );
|
| 6 |
Â
'editor_script' => 'jetpack-layout-grid',
|
| 7 |
Â
'style' => 'jetpack-layout-grid',
|
| 8 |
Â
'editor_style' => 'jetpack-layout-grid-editor',
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
| 9 |
Â
] );
|
| 10 |
Â
|
| 11 |
Â
register_block_type( 'jetpack/layout-grid-column', [
|
| 12 |
Â
'editor_script' => 'jetpack-layout-grid',
|
| 13 |
Â
'style' => 'jetpack-layout-grid',
|
| 14 |
Â
'editor_style' => 'jetpack-layout-grid-editor',
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
| 15 |
Â
] );
|
| 16 |
Â
|
| 17 |
Â
wp_set_script_translations( 'jetpack-layout-grid', 'layout-grid' );
|
| 18 |
Â
} );
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
editor.css
CHANGED
|
@@ -65,7 +65,7 @@
|
|
| 65 |
Â
/**
|
| 66 |
Â
* Resize grid overlay
|
| 67 |
Â
*/
|
| 68 |
-
.wp-block-jetpack-layout-grid .wpcom-resize-grid {
|
| 69 |
Â
user-select: none;
|
| 70 |
Â
position: absolute;
|
| 71 |
Â
top: 0;
|
|
@@ -73,19 +73,19 @@
|
|
| 73 |
Â
width: 100%;
|
| 74 |
Â
height: 100%;
|
| 75 |
Â
touch-action: none; }
|
| 76 |
-
.wp-block-jetpack-layout-grid .wpcom-resize-grid .wp-block {
|
| 77 |
Â
max-width: none; }
|
| 78 |
Â
|
| 79 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 80 |
Â
grid-gap: 0px; }
|
| 81 |
Â
|
| 82 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 83 |
Â
grid-gap: 8px; }
|
| 84 |
Â
|
| 85 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 86 |
Â
grid-gap: 16px; }
|
| 87 |
Â
|
| 88 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 89 |
Â
grid-gap: 48px; }
|
| 90 |
Â
|
| 91 |
Â
.wpcom-resize-grid__column-hidden {
|
|
@@ -105,408 +105,407 @@ body.is-resizing [data-type="jetpack/layout-grid"] {
|
|
| 105 |
Â
/**
|
| 106 |
Â
* Grid columns
|
| 107 |
Â
*/
|
| 108 |
-
.wp-block-jetpack-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 109 |
Â
display: grid;
|
| 110 |
Â
grid-gap: 24px;
|
| 111 |
Â
grid-template-columns: repeat(12, 1fr);
|
| 112 |
Â
margin-left: 0;
|
| 113 |
Â
margin-right: 0;
|
| 114 |
Â
word-break: break-word;
|
| 115 |
-
overflow-wrap: break-word;
|
| 116 |
-
|
| 117 |
-
.wp-block-jetpack-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .block-editor-block-list__block-edit > [data-block] {
|
| 118 |
Â
margin-top: 0;
|
| 119 |
Â
margin-bottom: 0; }
|
| 120 |
-
.wp-block-jetpack-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout .wp-block {
|
| 121 |
Â
max-width: 100%; }
|
| 122 |
Â
|
| 123 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 124 |
Â
grid-gap: 0px; }
|
| 125 |
Â
|
| 126 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 127 |
Â
grid-gap: 8px; }
|
| 128 |
Â
|
| 129 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 130 |
Â
grid-gap: 16px; }
|
| 131 |
Â
|
| 132 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 133 |
Â
grid-gap: 48px; }
|
| 134 |
Â
|
| 135 |
-
.wp-block-jetpack-layout-grid {
|
| 136 |
Â
display: flex;
|
| 137 |
Â
flex-direction: column; }
|
| 138 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 139 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 140 |
Â
grid-column-start: 1; }
|
| 141 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 142 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 143 |
Â
grid-column-start: 1; }
|
| 144 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 145 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 146 |
Â
grid-column-start: 1; }
|
| 147 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 148 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 149 |
Â
grid-column-start: 1; }
|
| 150 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 151 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 152 |
Â
grid-column-start: 2; }
|
| 153 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 154 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 155 |
Â
grid-column-start: 2; }
|
| 156 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 157 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 158 |
Â
grid-column-start: 2; }
|
| 159 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 160 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 161 |
Â
grid-column-start: 2; }
|
| 162 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 163 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 164 |
Â
grid-column-start: 3; }
|
| 165 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 166 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 167 |
Â
grid-column-start: 3; }
|
| 168 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 169 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 170 |
Â
grid-column-start: 3; }
|
| 171 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 172 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 173 |
Â
grid-column-start: 3; }
|
| 174 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 175 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 176 |
Â
grid-column-start: 4; }
|
| 177 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 178 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 179 |
Â
grid-column-start: 4; }
|
| 180 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 181 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 182 |
Â
grid-column-start: 4; }
|
| 183 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 184 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 185 |
Â
grid-column-start: 4; }
|
| 186 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 187 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 188 |
Â
grid-column-start: 5; }
|
| 189 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 190 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 191 |
Â
grid-column-start: 5; }
|
| 192 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 193 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 194 |
Â
grid-column-start: 5; }
|
| 195 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 196 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 197 |
Â
grid-column-start: 5; }
|
| 198 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 199 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 200 |
Â
grid-column-start: 6; }
|
| 201 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 202 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 203 |
Â
grid-column-start: 6; }
|
| 204 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 205 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 206 |
Â
grid-column-start: 6; }
|
| 207 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 208 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 209 |
Â
grid-column-start: 6; }
|
| 210 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 211 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 212 |
Â
grid-column-start: 7; }
|
| 213 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 214 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 215 |
Â
grid-column-start: 7; }
|
| 216 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 217 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 218 |
Â
grid-column-start: 7; }
|
| 219 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 220 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 221 |
Â
grid-column-start: 7; }
|
| 222 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 223 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 224 |
Â
grid-column-start: 8; }
|
| 225 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 226 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 227 |
Â
grid-column-start: 8; }
|
| 228 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 229 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 230 |
Â
grid-column-start: 8; }
|
| 231 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 232 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 233 |
Â
grid-column-start: 8; }
|
| 234 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 235 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 236 |
Â
grid-column-start: 9; }
|
| 237 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 238 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 239 |
Â
grid-column-start: 9; }
|
| 240 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 241 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 242 |
Â
grid-column-start: 9; }
|
| 243 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 244 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 245 |
Â
grid-column-start: 9; }
|
| 246 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 247 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 248 |
Â
grid-column-start: 10; }
|
| 249 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 250 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 251 |
Â
grid-column-start: 10; }
|
| 252 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 253 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 254 |
Â
grid-column-start: 10; }
|
| 255 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 256 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 257 |
Â
grid-column-start: 10; }
|
| 258 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 259 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 260 |
Â
grid-column-start: 11; }
|
| 261 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 262 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 263 |
Â
grid-column-start: 11; }
|
| 264 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 265 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 266 |
Â
grid-column-start: 11; }
|
| 267 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 268 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 269 |
Â
grid-column-start: 11; }
|
| 270 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 271 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 272 |
Â
grid-column-start: 12; }
|
| 273 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 274 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 275 |
Â
grid-column-start: 12; }
|
| 276 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 277 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 278 |
Â
grid-column-start: 12; }
|
| 279 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 280 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 281 |
Â
grid-column-start: 12; }
|
| 282 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 283 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 284 |
Â
grid-column-end: span 1; }
|
| 285 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 286 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 287 |
Â
grid-column-end: span 1; }
|
| 288 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 289 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 290 |
Â
grid-column-end: span 1; }
|
| 291 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 292 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 293 |
Â
grid-column-end: span 1; }
|
| 294 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 295 |
Â
grid-column-end: span 1; }
|
| 296 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 297 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 298 |
Â
grid-column-end: span 2; }
|
| 299 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 300 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 301 |
Â
grid-column-end: span 2; }
|
| 302 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 303 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 304 |
Â
grid-column-end: span 2; }
|
| 305 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 306 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 307 |
Â
grid-column-end: span 2; }
|
| 308 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 309 |
Â
grid-column-end: span 2; }
|
| 310 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 311 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 312 |
Â
grid-column-end: span 3; }
|
| 313 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 314 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 315 |
Â
grid-column-end: span 3; }
|
| 316 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 317 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 318 |
Â
grid-column-end: span 3; }
|
| 319 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 320 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 321 |
Â
grid-column-end: span 3; }
|
| 322 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 323 |
Â
grid-column-end: span 3; }
|
| 324 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 325 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 326 |
Â
grid-column-end: span 4; }
|
| 327 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 328 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 329 |
Â
grid-column-end: span 4; }
|
| 330 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 331 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 332 |
Â
grid-column-end: span 4; }
|
| 333 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 334 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 335 |
Â
grid-column-end: span 4; }
|
| 336 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 337 |
Â
grid-column-end: span 4; }
|
| 338 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 339 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 340 |
Â
grid-column-end: span 5; }
|
| 341 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 342 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 343 |
Â
grid-column-end: span 5; }
|
| 344 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 345 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 346 |
Â
grid-column-end: span 5; }
|
| 347 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 348 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 349 |
Â
grid-column-end: span 5; }
|
| 350 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 351 |
Â
grid-column-end: span 5; }
|
| 352 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 353 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 354 |
Â
grid-column-end: span 6; }
|
| 355 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 356 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 357 |
Â
grid-column-end: span 6; }
|
| 358 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 359 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 360 |
Â
grid-column-end: span 6; }
|
| 361 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 362 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 363 |
Â
grid-column-end: span 6; }
|
| 364 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 365 |
Â
grid-column-end: span 6; }
|
| 366 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 367 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 368 |
Â
grid-column-end: span 7; }
|
| 369 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 370 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 371 |
Â
grid-column-end: span 7; }
|
| 372 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 373 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 374 |
Â
grid-column-end: span 7; }
|
| 375 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 376 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 377 |
Â
grid-column-end: span 7; }
|
| 378 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 379 |
Â
grid-column-end: span 7; }
|
| 380 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 381 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 382 |
Â
grid-column-end: span 8; }
|
| 383 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 384 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 385 |
Â
grid-column-end: span 8; }
|
| 386 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 387 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 388 |
Â
grid-column-end: span 8; }
|
| 389 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 390 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 391 |
Â
grid-column-end: span 8; }
|
| 392 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 393 |
Â
grid-column-end: span 8; }
|
| 394 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 395 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 396 |
Â
grid-column-end: span 9; }
|
| 397 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 398 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 399 |
Â
grid-column-end: span 9; }
|
| 400 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 401 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 402 |
Â
grid-column-end: span 9; }
|
| 403 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 404 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 405 |
Â
grid-column-end: span 9; }
|
| 406 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 407 |
Â
grid-column-end: span 9; }
|
| 408 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 409 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 410 |
Â
grid-column-end: span 10; }
|
| 411 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 412 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 413 |
Â
grid-column-end: span 10; }
|
| 414 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 415 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 416 |
Â
grid-column-end: span 10; }
|
| 417 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 418 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 419 |
Â
grid-column-end: span 10; }
|
| 420 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 421 |
Â
grid-column-end: span 10; }
|
| 422 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 423 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 424 |
Â
grid-column-end: span 11; }
|
| 425 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 426 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 427 |
Â
grid-column-end: span 11; }
|
| 428 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 429 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 430 |
Â
grid-column-end: span 11; }
|
| 431 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 432 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 433 |
Â
grid-column-end: span 11; }
|
| 434 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 435 |
Â
grid-column-end: span 11; }
|
| 436 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 437 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 438 |
Â
grid-column-end: span 12; }
|
| 439 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 440 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 441 |
Â
grid-column-end: span 12; }
|
| 442 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 443 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 444 |
Â
grid-column-end: span 12; }
|
| 445 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 446 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 447 |
Â
grid-column-end: span 12; }
|
| 448 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 449 |
Â
grid-column-end: span 12; }
|
| 450 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 451 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 452 |
Â
grid-row-start: 1; }
|
| 453 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 454 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 455 |
Â
grid-row-start: 1; }
|
| 456 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 457 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 458 |
Â
grid-row-start: 1; }
|
| 459 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 460 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 461 |
Â
grid-row-start: 1; }
|
| 462 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 463 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 464 |
Â
grid-row-start: 2; }
|
| 465 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 466 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 467 |
Â
grid-row-start: 2; }
|
| 468 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 469 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 470 |
Â
grid-row-start: 2; }
|
| 471 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 472 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 473 |
Â
grid-row-start: 2; }
|
| 474 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 475 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 476 |
Â
grid-row-start: 3; }
|
| 477 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 478 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 479 |
Â
grid-row-start: 3; }
|
| 480 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 481 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 482 |
Â
grid-row-start: 3; }
|
| 483 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 484 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 485 |
Â
grid-row-start: 3; }
|
| 486 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 487 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 488 |
Â
grid-row-start: 4; }
|
| 489 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 490 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 491 |
Â
grid-row-start: 4; }
|
| 492 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 493 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 494 |
Â
grid-row-start: 4; }
|
| 495 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 496 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 497 |
Â
grid-row-start: 4; }
|
| 498 |
Â
|
| 499 |
Â
/**
|
| 500 |
Â
* Presets for tablet and mobile - switch the number of columns and layout
|
| 501 |
Â
*/
|
| 502 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-tablet .wpcom-overlay-grid,
|
| 503 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-tablet .wpcom-resize-grid,
|
| 504 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-tablet > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 505 |
Â
grid-template-columns: repeat(8, 1fr); }
|
| 506 |
Â
|
| 507 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-mobile .wpcom-overlay-grid,
|
| 508 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-mobile .wpcom-resize-grid,
|
| 509 |
-
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-mobile > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 510 |
Â
grid-template-columns: repeat(4, 1fr); }
|
| 511 |
Â
|
| 512 |
Â
.wpcom-overlay-resize__handle .components-resizable-box__container,
|
|
@@ -579,7 +578,7 @@ body.is-resizing [data-type="jetpack/layout-grid"] {
|
|
| 579 |
Â
margin-top: 0;
|
| 580 |
Â
margin-bottom: 0; }
|
| 581 |
Â
|
| 582 |
-
.wp-block-jetpack-layout-grid [data-type="jetpack/layout-grid-column"].wp-block {
|
| 583 |
Â
margin: 0;
|
| 584 |
Â
padding-left: 0;
|
| 585 |
Â
padding-right: 0; }
|
|
@@ -637,7 +636,7 @@ body.is-resizing [data-type="jetpack/layout-grid"] {
|
|
| 637 |
Â
/**
|
| 638 |
Â
* Placeholder options
|
| 639 |
Â
*/
|
| 640 |
-
.wp-block-jetpack-layout-grid .block-editor-inner-blocks__template-picker-options {
|
| 641 |
Â
display: flex;
|
| 642 |
Â
flex-direction: row;
|
| 643 |
Â
flex-wrap: nowrap;
|
|
@@ -646,17 +645,17 @@ body.is-resizing [data-type="jetpack/layout-grid"] {
|
|
| 646 |
Â
margin-left: 0;
|
| 647 |
Â
margin-bottom: 0;
|
| 648 |
Â
padding-left: 0; }
|
| 649 |
-
.wp-block-jetpack-layout-grid .block-editor-inner-blocks__template-picker-options li {
|
| 650 |
Â
margin-left: 0;
|
| 651 |
Â
padding-left: 0;
|
| 652 |
Â
list-style: none; }
|
| 653 |
-
.wp-block-jetpack-layout-grid .block-editor-inner-blocks__template-picker-options > li .components-button {
|
| 654 |
Â
list-style: none;
|
| 655 |
Â
flex-shrink: 1;
|
| 656 |
Â
max-width: 72px;
|
| 657 |
Â
margin-right: 8px;
|
| 658 |
Â
flex-basis: 100%; }
|
| 659 |
-
.wp-block-jetpack-layout-grid .block-editor-inner-blocks__template-picker-options .block-editor-inner-blocks__template-picker-option {
|
| 660 |
Â
height: auto;
|
| 661 |
Â
line-height: inherit;
|
| 662 |
Â
background: #fff; }
|
|
@@ -672,7 +671,9 @@ body.is-resizing [data-type="jetpack/layout-grid"] {
|
|
| 672 |
Â
height: 24px;
|
| 673 |
Â
top: 50%;
|
| 674 |
Â
transform: translateY(-50%);
|
| 675 |
-
right: calc(50% - 4px);
|
|
Â
|
|
|
Â
|
|
| 676 |
Â
|
| 677 |
Â
[data-type="jetpack/layout-grid"] .wpcom-overlay-resize__handle .components-resizable-box__side-handle::before,
|
| 678 |
Â
[data-type="jetpack/layout-grid"] .wp-blocks-jetpack-layout-grid__resize-handles .components-resizable-box__side-handle::before {
|
|
@@ -703,47 +704,47 @@ body.is-resizing [data-type="jetpack/layout-grid"] {
|
|
| 703 |
Â
/**
|
| 704 |
Â
* Individual column alignment for the editor
|
| 705 |
Â
*/
|
| 706 |
-
.wp-block-jetpack-layout-grid.are-vertically-aligned-top [data-type="jetpack/layout-grid-column"].wp-block {
|
| 707 |
Â
align-self: flex-start; }
|
| 708 |
Â
|
| 709 |
-
.wp-block-jetpack-layout-grid.are-vertically-aligned-center [data-type="jetpack/layout-grid-column"].wp-block {
|
| 710 |
Â
align-self: center; }
|
| 711 |
Â
|
| 712 |
-
.wp-block-jetpack-layout-grid.are-vertically-aligned-bottom [data-type="jetpack/layout-grid-column"].wp-block {
|
| 713 |
Â
align-self: flex-end; }
|
| 714 |
Â
|
| 715 |
-
.wp-block-jetpack-layout-grid.column1-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(1) {
|
| 716 |
Â
align-self: flex-start; }
|
| 717 |
Â
|
| 718 |
-
.wp-block-jetpack-layout-grid.column1-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(1) {
|
| 719 |
Â
align-self: center; }
|
| 720 |
Â
|
| 721 |
-
.wp-block-jetpack-layout-grid.column1-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(1) {
|
| 722 |
Â
align-self: flex-end; }
|
| 723 |
Â
|
| 724 |
-
.wp-block-jetpack-layout-grid.column2-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(2) {
|
| 725 |
Â
align-self: flex-start; }
|
| 726 |
Â
|
| 727 |
-
.wp-block-jetpack-layout-grid.column2-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(2) {
|
| 728 |
Â
align-self: center; }
|
| 729 |
Â
|
| 730 |
-
.wp-block-jetpack-layout-grid.column2-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(2) {
|
| 731 |
Â
align-self: flex-end; }
|
| 732 |
Â
|
| 733 |
-
.wp-block-jetpack-layout-grid.column3-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(3) {
|
| 734 |
Â
align-self: flex-start; }
|
| 735 |
Â
|
| 736 |
-
.wp-block-jetpack-layout-grid.column3-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(3) {
|
| 737 |
Â
align-self: center; }
|
| 738 |
Â
|
| 739 |
-
.wp-block-jetpack-layout-grid.column3-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(3) {
|
| 740 |
Â
align-self: flex-end; }
|
| 741 |
Â
|
| 742 |
-
.wp-block-jetpack-layout-grid.column4-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(4) {
|
| 743 |
Â
align-self: flex-start; }
|
| 744 |
Â
|
| 745 |
-
.wp-block-jetpack-layout-grid.column4-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(4) {
|
| 746 |
Â
align-self: center; }
|
| 747 |
Â
|
| 748 |
-
.wp-block-jetpack-layout-grid.column4-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(4) {
|
| 749 |
Â
align-self: flex-end; }
|
| 65 |
Â
/**
|
| 66 |
Â
* Resize grid overlay
|
| 67 |
Â
*/
|
| 68 |
+
.wp-block-jetpack-layout-grid-editor .wpcom-resize-grid {
|
| 69 |
Â
user-select: none;
|
| 70 |
Â
position: absolute;
|
| 71 |
Â
top: 0;
|
| 73 |
Â
width: 100%;
|
| 74 |
Â
height: 100%;
|
| 75 |
Â
touch-action: none; }
|
| 76 |
+
.wp-block-jetpack-layout-grid-editor .wpcom-resize-grid .wp-block {
|
| 77 |
Â
max-width: none; }
|
| 78 |
Â
|
| 79 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__none .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 80 |
Â
grid-gap: 0px; }
|
| 81 |
Â
|
| 82 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__small .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 83 |
Â
grid-gap: 8px; }
|
| 84 |
Â
|
| 85 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__medium .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 86 |
Â
grid-gap: 16px; }
|
| 87 |
Â
|
| 88 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__huge .wpcom-resize-grid:not(.wpcom-resize-grid__resizing) {
|
| 89 |
Â
grid-gap: 48px; }
|
| 90 |
Â
|
| 91 |
Â
.wpcom-resize-grid__column-hidden {
|
| 105 |
Â
/**
|
| 106 |
Â
* Grid columns
|
| 107 |
Â
*/
|
| 108 |
+
.wp-block-jetpack-layout-grid-editor > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 109 |
Â
display: grid;
|
| 110 |
Â
grid-gap: 24px;
|
| 111 |
Â
grid-template-columns: repeat(12, 1fr);
|
| 112 |
Â
margin-left: 0;
|
| 113 |
Â
margin-right: 0;
|
| 114 |
Â
word-break: break-word;
|
| 115 |
+
overflow-wrap: break-word; }
|
| 116 |
+
.wp-block-jetpack-layout-grid-editor > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .block-editor-block-list__block-edit > [data-block] {
|
|
Â
|
|
| 117 |
Â
margin-top: 0;
|
| 118 |
Â
margin-bottom: 0; }
|
| 119 |
+
.wp-block-jetpack-layout-grid-editor > .block-editor-inner-blocks > .block-editor-block-list__layout .wp-block {
|
| 120 |
Â
max-width: 100%; }
|
| 121 |
Â
|
| 122 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__none > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 123 |
Â
grid-gap: 0px; }
|
| 124 |
Â
|
| 125 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__small > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 126 |
Â
grid-gap: 8px; }
|
| 127 |
Â
|
| 128 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__medium > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 129 |
Â
grid-gap: 16px; }
|
| 130 |
Â
|
| 131 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__huge > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 132 |
Â
grid-gap: 48px; }
|
| 133 |
Â
|
| 134 |
+
.wp-block-jetpack-layout-grid-editor {
|
| 135 |
Â
display: flex;
|
| 136 |
Â
flex-direction: column; }
|
| 137 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 138 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 139 |
Â
grid-column-start: 1; }
|
| 140 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 141 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 142 |
Â
grid-column-start: 1; }
|
| 143 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 144 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 145 |
Â
grid-column-start: 1; }
|
| 146 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 147 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 148 |
Â
grid-column-start: 1; }
|
| 149 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 150 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 151 |
Â
grid-column-start: 2; }
|
| 152 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 153 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 154 |
Â
grid-column-start: 2; }
|
| 155 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 156 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 157 |
Â
grid-column-start: 2; }
|
| 158 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 159 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 160 |
Â
grid-column-start: 2; }
|
| 161 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 162 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 163 |
Â
grid-column-start: 3; }
|
| 164 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 165 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 166 |
Â
grid-column-start: 3; }
|
| 167 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 168 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 169 |
Â
grid-column-start: 3; }
|
| 170 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 171 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 172 |
Â
grid-column-start: 3; }
|
| 173 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 174 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 175 |
Â
grid-column-start: 4; }
|
| 176 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 177 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 178 |
Â
grid-column-start: 4; }
|
| 179 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 180 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 181 |
Â
grid-column-start: 4; }
|
| 182 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 183 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 184 |
Â
grid-column-start: 4; }
|
| 185 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 186 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 187 |
Â
grid-column-start: 5; }
|
| 188 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 189 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 190 |
Â
grid-column-start: 5; }
|
| 191 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 192 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 193 |
Â
grid-column-start: 5; }
|
| 194 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 195 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 196 |
Â
grid-column-start: 5; }
|
| 197 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 198 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 199 |
Â
grid-column-start: 6; }
|
| 200 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 201 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 202 |
Â
grid-column-start: 6; }
|
| 203 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 204 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 205 |
Â
grid-column-start: 6; }
|
| 206 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 207 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 208 |
Â
grid-column-start: 6; }
|
| 209 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 210 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 211 |
Â
grid-column-start: 7; }
|
| 212 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 213 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 214 |
Â
grid-column-start: 7; }
|
| 215 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 216 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 217 |
Â
grid-column-start: 7; }
|
| 218 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 219 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 220 |
Â
grid-column-start: 7; }
|
| 221 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 222 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 223 |
Â
grid-column-start: 8; }
|
| 224 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 225 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 226 |
Â
grid-column-start: 8; }
|
| 227 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 228 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 229 |
Â
grid-column-start: 8; }
|
| 230 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 231 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 232 |
Â
grid-column-start: 8; }
|
| 233 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 234 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 235 |
Â
grid-column-start: 9; }
|
| 236 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 237 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 238 |
Â
grid-column-start: 9; }
|
| 239 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 240 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 241 |
Â
grid-column-start: 9; }
|
| 242 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 243 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 244 |
Â
grid-column-start: 9; }
|
| 245 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 246 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 247 |
Â
grid-column-start: 10; }
|
| 248 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 249 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 250 |
Â
grid-column-start: 10; }
|
| 251 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 252 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 253 |
Â
grid-column-start: 10; }
|
| 254 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 255 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 256 |
Â
grid-column-start: 10; }
|
| 257 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 258 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 259 |
Â
grid-column-start: 11; }
|
| 260 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 261 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 262 |
Â
grid-column-start: 11; }
|
| 263 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 264 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 265 |
Â
grid-column-start: 11; }
|
| 266 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 267 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 268 |
Â
grid-column-start: 11; }
|
| 269 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 270 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 271 |
Â
grid-column-start: 12; }
|
| 272 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 273 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 274 |
Â
grid-column-start: 12; }
|
| 275 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 276 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 277 |
Â
grid-column-start: 12; }
|
| 278 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 279 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 280 |
Â
grid-column-start: 12; }
|
| 281 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 282 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 283 |
Â
grid-column-end: span 1; }
|
| 284 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 285 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 286 |
Â
grid-column-end: span 1; }
|
| 287 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 288 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 289 |
Â
grid-column-end: span 1; }
|
| 290 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 291 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 292 |
Â
grid-column-end: span 1; }
|
| 293 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 294 |
Â
grid-column-end: span 1; }
|
| 295 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 296 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 297 |
Â
grid-column-end: span 2; }
|
| 298 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 299 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 300 |
Â
grid-column-end: span 2; }
|
| 301 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 302 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 303 |
Â
grid-column-end: span 2; }
|
| 304 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 305 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 306 |
Â
grid-column-end: span 2; }
|
| 307 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 308 |
Â
grid-column-end: span 2; }
|
| 309 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 310 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 311 |
Â
grid-column-end: span 3; }
|
| 312 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 313 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 314 |
Â
grid-column-end: span 3; }
|
| 315 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 316 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 317 |
Â
grid-column-end: span 3; }
|
| 318 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 319 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 320 |
Â
grid-column-end: span 3; }
|
| 321 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 322 |
Â
grid-column-end: span 3; }
|
| 323 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 324 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 325 |
Â
grid-column-end: span 4; }
|
| 326 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 327 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 328 |
Â
grid-column-end: span 4; }
|
| 329 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 330 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 331 |
Â
grid-column-end: span 4; }
|
| 332 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 333 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 334 |
Â
grid-column-end: span 4; }
|
| 335 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 336 |
Â
grid-column-end: span 4; }
|
| 337 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 338 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 339 |
Â
grid-column-end: span 5; }
|
| 340 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 341 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 342 |
Â
grid-column-end: span 5; }
|
| 343 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 344 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 345 |
Â
grid-column-end: span 5; }
|
| 346 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 347 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 348 |
Â
grid-column-end: span 5; }
|
| 349 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 350 |
Â
grid-column-end: span 5; }
|
| 351 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 352 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 353 |
Â
grid-column-end: span 6; }
|
| 354 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 355 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 356 |
Â
grid-column-end: span 6; }
|
| 357 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 358 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 359 |
Â
grid-column-end: span 6; }
|
| 360 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 361 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 362 |
Â
grid-column-end: span 6; }
|
| 363 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 364 |
Â
grid-column-end: span 6; }
|
| 365 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 366 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 367 |
Â
grid-column-end: span 7; }
|
| 368 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 369 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 370 |
Â
grid-column-end: span 7; }
|
| 371 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 372 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 373 |
Â
grid-column-end: span 7; }
|
| 374 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 375 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 376 |
Â
grid-column-end: span 7; }
|
| 377 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 378 |
Â
grid-column-end: span 7; }
|
| 379 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 380 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 381 |
Â
grid-column-end: span 8; }
|
| 382 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 383 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 384 |
Â
grid-column-end: span 8; }
|
| 385 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 386 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 387 |
Â
grid-column-end: span 8; }
|
| 388 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 389 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 390 |
Â
grid-column-end: span 8; }
|
| 391 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 392 |
Â
grid-column-end: span 8; }
|
| 393 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 394 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 395 |
Â
grid-column-end: span 9; }
|
| 396 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 397 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 398 |
Â
grid-column-end: span 9; }
|
| 399 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 400 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 401 |
Â
grid-column-end: span 9; }
|
| 402 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 403 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 404 |
Â
grid-column-end: span 9; }
|
| 405 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 406 |
Â
grid-column-end: span 9; }
|
| 407 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 408 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 409 |
Â
grid-column-end: span 10; }
|
| 410 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 411 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 412 |
Â
grid-column-end: span 10; }
|
| 413 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 414 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 415 |
Â
grid-column-end: span 10; }
|
| 416 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 417 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 418 |
Â
grid-column-end: span 10; }
|
| 419 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 420 |
Â
grid-column-end: span 10; }
|
| 421 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 422 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 423 |
Â
grid-column-end: span 11; }
|
| 424 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 425 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 426 |
Â
grid-column-end: span 11; }
|
| 427 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 428 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 429 |
Â
grid-column-end: span 11; }
|
| 430 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 431 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 432 |
Â
grid-column-end: span 11; }
|
| 433 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 434 |
Â
grid-column-end: span 11; }
|
| 435 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 436 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 437 |
Â
grid-column-end: span 12; }
|
| 438 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 439 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 440 |
Â
grid-column-end: span 12; }
|
| 441 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 442 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 443 |
Â
grid-column-end: span 12; }
|
| 444 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 445 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 446 |
Â
grid-column-end: span 12; }
|
| 447 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
| 448 |
Â
grid-column-end: span 12; }
|
| 449 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 450 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 451 |
Â
grid-row-start: 1; }
|
| 452 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 453 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 454 |
Â
grid-row-start: 1; }
|
| 455 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 456 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 457 |
Â
grid-row-start: 1; }
|
| 458 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 459 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 460 |
Â
grid-row-start: 1; }
|
| 461 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 462 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 463 |
Â
grid-row-start: 2; }
|
| 464 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 465 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 466 |
Â
grid-row-start: 2; }
|
| 467 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 468 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 469 |
Â
grid-row-start: 2; }
|
| 470 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 471 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 472 |
Â
grid-row-start: 2; }
|
| 473 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 474 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 475 |
Â
grid-row-start: 3; }
|
| 476 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 477 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 478 |
Â
grid-row-start: 3; }
|
| 479 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 480 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 481 |
Â
grid-row-start: 3; }
|
| 482 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 483 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 484 |
Â
grid-row-start: 3; }
|
| 485 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
| 486 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
| 487 |
Â
grid-row-start: 4; }
|
| 488 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
| 489 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
| 490 |
Â
grid-row-start: 4; }
|
| 491 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
| 492 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
| 493 |
Â
grid-row-start: 4; }
|
| 494 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
| 495 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
| 496 |
Â
grid-row-start: 4; }
|
| 497 |
Â
|
| 498 |
Â
/**
|
| 499 |
Â
* Presets for tablet and mobile - switch the number of columns and layout
|
| 500 |
Â
*/
|
| 501 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-tablet .wpcom-overlay-grid,
|
| 502 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-tablet .wpcom-resize-grid,
|
| 503 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-tablet > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 504 |
Â
grid-template-columns: repeat(8, 1fr); }
|
| 505 |
Â
|
| 506 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-mobile .wpcom-overlay-grid,
|
| 507 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-mobile .wpcom-resize-grid,
|
| 508 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-mobile > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
| 509 |
Â
grid-template-columns: repeat(4, 1fr); }
|
| 510 |
Â
|
| 511 |
Â
.wpcom-overlay-resize__handle .components-resizable-box__container,
|
| 578 |
Â
margin-top: 0;
|
| 579 |
Â
margin-bottom: 0; }
|
| 580 |
Â
|
| 581 |
+
.wp-block-jetpack-layout-grid-editor [data-type="jetpack/layout-grid-column"].wp-block {
|
| 582 |
Â
margin: 0;
|
| 583 |
Â
padding-left: 0;
|
| 584 |
Â
padding-right: 0; }
|
| 636 |
Â
/**
|
| 637 |
Â
* Placeholder options
|
| 638 |
Â
*/
|
| 639 |
+
.wp-block-jetpack-layout-grid-editor .block-editor-inner-blocks__template-picker-options {
|
| 640 |
Â
display: flex;
|
| 641 |
Â
flex-direction: row;
|
| 642 |
Â
flex-wrap: nowrap;
|
| 645 |
Â
margin-left: 0;
|
| 646 |
Â
margin-bottom: 0;
|
| 647 |
Â
padding-left: 0; }
|
| 648 |
+
.wp-block-jetpack-layout-grid-editor .block-editor-inner-blocks__template-picker-options li {
|
| 649 |
Â
margin-left: 0;
|
| 650 |
Â
padding-left: 0;
|
| 651 |
Â
list-style: none; }
|
| 652 |
+
.wp-block-jetpack-layout-grid-editor .block-editor-inner-blocks__template-picker-options > li .components-button {
|
| 653 |
Â
list-style: none;
|
| 654 |
Â
flex-shrink: 1;
|
| 655 |
Â
max-width: 72px;
|
| 656 |
Â
margin-right: 8px;
|
| 657 |
Â
flex-basis: 100%; }
|
| 658 |
+
.wp-block-jetpack-layout-grid-editor .block-editor-inner-blocks__template-picker-options .block-editor-inner-blocks__template-picker-option {
|
| 659 |
Â
height: auto;
|
| 660 |
Â
line-height: inherit;
|
| 661 |
Â
background: #fff; }
|
| 671 |
Â
height: 24px;
|
| 672 |
Â
top: 50%;
|
| 673 |
Â
transform: translateY(-50%);
|
| 674 |
+
right: calc(50% - 4px);
|
| 675 |
+
background: #007cba;
|
| 676 |
+
background: var(--wp-admin-theme-color); }
|
| 677 |
Â
|
| 678 |
Â
[data-type="jetpack/layout-grid"] .wpcom-overlay-resize__handle .components-resizable-box__side-handle::before,
|
| 679 |
Â
[data-type="jetpack/layout-grid"] .wp-blocks-jetpack-layout-grid__resize-handles .components-resizable-box__side-handle::before {
|
| 704 |
Â
/**
|
| 705 |
Â
* Individual column alignment for the editor
|
| 706 |
Â
*/
|
| 707 |
+
.wp-block-jetpack-layout-grid-editor.are-vertically-aligned-top [data-type="jetpack/layout-grid-column"].wp-block {
|
| 708 |
Â
align-self: flex-start; }
|
| 709 |
Â
|
| 710 |
+
.wp-block-jetpack-layout-grid-editor.are-vertically-aligned-center [data-type="jetpack/layout-grid-column"].wp-block {
|
| 711 |
Â
align-self: center; }
|
| 712 |
Â
|
| 713 |
+
.wp-block-jetpack-layout-grid-editor.are-vertically-aligned-bottom [data-type="jetpack/layout-grid-column"].wp-block {
|
| 714 |
Â
align-self: flex-end; }
|
| 715 |
Â
|
| 716 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(1) {
|
| 717 |
Â
align-self: flex-start; }
|
| 718 |
Â
|
| 719 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(1) {
|
| 720 |
Â
align-self: center; }
|
| 721 |
Â
|
| 722 |
+
.wp-block-jetpack-layout-grid-editor.column1-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(1) {
|
| 723 |
Â
align-self: flex-end; }
|
| 724 |
Â
|
| 725 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(2) {
|
| 726 |
Â
align-self: flex-start; }
|
| 727 |
Â
|
| 728 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(2) {
|
| 729 |
Â
align-self: center; }
|
| 730 |
Â
|
| 731 |
+
.wp-block-jetpack-layout-grid-editor.column2-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(2) {
|
| 732 |
Â
align-self: flex-end; }
|
| 733 |
Â
|
| 734 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(3) {
|
| 735 |
Â
align-self: flex-start; }
|
| 736 |
Â
|
| 737 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(3) {
|
| 738 |
Â
align-self: center; }
|
| 739 |
Â
|
| 740 |
+
.wp-block-jetpack-layout-grid-editor.column3-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(3) {
|
| 741 |
Â
align-self: flex-end; }
|
| 742 |
Â
|
| 743 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__valign-top [data-type="jetpack/layout-grid-column"].wp-block:nth-child(4) {
|
| 744 |
Â
align-self: flex-start; }
|
| 745 |
Â
|
| 746 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__valign-center [data-type="jetpack/layout-grid-column"].wp-block:nth-child(4) {
|
| 747 |
Â
align-self: center; }
|
| 748 |
Â
|
| 749 |
+
.wp-block-jetpack-layout-grid-editor.column4-grid__valign-bottom [data-type="jetpack/layout-grid-column"].wp-block:nth-child(4) {
|
| 750 |
Â
align-self: flex-end; }
|
index.asset.php
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
<?php return array('dependencies' => array('lodash', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-polyfill', 'wp-primitives'), 'version' => '
|
| 1 |
+
<?php return array('dependencies' => array('lodash', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-polyfill', 'wp-primitives'), 'version' => 'e19a8f91cb31b20c06c4d142f22bc63d');
|
index.js
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=33)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.wp.blockEditor},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"===c||"number"===c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"===c)for(var a in r)n.call(r,a)&&r[a]&&e.push(a)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.primitives},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t){e.exports=window.wp.compose},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){var r=n(27);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(28),o=n(6);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=window.wp.blocks},function(e,t,n){var r=n(24),o=n(25),c=n(21),i=n(26);e.exports=function(e){return r(e)||o(e)||c(e)||i()}},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.keycodes},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t,n){var r=n(20);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o,c=r(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o<i.length;o++)n=i[o],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(c[n]=e[n])}return c}},function(e,t,n){var r=n(30),o=n(31),c=n(21),i=n(32);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()}},function(e,t,n){var r=n(20);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t){e.exports=function(e,t){if(null==e)return{};var n,r,o={},c=Object.keys(e);for(r=0;r<c.length;r++)n=c[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}},function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,c=void 0;try{for(var i,a=e[Symbol.iterator]();!(r=(i=a.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==a.return||a.return()}finally{if(o)throw c}}return n}}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},function(e,t,n){"use strict";n.r(t);var r=n(1),o=n.n(r),c=n(16),i=n(2),a=n(17),l=n.n(a),u=n(10),s=n.n(u),p=n(11),f=n.n(p),d=n(6),b=n.n(d),g=n(14),m=n.n(g),v=n(15),h=n.n(v),y=n(7),O=n.n(y),j=n(0),w=n(18),k=n(5),_=n.n(k),E=n(4),S=n(3),x=n(19),C=n(8),P=n(12),M=n(9),A=Object(j.createElement)(M.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(j.createElement)(M.Path,{d:"M20.5 16h-.7V8c0-1.1-.9-2-2-2H6.2c-1.1 0-2 .9-2 2v8h-.7c-.8 0-1.5.7-1.5 1.5h20c0-.8-.7-1.5-1.5-1.5zM5.7 8c0-.3.2-.5.5-.5h11.6c.3 0 .5.2.5.5v7.6H5.7V8z"})),z=Object(j.createElement)(M.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(j.createElement)(M.Path,{d:"M17 4H7c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H7c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12zm-7.5-.5h4V16h-4v1.5z"})),B=Object(j.createElement)(M.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(j.createElement)(M.Path,{d:"M15 4H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H9c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h6c.3 0 .5.2.5.5v12zm-4.5-.5h2V16h-2v1.5z"}));function D(){return[{value:"small",label:Object(i.__)("Small","layout-grid")},{value:"medium",label:Object(i.__)("Medium","layout-grid")},{value:"large",label:Object(i.__)("Large","layout-grid")},{value:"huge",label:Object(i.__)("Huge","layout-grid")}]}var R=function(){return[{label:Object(i.__)("1 column","layout-grid"),value:1},{label:Object(i.__)("2 columns","layout-grid"),value:2},{label:Object(i.__)("3 columns","layout-grid"),value:3},{label:Object(i.__)("4 columns","layout-grid"),value:4}]},T=function(){return[{value:"Desktop",label:Object(i.__)("Desktop","layout-grid"),icon:A},{value:"Tablet",label:Object(i.__)("Tablet","layout-grid"),icon:z},{value:"Mobile",label:Object(i.__)("Mobile","layout-grid"),icon:B}]},V=["Desktop","Tablet","Mobile"];function N(e,t){return"column".concat(e+1).concat(t,"Span")}function G(e,t){return"column".concat(e+1).concat(t,"Offset")}var I=function(e){return"Tablet"===e?8:"Mobile"===e?4:12};function L(e,t,n){return"Tablet"===e?3===t&&2===n?I(e):t>1?I(e)/2:I(e):"Mobile"===e?I(e):I(e)/t}function H(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function U(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?H(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):H(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=function(e,t){return"column".concat(e+1,"-grid__span-").concat(t)},F=function(e,t){return"column".concat(e+1,"-grid__start-").concat(t)},K=function(e,t){return"column".concat(e+1,"-grid__row-").concat(t)},W=function(e,t){return"column".concat(e+1,"-grid__valign-").concat(t)},$=function(e,t,n){return"column".concat(e+1,"-").concat(n.toLowerCase(),"-grid__span-").concat(t)},q=function(e,t,n){return"column".concat(e+1,"-").concat(n.toLowerCase(),"-grid__start-").concat(t)},J=function(e,t,n){return"column".concat(e+1,"-").concat(n.toLowerCase(),"-grid__row-").concat(t)};function Q(e,t){return Math.floor(e/t)}function Y(e,t){return e%t}function Z(e,t,n,r){var o=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];return{name:e,column:t,value:n,device:r,enabled:o}}function ee(e,t,n){for(var r=[],o=I(e),c=function(e,t,n){for(var r=[],o=0,c=0;c<e;c++){var i=N(c,t),a=G(c,t),l=n[i]||L(t,e,c),u=n[a]||0;r.push({position:o+u,span:l}),o+=u,o+=l}return r}(t,e,n),i=0;i<c.length;i++){var a=c[i],l=a.span,u=a.position,s=Q(u,o),p=Y(u,o);r.push(Z("span",i,l,e)),r.push(Z("offset",i,p+1,e,p>0)),r.push(Z("row",i,s+1,e))}return r}function te(e,t){var n={};return e.filter((function(e){return e.enabled&&t[e.name]})).map((function(e){return n[t[e.name](e.column,e.value,e.device)]=!0})),n}function ne(e){return e?e.replace(/column\d-\w*-grid__\w*-\d*/g,"").replace(/column\d-grid__\w*-\d*/g,"").replace(/\s{2,}/,"").replace(/wp-block-jetpack-layout-gutter__\w*/,"").replace(/is-vertically-aligned-\w*/,"").replace(/are-vertically-aligned-\w*/):e}function re(e){var t=e.gutterSize;return{"wp-block-jetpack-layout-gutter__nowrap":!e.addGutterEnds,"wp-block-jetpack-layout-gutter__none":"none"===t,"wp-block-jetpack-layout-gutter__small":"small"===t,"wp-block-jetpack-layout-gutter__medium":"medium"===t,"wp-block-jetpack-layout-gutter__huge":"huge"===t}}var oe=n(22),ce=n.n(oe),ie=n(13),ae=n.n(ie),le=function(e){return Object(j.createElement)(S.SVG,ae()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(j.createElement)(S.Path,{d:"M7 12v24h34V12H7zm32 22H9V14h30v20z"}))},ue=function(e){return Object(j.createElement)(S.SVG,ae()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(j.createElement)(S.Path,{d:"M7,12v24h34V12H7z M23,34H9V14h14V34z M39,34H25V14h14V34z"}))},se=function(e){return Object(j.createElement)(S.SVG,ae()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(j.createElement)(S.Path,{d:"M7 12v24h34V12H7zm23 2h9v20h-9V14zm-2 20h-8V14h8v20zM9 14h9v20H9V14z"}))},pe=function(e){return Object(j.createElement)(S.SVG,ae()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(j.createElement)(S.Path,{d:"M7 12v24h34V12H7zm8 22H9V14h6v20zm8 0h-6V14h6v20zm8 0h-6V14h6v20zm8 0h-6V14h6v20z"}))},fe=function(e){var t=e.columns,n=ce()(e,["columns"]);return 4===t?Object(j.createElement)(pe,n):3===t?Object(j.createElement)(se,n):2===t?Object(j.createElement)(ue,n):Object(j.createElement)(le,n)},de=function(e){var t=e.direction,n=e.height,r=e.xPos,o=e.top,c=e.isSelected,i=_()("wpcom-overlay-resize__handle","components-resizable-box__container",{"is-selected":c}),a={height:n+"px",width:r+"px",top:o+"px"},l={left:r+"px"},u=_()("components-resizable-box__handle","components-resizable-box__side-handle",{"components-resizable-box__handle-left":"left"===t,"components-resizable-box__handle-right":"right"===t});return Object(j.createElement)("div",{className:i,style:a},Object(j.createElement)("span",null,Object(j.createElement)("div",{className:u,style:l})))};var be=function(e){m()(c,e);var t,n,r=(t=c,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=O()(t);if(n){var o=O()(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return h()(this,e)});function c(e){var t;return s()(this,c),t=r.call(this,e),o()(b()(t),"onMouseDown",(function(e){var n=e.target;if((0===e.button||e.touches)&&(n.dataset.resizeRight||n.dataset.resizeLeft)){t.block=n.closest(".wp-block");var r=t.block.getBoundingClientRect(),o=r.height,c=r.right,i=r.left,a=r.top,l=n.getBoundingClientRect().width,u=t.getChildPosition(t.block),s=n.dataset.resizeLeft;t.setState({resizingColumn:u,xPos:t.getAdjustedOffset(t.getMouseX(e),l),height:o,width:l,top:t.getAdjustedTop(a),direction:s?"left":"right",max:s?t.getAdjustedOffset(c,l):t.getAdjustedOffset(i,l)}),0===e.button?(document.addEventListener("mousemove",t.onMouseMove),document.addEventListener("mouseup",t.onMouseUp),e.preventDefault()):(document.addEventListener("touchmove",t.onMouseMove),document.addEventListener("touchend",t.onMouseUp)),e.stopPropagation()}})),o()(b()(t),"onMouseMove",(function(e){e.stopPropagation(),void 0===e.touches&&e.preventDefault();var n=t.block.getBoundingClientRect().height;t.setState({xPos:t.getRestrictedOffset(t.getAdjustedOffset(t.getMouseX(e))),height:n});var r=t.getNearestColumn(t.state.direction,e);r&&t.props.onResize(t.state.resizingColumn,r)})),o()(b()(t),"onMouseUp",(function(e){t.setState({resizingColumn:-1}),document.removeEventListener("mousemove",t.onMouseMove),document.removeEventListener("mouseup",t.onMouseUp),document.removeEventListener("touchmove",t.onMouseMove),document.removeEventListener("touchend",t.onMouseUp)})),t.containerRef=Object(j.createRef)(),t.state={resizingColumn:-1,xPos:0,height:0},t}return f()(c,[{key:"getNearestColumn",value:function(e,t){var n=this.props,r=n.totalColumns,o=n.layoutGrid,c=o.getStart(this.state.resizingColumn),i=o.getSpan(this.state.resizingColumn),a=Math.min(r,Math.max(0,function(e,t,n,r){var o=e.getBoundingClientRect(),c=o.width/r,i=t-o.x,a=Math.floor(i/c),l=i%c;return"left"===n?l<=c/2?a:a+1:l<c/2?a:a+1}(this.containerRef.current,this.getMouseX(t),e,r)));if("left"===e){if(a===c)return null;var l=Math.abs(a-c),u={start:a,span:a>c?i-l:i+l,direction:e};return u.start>=c+i?null:(u.span=Math.max(1,u.span),u)}return{span:Math.max(1,a-c),direction:e}}},{key:"getMouseX",value:function(e){var t=e.clientX,n=e.targetTouches;return t||n&&n[0].clientX}},{key:"getAdjustedOffset",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.state.width,r=t>0?t:n;return e-this.containerRef.current.getBoundingClientRect().left-r/2}},{key:"getAdjustedTop",value:function(e){return e-this.containerRef.current.getBoundingClientRect().top}},{key:"getRestrictedOffset",value:function(e){var t=this.state,n=t.direction,r=t.max,o=t.width;return"left"===n?Math.min(r-o,e):Math.max(r+o,e)}},{key:"getChildPosition",value:function(e){for(var t=0;null!==e.previousSibling;)e=e.previousSibling,t++;return t}},{key:"render",value:function(){var e=this.props,t=e.className,n=e.children,r=e.isSelected,o=this.state,c=o.resizingColumn,i=o.xPos,a=o.height,l=_()(t,-1!==c?"wp-block-jetpack-layout-grid__resizing":null);return Object(j.createElement)("div",{className:l,onMouseDown:this.onMouseDown,onTouchStart:this.onMouseDown,ref:this.containerRef},-1!==c&&Object(j.createElement)(de,{direction:this.state.direction,height:a,xPos:i,top:this.state.top,isSelected:r}),n)}}]),c}(j.Component);function ge(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function me(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ge(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ge(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ve=function(){function e(t,n,r){s()(this,e),this.attributes=t,this.device=n,this.columnCount=r}return f()(e,[{key:"getGridValues",value:function(){for(var e={},t=0;t<this.columnCount;t++){var n=L(this.device,this.columnCount,t);e[N(t,this.device)]=this.getSpan(t)||n,e[G(t,this.device)]=this.getOffset(t)}return e}},{key:"applyAdjustments",value:function(e){for(var t=this.getGridValues(),n=0;n<e.length;n++)t=me(me({},t),e[n]);return t}},{key:"getSpanAdjustment",value:function(e,t){return o()({},N(e,this.device),t)}},{key:"getAdjustOffset",value:function(e,t){return o()({},G(e,this.device),t)}},{key:"getShrinkOffset",value:function(e,t){var n=this.getOffset(e),r=t>=n?n:t;return{adjustment:this.getAdjustOffset(e,n-r),offsetUsed:r}}},{key:"hasOverlaps",value:function(e){for(var t=0;t<e.length;t++)for(var n=e[t],r=t+1;r<e.length;r++){var o=e[r];if(n.start>o.start&&n.start<o.end)return!0;if(n.end>o.start&&n.end<o.end)return!0}return!1}},{key:"validateGrid",value:function(e){for(var t,n,r=[],o=I(this.device),c=0,i=0,a=0;a<this.columnCount;a++){var l=e[N(a,this.device)],u=e[G(a,this.device)];if((i+=u)>=o&&(i-=o),(i+=l)>o)return!1;r.push({start:c+u,end:c+u+l}),c+=l+u}return!(c>(t=this.device,n=this.columnCount,"Tablet"===t&&n>2?2*I(t):"Mobile"===t?I(t)*n:I(t))||this.hasOverlaps(r))}},{key:"getEndAdjustments",value:function(e,t){var n=[];if(t<0)return[this.getAdjustOffset(e,this.getOffset(e)+Math.abs(t))];if(t>0)for(var r=e;r<this.columnCount&&t>0;r++){var o=this.getShrinkOffset(r,Math.abs(t));n.push(o.adjustment),t-=o.offsetUsed}return n}},{key:"getStartMovedLeft",value:function(e,t){for(var n=[],r=e;r>=0&&t>0;r--){var o=this.getShrinkOffset(r,t);n.push(o.adjustment),t-=o.offsetUsed}return n}},{key:"getStartAdjustments",value:function(e,t){var n=this.getOffset(e),r=this.getOffsetFromStart(e,t),o=r-n;return o<0?this.getStartMovedLeft(e,Math.abs(o)):[this.getAdjustOffset(e,r)]}},{key:"getSpan",value:function(e){return this.attributes[N(e,this.device)]}},{key:"getOffset",value:function(e){return this.attributes[G(e,this.device)]}},{key:"getStart",value:function(e){for(var t=0,n=0;n<e;n++)t+=this.getSpan(n)+this.getOffset(n);var r=Math.max(1,Math.floor(t/I(this.device)));return(t+this.getOffset(e))%(r*I(this.device))}},{key:"getOffsetFromStart",value:function(e,t){if(0===e)return t;var n=t-this.getStart(e);return this.getOffset(e)+n}},{key:"convertOffsetToStart",value:function(e,t){return this.getStart(e)+(t-this.getOffset(e))}},{key:"getAdjustedGrid",value:function(e,t){var n=t.start,r=void 0===n?this.getStart(e):n,o=t.span,c=void 0===o?this.getSpan(e):o,i=[];r!==this.getStart(e)&&c!==this.getSpan(e)?i=(i=i.concat(this.getStartAdjustments(e,r))).concat(this.getSpanAdjustment(e,c)):c!==this.getSpan(e)?i=(i=i.concat(this.getSpanAdjustment(e,c))).concat(this.getEndAdjustments(e+1,c-this.getSpan(e))):r!==this.getStart(e)&&(i=(i=i.concat(this.getStartAdjustments(e,r))).concat(this.getEndAdjustments(e+1,r-this.getStart(e))));var a=this.applyAdjustments(i);return i.length>0&&this.validateGrid(a)?a:null}}]),e}(),he=n(23),ye=n.n(he),Oe=function(e){var t=e.viewPort,n=e.updateViewport,r=Object(C.useDispatch)("core/edit-post").__experimentalSetPreviewDeviceType,o=Object(C.useSelect)((function(e){return e("core/edit-post").__experimentalGetPreviewDeviceType()}),[]),c=Object(P.useResizeObserver)(),i=ye()(c,2),a=i[0],l=i[1],u=Object(P.useViewportMatch)("medium","<"),s=Object(P.useViewportMatch)("small","<");return Object(j.useEffect)((function(){var e=function(e,t){return e?"Mobile":t?"Tablet":"Desktop"}(s,u);e!==t&&n(e)}),[l]),Object(j.createElement)(j.Fragment,null,a,!s&&Object(j.createElement)(E.BlockControls,null,Object(j.createElement)(S.Dropdown,{renderToggle:function(e){var t=e.isOpen,n=e.onToggle;return Object(j.createElement)(S.ToolbarGroup,null,Object(j.createElement)(S.Button,{"aria-expanded":t,onClick:n,icon:T().find((function(e){return e.value===o})).icon}))},renderContent:function(){return Object(j.createElement)(S.MenuGroup,null,Object(j.createElement)(S.MenuItemsChoice,{value:o,onSelect:function(e){return r(e)},choices:T()}))}})))};function je(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function we(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?je(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):je(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ke=["jetpack/layout-grid-column"],_e=function(e){m()(c,e);var t,n,r=(t=c,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=O()(t);if(n){var o=O()(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return h()(this,e)});function c(e){var t;return s()(this,c),t=r.call(this,e),o()(b()(t),"onChangeLayout",(function(e){for(var n={},r=0;r<e;r++)for(var o=0;o<V.length;o++){var c=L(V[o],e,r);n[N(r,V[o])]=c,n[G(r,V[o])]=0}t.props.updateColumns(t.props.columns,e,n)})),o()(b()(t),"onResize",(function(e,n){var r=t.props,o=r.attributes,c=r.columns,i=new ve(o,t.getPreviewMode(),c).getAdjustedGrid(e,n);i&&t.adjustGrid(i)})),o()(b()(t),"onChangeSpan",(function(e,n,r){var o=t.props,c=o.attributes,i=o.columns,a=new ve(c,n,i).getAdjustedGrid(e,{span:parseInt(r,10)});a&&t.adjustGrid(a)})),o()(b()(t),"onChangeOffset",(function(e,n,r){var o=t.props,c=o.attributes,i=o.columns,a=new ve(c,n,i),l=a.getAdjustedGrid(e,{start:a.convertOffsetToStart(e,parseInt(r,10))});l&&t.adjustGrid(l)})),t.overlayRef=Object(j.createRef)(),t.state={inspectorDeviceType:"Desktop",viewPort:"Desktop"},t}return f()(c,[{key:"adjustGrid",value:function(e){var t=this.props,n=t.setAttributes,r=t.attributes;n(we(we({},e),{},{className:ne(r.className)}))}},{key:"renderDeviceSettings",value:function(e,t,n){for(var r=this,o=new ve(n,t,this.props.columns),c=[],a=function(n){var a=o.getSpan(n)||L(t,e,n),l=o.getOffset(n)||0;c.push(Object(j.createElement)("div",{className:"jetpack-layout-grid-settings",key:n},Object(j.createElement)("strong",null,Object(i.__)("Column","layout-grid")," ",n+1),Object(j.createElement)("div",{className:"jetpack-layout-grid-settings__group"},Object(j.createElement)(S.TextControl,{type:"number",label:Object(i.__)("Offset","layout-grid"),value:l||0,min:0,max:I(t)-1,onChange:function(e){return r.onChangeOffset(n,t,e)}}),Object(j.createElement)(S.TextControl,{type:"number",label:Object(i.__)("Span","layout-grid"),value:a,min:1,max:I(t),onChange:function(e){return r.onChangeSpan(n,t,e)}}))))},l=0;l<e;l++)a(l);return c}},{key:"canResizeBreakpoint",value:function(e){return!(!this.overlayRef||!this.overlayRef.current)&&this.overlayRef.current.getBoundingClientRect().width/I(e)>50}},{key:"updateInspectorDevice",value:function(e){this.setState({inspectorDeviceType:e}),"Mobile"!==this.state.viewPort&&this.props.setPreviewDeviceType(e)}},{key:"getPreviewMode",value:function(){return"Desktop"===this.state.viewPort||"Mobile"===this.props.previewDeviceType?this.props.previewDeviceType:this.state.viewPort}},{key:"getInspectorMode",value:function(){return"Desktop"===this.state.viewPort?this.props.previewDeviceType:this.state.inspectorDeviceType}},{key:"render",value:function(){var e=this,t=this.props,n=t.className,r=t.attributes,c=void 0===r?{}:r,a=t.isSelected,l=t.columns,u=t.setAttributes,s=t.updateAlignment,p=t.columnAttributes,f=(t.previewDeviceType,this.state.viewPort),d=this.getPreviewMode(),b=this.getInspectorMode(),g=function(e,t){for(var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[],o=ee(e,t,n),c={span:X,offset:F,row:K},i={},a=0;a<t;a++)r[a].verticalAlignment&&r[a].verticalAlignment!==n.verticalAlignment&&(i[W(a,r[a].verticalAlignment)]=!0);return U(U({},te(o,c)),i)}(d,l,c,p),m=c.gutterSize,v=c.addGutterEnds,h=c.verticalAlignment,y=new ve(c,d,l),O=_()(ne(n),g,o()({"wp-block-jetpack-layout-tablet":"Tablet"===d,"wp-block-jetpack-layout-desktop":"Desktop"===d,"wp-block-jetpack-layout-mobile":"Mobile"===d,"wp-block-jetpack-layout-resizable":this.canResizeBreakpoint(d)},"are-vertically-aligned-".concat(h),h),re(c));if(0===l)return Object(j.createElement)(S.Placeholder,{icon:"layout",label:Object(i.__)("Choose Layout","layout-grid"),instructions:Object(i.__)("Select a layout to start with:","layout-grid"),className:O},Object(j.createElement)("ul",{className:"block-editor-inner-blocks__template-picker-options"},R().map((function(t){return Object(j.createElement)("li",{key:t.value},Object(j.createElement)(S.IconButton,{isSecondary:!0,icon:Object(j.createElement)(fe,{columns:t.value}),onClick:function(){return e.onChangeLayout(t.value)},className:"block-editor-inner-blocks__template-picker-option",label:t.label}))}))));var k=Object(j.createElement)(S.ToggleControl,{label:Object(i.__)("Add end gutters","layout-grid"),help:v?Object(i.__)("Toggle off to remove the spacing left and right of the grid.","layout-grid"):Object(i.__)("Toggle on to add space left and right of the layout grid. ","layout-grid"),checked:v,onChange:function(e){return u({addGutterEnds:e})}});return Object(j.createElement)(j.Fragment,null,Object(j.createElement)(Oe,{currentViewport:f,updateViewport:function(t){return e.setState({viewPort:t,inspectorDeviceType:t})}}),Object(j.createElement)(S.IsolatedEventContainer,null,Object(j.createElement)(be,{className:O,onResize:this.onResize,totalColumns:I(d),layoutGrid:y,isSelected:a},Object(j.createElement)("div",{className:"wpcom-overlay-grid",ref:this.overlayRef},Object(w.times)(I(d)).map((function(e){return Object(j.createElement)("div",{className:"wpcom-overlay-grid__column",key:e})}))),Object(j.createElement)(E.InnerBlocks,{template:null,templateLock:"all",allowedBlocks:ke}),Object(j.createElement)(E.InspectorControls,null,Object(j.createElement)(S.PanelBody,{title:Object(i.__)("Layout","layout-grid")},Object(j.createElement)("div",{className:"jetpack-layout-grid-columns block-editor-block-styles"},R().map((function(t){return Object(j.createElement)("div",{key:t.value,className:_()("block-editor-block-styles__item",{"is-active":l===t.value}),onClick:function(){return e.onChangeLayout(t.value)},onKeyDown:function(n){x.ENTER!==n.keyCode&&x.SPACE!==n.keyCode||(n.preventDefault(),e.onChangeLayout(t.value))},role:"button",tabIndex:"0","aria-label":t.label},Object(j.createElement)("div",{className:"block-editor-block-styles__item-preview"},Object(j.createElement)(fe,{columns:t.value})),Object(j.createElement)("div",{className:"editor-block-styles__item-label block-editor-block-styles__item-label"},t.label))}))),Object(j.createElement)("p",null,Object(j.createElement)("em",null,Object(i.__)("Changing the number of columns will reset your layout and could remove content.","layout-grid")))),Object(j.createElement)(S.PanelBody,{title:Object(i.__)("Responsive Breakpoints","layout-grid")},Object(j.createElement)("p",null,Object(j.createElement)("em",null,Object(i.__)("Note that previewing your post will show your browser's breakpoint, not the currently selected one.","layout-grid"))),Object(j.createElement)(S.ButtonGroup,null,T().map((function(t){return Object(j.createElement)(S.Button,{key:t.value,isPrimary:t.value===b,onClick:function(){return e.updateInspectorDevice(t.value)}},t.label)}))),this.renderDeviceSettings(l,b,c)),Object(j.createElement)(S.PanelBody,{title:Object(i.__)("Gutter","layout-grid")},Object(j.createElement)("p",null,Object(i.__)("Gutter size","layout-grid")),Object(j.createElement)(S.SelectControl,{value:m,onChange:function(e){return u({gutterSize:e,addGutterEnds:"none"!==e&&v})},options:[{value:"none",label:Object(i.__)("No gutter","layout-grid")}].concat(D())}),"none"===m?Object(j.createElement)(S.Disabled,null,k):k)))),Object(j.createElement)(E.BlockControls,null,Object(j.createElement)(E.BlockVerticalAlignmentToolbar,{onChange:s,value:h})))}}]),c}(j.Component),Ee=Object(P.compose)([Object(C.withDispatch)((function(e,t,n){return{updateAlignment:function(r){var o=t.clientId,c=t.setAttributes,i=e("core/block-editor").updateBlockAttributes,a=n.select("core/block-editor").getBlockOrder;c({verticalAlignment:r}),a(o).forEach((function(e){i(e,{verticalAlignment:r})}))},updateColumns:function(r,o,i){var a=t.clientId,u=e("core/block-editor").replaceBlock,s=function(e,t,n){if(n>t)return[].concat(l()(e),l()(Object(w.times)(n-t,(function(){return Object(c.createBlock)("jetpack/layout-grid-column")}))));var r=l()(e),o=0;return r.reverse(),(r=r.filter((function(e){return!(o<t-n&&0===e.innerBlocks.length&&(o++,1))}))).slice(Math.max(0,t-n-o)).reverse()}((0,n.select("core/block-editor").getBlocks)(a),r,o);u(a,Object(c.createBlock)(t.name,we(we(we({},t.attributes),i),{},{className:ne(t.attributes.className)}),s))},setPreviewDeviceType:function(t){(0,e("core/edit-post").__experimentalSetPreviewDeviceType)(t)}}})),Object(C.withSelect)((function(e,t){var n=t.clientId,r=e("core/block-editor"),o=r.getBlockOrder,c=r.getBlockCount,i=r.getBlocksByClientId,a=e("core/edit-post").__experimentalGetPreviewDeviceType,l=void 0===a?null:a;return{columns:c(n),columnAttributes:o(n).map((function(e){return i(e)[0].attributes})),previewDeviceType:l()}}))])(_e);var Se=function(e){m()(c,e);var t,n,r=(t=c,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=O()(t);if(n){var o=O()(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return h()(this,e)});function c(e){var t;return s()(this,c),t=r.call(this,e),o()(b()(t),"onLeftIn",(function(){t.setState({direction:"left"}),document.addEventListener("mouseup",t.onLeftOut)})),o()(b()(t),"onLeftOut",(function(){t.setState({direction:null}),document.removeEventListener("mouseup",t.onLeftOut)})),o()(b()(t),"onRightIn",(function(){t.setState({direction:"right"}),document.addEventListener("mouseup",t.onRightOut)})),o()(b()(t),"onRightOut",(function(){t.setState({direction:null}),document.removeEventListener("mouseup",t.onRightOut)})),t.state={direction:null},t}return f()(c,[{key:"render",value:function(){var e,t=this.props,n=t.className,r=t.hasChildBlocks,c=t.backgroundColor,a=t.setBackgroundColor,l=t.attributes,u=t.setAttributes,s=t.updateAlignment,p=l.padding,f=l.verticalAlignment,d=this.state.direction,b=_()(n,c.class,(e={},o()(e,"wp-block-jetpack-layout-grid__padding-"+p,!0),o()(e,"has-background",c.color),o()(e,"components-resizable-box__container",!0),o()(e,c.class,c.class),o()(e,"wp-blocks-jetpack-layout-grid__showleft","right"===d),o()(e,"wp-blocks-jetpack-layout-grid__showright","left"===d),o()(e,"is-vertically-aligned-".concat(f),f),e)),g={backgroundColor:c.color};return Object(j.createElement)("div",{className:b,style:g},Object(j.createElement)("span",{className:"wp-blocks-jetpack-layout-grid__resize-handles"},Object(j.createElement)("div",{className:"components-resizable-box__handle components-resizable-box__side-handle components-resizable-box__handle-right",onMouseDown:this.onRightIn,"data-resize-right":!0}),Object(j.createElement)("div",{className:"components-resizable-box__handle components-resizable-box__side-handle components-resizable-box__handle-left",onMouseDown:this.onLeftIn,"data-resize-left":!0})),Object(j.createElement)(E.InnerBlocks,{templateLock:!1,renderAppender:r?void 0:function(){return Object(j.createElement)(E.InnerBlocks.ButtonBlockAppender,null)}}),Object(j.createElement)(E.InspectorControls,null,Object(j.createElement)(E.PanelColorSettings,{title:Object(i.__)("Column Color","layout-grid"),initialOpen:!0,colorSettings:[{value:c.color,onChange:a,label:Object(i.__)("Background","layout-grid")}]}),Object(j.createElement)(S.PanelBody,{title:Object(i.__)("Column Padding","layout-grid")},Object(j.createElement)("p",null,Object(i.__)("Choose padding for this column:","layout-grid")),Object(j.createElement)(S.SelectControl,{value:p,onChange:function(e){return u({padding:e})},options:[{value:"none",label:Object(i.__)("No padding","layout-grid")}].concat(D())}))),Object(j.createElement)(E.BlockControls,null,Object(j.createElement)(E.BlockVerticalAlignmentToolbar,{onChange:s,value:f})))}}]),c}(j.Component),xe=Object(P.compose)(Object(E.withColors)("backgroundColor"),Object(C.withSelect)((function(e,t){var n=t.clientId;return{hasChildBlocks:(0,e("core/block-editor").getBlockOrder)(n).length>0}})),Object(C.withDispatch)((function(e,t,n){return{updateAlignment:function(r){var o=t.clientId,c=t.setAttributes,i=e("core/block-editor").updateBlockAttributes,a=n.select("core/block-editor").getBlockRootClientId;c({verticalAlignment:r}),i(a(o),{verticalAlignment:null})}}})))(Se),Ce=[{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},padding:{type:"string",default:"none"},verticalAlignment:{type:"string"}},save:function(e){var t,n=e.attributes,r=void 0===n?{}:n,c=r.className,i=r.backgroundColor,a=r.customBackgroundColor,l=r.padding,u=r.verticalAlignment,s=Object(E.getColorClassName)("background-color",i),p=_()(c,(t={},o()(t,"wp-block-jetpack-layout-grid__padding-"+l,!0),o()(t,"has-background",i),o()(t,s,s),o()(t,"is-vertically-aligned-".concat(u),u),t)),f={backgroundColor:s?void 0:a};return Object(j.createElement)("div",{className:p,style:f},Object(j.createElement)(E.InnerBlocks.Content,null))}}];function Pe(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}Object(c.registerBlockType)("jetpack/layout-grid",{title:Object(i.__)("Layout Grid","layout-grid"),description:Object(i.__)("Align blocks to a global grid, with support for responsive breakpoints.","layout-grid"),icon:function(e){return Object(j.createElement)(S.SVG,ae()({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"},e),Object(j.createElement)(S.Path,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7.5 11.5H6c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h5.5v10zm4 0H13v-10h2.5v10zm4-.5c0 .3-.2.5-.5.5h-2v-10h2c.3 0 .5.2.5.5v9z"}))},category:"design",supports:{align:["full"],html:!1},example:{attributes:{columns:2},innerBlocks:[{name:"jetpack/layout-grid-column",innerBlocks:[{name:"core/paragraph",attributes:{customFontSize:32,content:Object(i.__)("<strong>Snow Patrol</strong>","layout-grid"),align:"center"}}]},{name:"jetpack/layout-grid-column",innerBlocks:[{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg"}}]}]},attributes:function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Pe(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Pe(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({align:{type:"string",default:"full"},gutterSize:{type:"string",default:"large"},addGutterEnds:{type:"boolean",default:!0},verticalAlignment:{type:"string"}},function(e,t){for(var n={},r=function(e){t.map((function(t){n[N(e,t)]={type:"number"},n[G(e,t)]={type:"number",default:0}}))},o=0;o<e;o++)r(o);return n}(4,V)),edit:Ee,save:function(e){var t=e.attributes,n=e.innerBlocks,r=t.className,o=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={},r={span:$,offset:q,row:J},o=0;o<V.length;o++)n=U(U({},n),te(ee(V[o],e,t),r));return t.addGutterEnds||(n["wp-block-jetpack-layout-gutter__nowrap"]=!0),t.verticalAlignment&&"top"!==t.verticalAlignment&&(n["are-vertically-aligned-".concat(t.verticalAlignment)]=!0),n}(n.length,t),c=_()(ne(r),o,re(t));return Object(j.createElement)("div",{className:c},Object(j.createElement)(E.InnerBlocks.Content,null))}}),Object(c.registerBlockType)("jetpack/layout-grid-column",{description:Object(i.__)("A column used inside a Layout Grid block.","layout-grid"),title:Object(i.__)("Column","layout-grid"),icon:function(e){return Object(j.createElement)(S.SVG,ae()({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"},e),Object(j.createElement)(S.Path,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM5.5 17V8c0-.3.2-.5.5-.5h5.5v10H6c-.3 0-.5-.2-.5-.5zm14 0c0 .3-.2.5-.5.5h-2v-10h2c.3 0 .5.2.5.5v9z"}))},category:"design",parent:["jetpack/layout-grid"],supports:{inserter:!1,reusable:!1,html:!1},attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},padding:{type:"string",default:"none"},verticalAlignment:{type:"string"}},edit:xe,save:function(e){var t,n=e.attributes,r=void 0===n?{}:n,c=r.className,i=r.backgroundColor,a=r.customBackgroundColor,l=r.padding,u=r.verticalAlignment,s=Object(E.getColorClassName)("background-color",i),p=_()(c,(t={},o()(t,"wp-block-jetpack-layout-grid__padding-"+l,!0),o()(t,"has-background",i||a),o()(t,s,s),o()(t,"is-vertically-aligned-".concat(u),u),t)),f={backgroundColor:s?void 0:a};return Object(j.createElement)("div",{className:p,style:f},Object(j.createElement)(E.InnerBlocks.Content,null))},deprecated:Ce})}]);
|
| 1 |
+
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=33)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.wp.blockEditor},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"===c||"number"===c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"===c)for(var a in r)n.call(r,a)&&r[a]&&e.push(a)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},e.exports.default=e.exports,e.exports.__esModule=!0,n(t)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.primitives},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.compose},function(e,t,n){var r=n(27);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(28).default,o=n(6);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.blocks},function(e,t,n){var r=n(24),o=n(25),c=n(21),i=n(26);e.exports=function(e){return r(e)||o(e)||c(e)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.keycodes},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(20);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o,c=r(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o<i.length;o++)n=i[o],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(c[n]=e[n])}return c},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(30),o=n(31),c=n(21),i=n(32);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(20);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.default=e.exports,e.exports.__esModule=!0,n(t,r)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?(e.exports=n=function(e){return typeof e},e.exports.default=e.exports,e.exports.__esModule=!0):(e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.default=e.exports,e.exports.__esModule=!0),n(t)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){if(null==e)return{};var n,r,o={},c=Object.keys(e);for(r=0;r<c.length;r++)n=c[r],t.indexOf(n)>=0||(o[n]=e[n]);return o},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],_n=!0,r=!1,o=void 0;try{for(var c,i=e[Symbol.iterator]();!(_n=(c=i.next()).done)&&(n.push(c.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{_n||null==i.return||i.return()}finally{if(r)throw o}}return n}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";n.r(t);var r=n(1),o=n.n(r),c=n(16),i=n(2),a=n(10),l=n.n(a),u=n(17),s=n.n(u),p=n(11),d=n.n(p),f=n(12),b=n.n(f),g=n(6),m=n.n(g),v=n(14),h=n.n(v),y=n(15),O=n.n(y),j=n(7),_=n.n(j),w=n(0),k=n(18),x=n(5),E=n.n(x),S=n(4),C=n(3),M=n(19),P=n(8),B=n(13),A=n(9),z=Object(w.createElement)(A.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(w.createElement)(A.Path,{d:"M20.5 16h-.7V8c0-1.1-.9-2-2-2H6.2c-1.1 0-2 .9-2 2v8h-.7c-.8 0-1.5.7-1.5 1.5h20c0-.8-.7-1.5-1.5-1.5zM5.7 8c0-.3.2-.5.5-.5h11.6c.3 0 .5.2.5.5v7.6H5.7V8z"})),D=Object(w.createElement)(A.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(w.createElement)(A.Path,{d:"M17 4H7c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H7c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12zm-7.5-.5h4V16h-4v1.5z"})),R=Object(w.createElement)(A.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(w.createElement)(A.Path,{d:"M15 4H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H9c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h6c.3 0 .5.2.5.5v12zm-4.5-.5h2V16h-2v1.5z"}));function T(){return[{value:"small",label:Object(i.__)("Small","layout-grid")},{value:"medium",label:Object(i.__)("Medium","layout-grid")},{value:"large",label:Object(i.__)("Large","layout-grid")},{value:"huge",label:Object(i.__)("Huge","layout-grid")}]}var V=function(){return[{label:Object(i.__)("1 column","layout-grid"),value:1},{label:Object(i.__)("2 columns","layout-grid"),value:2},{label:Object(i.__)("3 columns","layout-grid"),value:3},{label:Object(i.__)("4 columns","layout-grid"),value:4}]},N=function(){return[{value:"Desktop",label:Object(i.__)("Desktop","layout-grid"),icon:z},{value:"Tablet",label:Object(i.__)("Tablet","layout-grid"),icon:D},{value:"Mobile",label:Object(i.__)("Mobile","layout-grid"),icon:R}]},G=["Desktop","Tablet","Mobile"];function L(e,t){return"column".concat(e+1).concat(t,"Span")}function I(e,t){return"column".concat(e+1).concat(t,"Offset")}var H=function(e){return"Tablet"===e?8:"Mobile"===e?4:12};function U(e,t,n){return"Tablet"===e?3===t&&2===n?H(e):t>1?H(e)/2:H(e):"Mobile"===e?H(e):H(e)/t}function X(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function F(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?X(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):X(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var K=function(e,t){return"column".concat(e+1,"-grid__span-").concat(t)},W=function(e,t){return"column".concat(e+1,"-grid__start-").concat(t)},$=function(e,t){return"column".concat(e+1,"-grid__row-").concat(t)},q=function(e,t){return"column".concat(e+1,"-grid__valign-").concat(t)},J=function(e,t,n){return"column".concat(e+1,"-").concat(n.toLowerCase(),"-grid__span-").concat(t)},Q=function(e,t,n){return"column".concat(e+1,"-").concat(n.toLowerCase(),"-grid__start-").concat(t)},Y=function(e,t,n){return"column".concat(e+1,"-").concat(n.toLowerCase(),"-grid__row-").concat(t)};function Z(e,t){return Math.floor(e/t)}function ee(e,t){return e%t}function te(e,t,n,r){var o=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];return{name:e,column:t,value:n,device:r,enabled:o}}function ne(e,t,n){for(var r=[],o=H(e),c=function(e,t,n){for(var r=[],o=0,c=0;c<e;c++){var i=L(c,t),a=I(c,t),l=n[i]||U(t,e,c),u=n[a]||0;r.push({position:o+u,span:l}),o+=u,o+=l}return r}(t,e,n),i=0;i<c.length;i++){var a=c[i],l=a.span,u=a.position,s=Z(u,o),p=ee(u,o);r.push(te("span",i,l,e)),r.push(te("offset",i,p+1,e,p>0)),r.push(te("row",i,s+1,e))}return r}function re(e,t){var n={};return e.filter((function(e){return e.enabled&&t[e.name]})).map((function(e){return n[t[e.name](e.column,e.value,e.device)]=!0})),n}function oe(e){return e?e.replace(/column\d-\w*-grid__\w*-\d*/g,"").replace(/column\d-grid__\w*-\d*/g,"").replace(/\s{2,}/,"").replace(/wp-block-jetpack-layout-gutter__\w*/,"").replace(/is-vertically-aligned-\w*/,"").replace(/are-vertically-aligned-\w*/):e}function ce(e){var t=e.gutterSize;return{"wp-block-jetpack-layout-gutter__nowrap":!e.addGutterEnds,"wp-block-jetpack-layout-gutter__none":"none"===t,"wp-block-jetpack-layout-gutter__small":"small"===t,"wp-block-jetpack-layout-gutter__medium":"medium"===t,"wp-block-jetpack-layout-gutter__huge":"huge"===t}}var ie=n(22),ae=n.n(ie),le=function(e){return Object(w.createElement)(C.SVG,l()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(w.createElement)(C.Path,{d:"M7 12v24h34V12H7zm32 22H9V14h30v20z"}))},ue=function(e){return Object(w.createElement)(C.SVG,l()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(w.createElement)(C.Path,{d:"M7,12v24h34V12H7z M23,34H9V14h14V34z M39,34H25V14h14V34z"}))},se=function(e){return Object(w.createElement)(C.SVG,l()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(w.createElement)(C.Path,{d:"M7 12v24h34V12H7zm23 2h9v20h-9V14zm-2 20h-8V14h8v20zM9 14h9v20H9V14z"}))},pe=function(e){return Object(w.createElement)(C.SVG,l()({xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48"},e),Object(w.createElement)(C.Path,{d:"M7 12v24h34V12H7zm8 22H9V14h6v20zm8 0h-6V14h6v20zm8 0h-6V14h6v20zm8 0h-6V14h6v20z"}))},de=function(e){var t=e.columns,n=ae()(e,["columns"]);return 4===t?Object(w.createElement)(pe,n):3===t?Object(w.createElement)(se,n):2===t?Object(w.createElement)(ue,n):Object(w.createElement)(le,n)},fe=function(e){var t=e.direction,n=e.height,r=e.xPos,o=e.top,c=e.isSelected,i=E()("wpcom-overlay-resize__handle","components-resizable-box__container",{"is-selected":c}),a={height:n+"px",width:r+"px",top:o+"px"},l={left:r+"px"},u=E()("components-resizable-box__handle","components-resizable-box__side-handle",{"components-resizable-box__handle-left":"left"===t,"components-resizable-box__handle-right":"right"===t});return Object(w.createElement)("div",{className:i,style:a},Object(w.createElement)("span",null,Object(w.createElement)("div",{className:u,style:l})))};var be=function(e){h()(c,e);var t,n,r=(t=c,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=_()(t);if(n){var o=_()(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return O()(this,e)});function c(e){var t;return d()(this,c),t=r.call(this,e),o()(m()(t),"onMouseDown",(function(e){var n=e.target;if((0===e.button||e.touches)&&(n.dataset.resizeRight||n.dataset.resizeLeft)){t.block=n.closest(".wp-block");var r=t.block.getBoundingClientRect(),o=r.height,c=r.right,i=r.left,a=r.top,l=n.getBoundingClientRect().width,u=t.getChildPosition(t.block),s=n.dataset.resizeLeft;t.setState({resizingColumn:u,xPos:t.getAdjustedOffset(t.getMouseX(e),l),height:o,width:l,top:t.getAdjustedTop(a),direction:s?"left":"right",max:s?t.getAdjustedOffset(c,l):t.getAdjustedOffset(i,l)}),0===e.button?(document.addEventListener("mousemove",t.onMouseMove),document.addEventListener("mouseup",t.onMouseUp),e.preventDefault()):(document.addEventListener("touchmove",t.onMouseMove),document.addEventListener("touchend",t.onMouseUp)),e.stopPropagation()}})),o()(m()(t),"onMouseMove",(function(e){e.stopPropagation(),void 0===e.touches&&e.preventDefault();var n=t.block.getBoundingClientRect().height;t.setState({xPos:t.getRestrictedOffset(t.getAdjustedOffset(t.getMouseX(e))),height:n});var r=t.getNearestColumn(t.state.direction,e);r&&t.props.onResize(t.state.resizingColumn,r)})),o()(m()(t),"onMouseUp",(function(e){t.setState({resizingColumn:-1}),document.removeEventListener("mousemove",t.onMouseMove),document.removeEventListener("mouseup",t.onMouseUp),document.removeEventListener("touchmove",t.onMouseMove),document.removeEventListener("touchend",t.onMouseUp)})),t.containerRef=Object(w.createRef)(),t.state={resizingColumn:-1,xPos:0,height:0},t}return b()(c,[{key:"getNearestColumn",value:function(e,t){var n=this.props,r=n.totalColumns,o=n.layoutGrid,c=o.getStart(this.state.resizingColumn),i=o.getSpan(this.state.resizingColumn),a=Math.min(r,Math.max(0,function(e,t,n,r){var o=e.getBoundingClientRect(),c=o.width/r,i=t-o.x,a=Math.floor(i/c),l=i%c;return"left"===n?l<=c/2?a:a+1:l<c/2?a:a+1}(this.containerRef.current,this.getMouseX(t),e,r)));if("left"===e){if(a===c)return null;var l=Math.abs(a-c),u={start:a,span:a>c?i-l:i+l,direction:e};return u.start>=c+i?null:(u.span=Math.max(1,u.span),u)}return{span:Math.max(1,a-c),direction:e}}},{key:"getMouseX",value:function(e){var t=e.clientX,n=e.targetTouches;return t||n&&n[0].clientX}},{key:"getAdjustedOffset",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.state.width,r=t>0?t:n;return e-this.containerRef.current.getBoundingClientRect().left-r/2}},{key:"getAdjustedTop",value:function(e){return e-this.containerRef.current.getBoundingClientRect().top}},{key:"getRestrictedOffset",value:function(e){var t=this.state,n=t.direction,r=t.max,o=t.width;return"left"===n?Math.min(r-o,e):Math.max(r+o,e)}},{key:"getChildPosition",value:function(e){for(var t=0;null!==e.previousSibling;)e=e.previousSibling,t++;return t}},{key:"render",value:function(){var e=this.props,t=e.className,n=e.children,r=e.isSelected,o=this.state,c=o.resizingColumn,i=o.xPos,a=o.height,l=E()(t,-1!==c?"wp-block-jetpack-layout-grid__resizing":null);return Object(w.createElement)("div",{className:l,onMouseDown:this.onMouseDown,onTouchStart:this.onMouseDown,ref:this.containerRef},-1!==c&&Object(w.createElement)(fe,{direction:this.state.direction,height:a,xPos:i,top:this.state.top,isSelected:r}),n)}}]),c}(w.Component);function ge(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function me(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ge(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ge(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var ve=function(){function e(t,n,r){d()(this,e),this.attributes=t,this.device=n,this.columnCount=r}return b()(e,[{key:"getGridValues",value:function(){for(var e={},t=0;t<this.columnCount;t++){var n=U(this.device,this.columnCount,t);e[L(t,this.device)]=this.getSpan(t)||n,e[I(t,this.device)]=this.getOffset(t)}return e}},{key:"applyAdjustments",value:function(e){for(var t=this.getGridValues(),n=0;n<e.length;n++)t=me(me({},t),e[n]);return t}},{key:"getSpanAdjustment",value:function(e,t){return o()({},L(e,this.device),t)}},{key:"getAdjustOffset",value:function(e,t){return o()({},I(e,this.device),t)}},{key:"getShrinkOffset",value:function(e,t){var n=this.getOffset(e),r=t>=n?n:t;return{adjustment:this.getAdjustOffset(e,n-r),offsetUsed:r}}},{key:"hasOverlaps",value:function(e){for(var t=0;t<e.length;t++)for(var n=e[t],r=t+1;r<e.length;r++){var o=e[r];if(n.start>o.start&&n.start<o.end)return!0;if(n.end>o.start&&n.end<o.end)return!0}return!1}},{key:"validateGrid",value:function(e){for(var t,n,r=[],o=H(this.device),c=0,i=0,a=0;a<this.columnCount;a++){var l=e[L(a,this.device)],u=e[I(a,this.device)];if((i+=u)>=o&&(i-=o),(i+=l)>o)return!1;r.push({start:c+u,end:c+u+l}),c+=l+u}return!(c>(t=this.device,n=this.columnCount,"Tablet"===t&&n>2?2*H(t):"Mobile"===t?H(t)*n:H(t))||this.hasOverlaps(r))}},{key:"getEndAdjustments",value:function(e,t){var n=[];if(t<0)return[this.getAdjustOffset(e,this.getOffset(e)+Math.abs(t))];if(t>0)for(var r=e;r<this.columnCount&&t>0;r++){var o=this.getShrinkOffset(r,Math.abs(t));n.push(o.adjustment),t-=o.offsetUsed}return n}},{key:"getStartMovedLeft",value:function(e,t){for(var n=[],r=e;r>=0&&t>0;r--){var o=this.getShrinkOffset(r,t);n.push(o.adjustment),t-=o.offsetUsed}return n}},{key:"getStartAdjustments",value:function(e,t){var n=this.getOffset(e),r=this.getOffsetFromStart(e,t),o=r-n;return o<0?this.getStartMovedLeft(e,Math.abs(o)):[this.getAdjustOffset(e,r)]}},{key:"getSpan",value:function(e){return this.attributes[L(e,this.device)]}},{key:"getOffset",value:function(e){return this.attributes[I(e,this.device)]}},{key:"getStart",value:function(e){for(var t=0,n=0;n<e;n++)t+=this.getSpan(n)+this.getOffset(n);var r=Math.max(1,Math.floor(t/H(this.device)));return(t+this.getOffset(e))%(r*H(this.device))}},{key:"getOffsetFromStart",value:function(e,t){if(0===e)return t;var n=t-this.getStart(e);return this.getOffset(e)+n}},{key:"convertOffsetToStart",value:function(e,t){return this.getStart(e)+(t-this.getOffset(e))}},{key:"getAdjustedGrid",value:function(e,t){var n=t.start,r=void 0===n?this.getStart(e):n,o=t.span,c=void 0===o?this.getSpan(e):o,i=[];r!==this.getStart(e)&&c!==this.getSpan(e)?i=(i=i.concat(this.getStartAdjustments(e,r))).concat(this.getSpanAdjustment(e,c)):c!==this.getSpan(e)?i=(i=i.concat(this.getSpanAdjustment(e,c))).concat(this.getEndAdjustments(e+1,c-this.getSpan(e))):r!==this.getStart(e)&&(i=(i=i.concat(this.getStartAdjustments(e,r))).concat(this.getEndAdjustments(e+1,r-this.getStart(e))));var a=this.applyAdjustments(i);return i.length>0&&this.validateGrid(a)?a:null}}]),e}(),he=n(23),ye=n.n(he),Oe=function(e){var t=e.viewPort,n=e.updateViewport,r=Object(P.useDispatch)("core/edit-post").__experimentalSetPreviewDeviceType,o=Object(P.useSelect)((function(e){return e("core/edit-post").__experimentalGetPreviewDeviceType()}),[]),c=Object(B.useResizeObserver)(),i=ye()(c,2),a=i[0],l=i[1],u=Object(B.useViewportMatch)("medium","<"),s=Object(B.useViewportMatch)("small","<");return Object(w.useEffect)((function(){var e=function(e,t){return e?"Mobile":t?"Tablet":"Desktop"}(s,u);e!==t&&n(e)}),[l]),Object(w.createElement)(w.Fragment,null,a,!s&&Object(w.createElement)(S.BlockControls,null,Object(w.createElement)(C.Dropdown,{renderToggle:function(e){var t=e.isOpen,n=e.onToggle;return Object(w.createElement)(C.ToolbarGroup,null,Object(w.createElement)(C.Button,{"aria-expanded":t,onClick:n,icon:N().find((function(e){return e.value===o})).icon}))},renderContent:function(){return Object(w.createElement)(C.MenuGroup,null,Object(w.createElement)(C.MenuItemsChoice,{value:o,onSelect:function(e){return r(e)},choices:N()}))}})))};function je(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function _e(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?je(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):je(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var we=["jetpack/layout-grid-column"],ke=function(e){h()(c,e);var t,n,r=(t=c,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=_()(t);if(n){var o=_()(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return O()(this,e)});function c(e){var t;return d()(this,c),t=r.call(this,e),o()(m()(t),"onChangeLayout",(function(e){for(var n={},r=0;r<e;r++)for(var o=0;o<G.length;o++){var c=U(G[o],e,r);n[L(r,G[o])]=c,n[I(r,G[o])]=0}t.props.updateColumns(t.props.columns,e,n)})),o()(m()(t),"onResize",(function(e,n){var r=t.props,o=r.attributes,c=r.columns,i=new ve(o,t.getPreviewMode(),c).getAdjustedGrid(e,n);i&&t.adjustGrid(i)})),o()(m()(t),"onChangeSpan",(function(e,n,r){var o=t.props,c=o.attributes,i=o.columns,a=new ve(c,n,i).getAdjustedGrid(e,{span:parseInt(r,10)});a&&t.adjustGrid(a)})),o()(m()(t),"onChangeOffset",(function(e,n,r){var o=t.props,c=o.attributes,i=o.columns,a=new ve(c,n,i),l=a.getAdjustedGrid(e,{start:a.convertOffsetToStart(e,parseInt(r,10))});l&&t.adjustGrid(l)})),t.overlayRef=Object(w.createRef)(),t.state={inspectorDeviceType:"Desktop",viewPort:"Desktop"},t}return b()(c,[{key:"adjustGrid",value:function(e){var t=this.props,n=t.setAttributes,r=t.attributes;n(_e(_e({},e),{},{className:oe(r.className)}))}},{key:"renderDeviceSettings",value:function(e,t,n){for(var r=this,o=new ve(n,t,this.props.columns),c=[],a=function(n){var a=o.getSpan(n)||U(t,e,n),l=o.getOffset(n)||0;c.push(Object(w.createElement)("div",{className:"jetpack-layout-grid-settings",key:n},Object(w.createElement)("strong",null,Object(i.__)("Column","layout-grid")," ",n+1),Object(w.createElement)("div",{className:"jetpack-layout-grid-settings__group"},Object(w.createElement)(C.TextControl,{type:"number",label:Object(i.__)("Offset","layout-grid"),value:l||0,min:0,max:H(t)-1,onChange:function(e){return r.onChangeOffset(n,t,e)}}),Object(w.createElement)(C.TextControl,{type:"number",label:Object(i.__)("Span","layout-grid"),value:a,min:1,max:H(t),onChange:function(e){return r.onChangeSpan(n,t,e)}}))))},l=0;l<e;l++)a(l);return c}},{key:"canResizeBreakpoint",value:function(e){return!(!this.overlayRef||!this.overlayRef.current)&&this.overlayRef.current.getBoundingClientRect().width/H(e)>50}},{key:"updateInspectorDevice",value:function(e){this.setState({inspectorDeviceType:e}),"Mobile"!==this.state.viewPort&&this.props.setPreviewDeviceType(e)}},{key:"getPreviewMode",value:function(){return this.props.isBlockOrPatternPreview?"Desktop":"Desktop"===this.state.viewPort||"Mobile"===this.props.previewDeviceType?this.props.previewDeviceType:this.state.viewPort}},{key:"getInspectorMode",value:function(){return"Desktop"===this.state.viewPort?this.props.previewDeviceType:this.state.inspectorDeviceType}},{key:"render",value:function(){var e=this,t=this.props,n=t.className,r=t.attributes,c=void 0===r?{}:r,a=t.isSelected,l=t.columns,u=t.setAttributes,s=t.updateAlignment,p=t.columnAttributes,d=this.state.viewPort,f=this.getPreviewMode(),b=this.getInspectorMode(),g=function(e,t){for(var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[],o=ne(e,t,n),c={span:K,offset:W,row:$},i={},a=0;a<t;a++)r[a].verticalAlignment&&r[a].verticalAlignment!==n.verticalAlignment&&(i[q(a,r[a].verticalAlignment)]=!0);return F(F({},re(o,c)),i)}(f,l,c,p),m=c.gutterSize,v=c.addGutterEnds,h=c.verticalAlignment,y=new ve(c,f,l),O=E()(oe(n).replace("layout-grid","layout-grid-editor"),"wp-block-jetpack-editor",g,o()({"wp-block-jetpack-layout-tablet":"Tablet"===f,"wp-block-jetpack-layout-desktop":"Desktop"===f,"wp-block-jetpack-layout-mobile":"Mobile"===f,"wp-block-jetpack-layout-resizable":this.canResizeBreakpoint(f)},"are-vertically-aligned-".concat(h),h),ce(c));if(0===l)return Object(w.createElement)(C.Placeholder,{icon:"layout",label:Object(i.__)("Choose Layout","layout-grid"),instructions:Object(i.__)("Select a layout to start with:","layout-grid"),className:O},Object(w.createElement)("ul",{className:"block-editor-inner-blocks__template-picker-options"},V().map((function(t){return Object(w.createElement)("li",{key:t.value},Object(w.createElement)(C.IconButton,{isSecondary:!0,icon:Object(w.createElement)(de,{columns:t.value}),onClick:function(){return e.onChangeLayout(t.value)},className:"block-editor-inner-blocks__template-picker-option",label:t.label}))}))));var j=Object(w.createElement)(C.ToggleControl,{label:Object(i.__)("Add end gutters","layout-grid"),help:v?Object(i.__)("Toggle off to remove the spacing left and right of the grid.","layout-grid"):Object(i.__)("Toggle on to add space left and right of the layout grid. ","layout-grid"),checked:v,onChange:function(e){return u({addGutterEnds:e})}});return Object(w.createElement)(w.Fragment,null,Object(w.createElement)(Oe,{currentViewport:d,updateViewport:function(t){return e.setState({viewPort:t,inspectorDeviceType:t})}}),Object(w.createElement)(be,{className:O,onResize:this.onResize,totalColumns:H(f),layoutGrid:y,isSelected:a},Object(w.createElement)("div",{className:"wpcom-overlay-grid",ref:this.overlayRef},Object(k.times)(H(f)).map((function(e){return Object(w.createElement)("div",{className:"wpcom-overlay-grid__column",key:e})}))),Object(w.createElement)(S.InnerBlocks,{template:null,templateLock:"all",allowedBlocks:we}),Object(w.createElement)(S.InspectorControls,null,Object(w.createElement)(C.PanelBody,{title:Object(i.__)("Layout","layout-grid")},Object(w.createElement)("div",{className:"jetpack-layout-grid-columns block-editor-block-styles"},V().map((function(t){return Object(w.createElement)("div",{key:t.value,className:E()("block-editor-block-styles__item",{"is-active":l===t.value}),onClick:function(){return e.onChangeLayout(t.value)},onKeyDown:function(n){M.ENTER!==n.keyCode&&M.SPACE!==n.keyCode||(n.preventDefault(),e.onChangeLayout(t.value))},role:"button",tabIndex:"0","aria-label":t.label},Object(w.createElement)("div",{className:"block-editor-block-styles__item-preview"},Object(w.createElement)(de,{columns:t.value})),Object(w.createElement)("div",{className:"editor-block-styles__item-label block-editor-block-styles__item-label"},t.label))}))),Object(w.createElement)("p",null,Object(w.createElement)("em",null,Object(i.__)("Changing the number of columns will reset your layout and could remove content.","layout-grid")))),Object(w.createElement)(C.PanelBody,{title:Object(i.__)("Responsive Breakpoints","layout-grid")},Object(w.createElement)("p",null,Object(w.createElement)("em",null,Object(i.__)("Note that previewing your post will show your browser's breakpoint, not the currently selected one.","layout-grid"))),Object(w.createElement)(C.ButtonGroup,null,N().map((function(t){return Object(w.createElement)(C.Button,{key:t.value,isPrimary:t.value===b,onClick:function(){return e.updateInspectorDevice(t.value)}},t.label)}))),this.renderDeviceSettings(l,b,c)),Object(w.createElement)(C.PanelBody,{title:Object(i.__)("Gutter","layout-grid")},Object(w.createElement)("p",null,Object(i.__)("Gutter size","layout-grid")),Object(w.createElement)(C.SelectControl,{value:m,onChange:function(e){return u({gutterSize:e,addGutterEnds:"none"!==e&&v})},options:[{value:"none",label:Object(i.__)("No gutter","layout-grid")}].concat(T())}),"none"===m?Object(w.createElement)(C.Disabled,null,j):j))),Object(w.createElement)(S.BlockControls,null,Object(w.createElement)(S.BlockVerticalAlignmentToolbar,{onChange:s,value:h})))}}]),c}(w.Component),xe=Object(B.compose)([Object(P.withDispatch)((function(e,t,n){return{updateAlignment:function(r){var o=t.clientId,c=t.setAttributes,i=e("core/block-editor").updateBlockAttributes,a=n.select("core/block-editor").getBlockOrder;c({verticalAlignment:r}),a(o).forEach((function(e){i(e,{verticalAlignment:r})}))},updateColumns:function(r,o,i){var a=t.clientId,l=e("core/block-editor").replaceBlock,u=function(e,t,n){if(n>t)return[].concat(s()(e),s()(Object(k.times)(n-t,(function(){return Object(c.createBlock)("jetpack/layout-grid-column")}))));var r=s()(e),o=0;return r.reverse(),(r=r.filter((function(e){return!(o<t-n&&0===e.innerBlocks.length&&(o++,1))}))).slice(Math.max(0,t-n-o)).reverse()}((0,n.select("core/block-editor").getBlocks)(a),r,o);l(a,Object(c.createBlock)(t.name,_e(_e(_e({},t.attributes),i),{},{className:oe(t.attributes.className)}),u))},setPreviewDeviceType:function(t){(0,e("core/edit-post").__experimentalSetPreviewDeviceType)(t)}}})),Object(P.withSelect)((function(e,t){var n=t.clientId,r=e("core/block-editor"),o=r.getBlockOrder,c=r.getBlockCount,i=r.getBlocksByClientId,a=e("core/edit-post").__experimentalGetPreviewDeviceType,l=void 0===a?null:a;return{columns:c(n),columnAttributes:o(n).map((function(e){return i(e)[0].attributes})),previewDeviceType:l()}}))])((function(e){return Object(w.createElement)(C.Disabled.Consumer,null,(function(t){return Object(w.createElement)(ke,l()({},e,{isBlockOrPatternPreview:t}))}))}));var Ee=function(e){h()(c,e);var t,n,r=(t=c,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=_()(t);if(n){var o=_()(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return O()(this,e)});function c(e){var t;return d()(this,c),t=r.call(this,e),o()(m()(t),"onLeftIn",(function(){t.setState({direction:"left"}),document.addEventListener("mouseup",t.onLeftOut)})),o()(m()(t),"onLeftOut",(function(){t.setState({direction:null}),document.removeEventListener("mouseup",t.onLeftOut)})),o()(m()(t),"onRightIn",(function(){t.setState({direction:"right"}),document.addEventListener("mouseup",t.onRightOut)})),o()(m()(t),"onRightOut",(function(){t.setState({direction:null}),document.removeEventListener("mouseup",t.onRightOut)})),t.state={direction:null},t}return b()(c,[{key:"render",value:function(){var e,t=this.props,n=t.className,r=t.hasChildBlocks,c=t.backgroundColor,a=t.setBackgroundColor,l=t.attributes,u=t.setAttributes,s=t.updateAlignment,p=l.padding,d=l.verticalAlignment,f=this.state.direction,b=E()(n,c.class,(e={},o()(e,"wp-block-jetpack-layout-grid__padding-"+p,!0),o()(e,"has-background",c.color),o()(e,"components-resizable-box__container",!0),o()(e,c.class,c.class),o()(e,"wp-blocks-jetpack-layout-grid__showleft","right"===f),o()(e,"wp-blocks-jetpack-layout-grid__showright","left"===f),o()(e,"is-vertically-aligned-".concat(d),d),e)),g={backgroundColor:c.color};return Object(w.createElement)("div",{className:b,style:g},Object(w.createElement)("span",{className:"wp-blocks-jetpack-layout-grid__resize-handles"},Object(w.createElement)("div",{className:"components-resizable-box__handle components-resizable-box__side-handle components-resizable-box__handle-right",onMouseDown:this.onRightIn,"data-resize-right":!0}),Object(w.createElement)("div",{className:"components-resizable-box__handle components-resizable-box__side-handle components-resizable-box__handle-left",onMouseDown:this.onLeftIn,"data-resize-left":!0})),Object(w.createElement)(S.InnerBlocks,{templateLock:!1,renderAppender:r?void 0:function(){return Object(w.createElement)(S.InnerBlocks.ButtonBlockAppender,null)}}),Object(w.createElement)(S.InspectorControls,null,Object(w.createElement)(S.PanelColorSettings,{title:Object(i.__)("Column Color","layout-grid"),initialOpen:!0,colorSettings:[{value:c.color,onChange:a,label:Object(i.__)("Background","layout-grid")}]}),Object(w.createElement)(C.PanelBody,{title:Object(i.__)("Column Padding","layout-grid")},Object(w.createElement)("p",null,Object(i.__)("Choose padding for this column:","layout-grid")),Object(w.createElement)(C.SelectControl,{value:p,onChange:function(e){return u({padding:e})},options:[{value:"none",label:Object(i.__)("No padding","layout-grid")}].concat(T())}))),Object(w.createElement)(S.BlockControls,null,Object(w.createElement)(S.BlockVerticalAlignmentToolbar,{onChange:s,value:d})))}}]),c}(w.Component),Se=Object(B.compose)(Object(S.withColors)("backgroundColor"),Object(P.withSelect)((function(e,t){var n=t.clientId;return{hasChildBlocks:(0,e("core/block-editor").getBlockOrder)(n).length>0}})),Object(P.withDispatch)((function(e,t,n){return{updateAlignment:function(r){var o=t.clientId,c=t.setAttributes,i=e("core/block-editor").updateBlockAttributes,a=n.select("core/block-editor").getBlockRootClientId;c({verticalAlignment:r}),i(a(o),{verticalAlignment:null})}}})))(Ee),Ce=[{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},padding:{type:"string",default:"none"},verticalAlignment:{type:"string"}},save:function(e){var t,n=e.attributes,r=void 0===n?{}:n,c=r.className,i=r.backgroundColor,a=r.customBackgroundColor,l=r.padding,u=r.verticalAlignment,s=Object(S.getColorClassName)("background-color",i),p=E()(c,(t={},o()(t,"wp-block-jetpack-layout-grid__padding-"+l,!0),o()(t,"has-background",i),o()(t,s,s),o()(t,"is-vertically-aligned-".concat(u),u),t)),d={backgroundColor:s?void 0:a};return Object(w.createElement)("div",{className:p,style:d},Object(w.createElement)(S.InnerBlocks.Content,null))}}];function Me(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}Object(c.registerBlockType)("jetpack/layout-grid",{title:Object(i.__)("Layout Grid","layout-grid"),description:Object(i.__)("Align blocks to a global grid, with support for responsive breakpoints.","layout-grid"),icon:function(e){return Object(w.createElement)(C.SVG,l()({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"},e),Object(w.createElement)(C.Path,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7.5 11.5H6c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h5.5v10zm4 0H13v-10h2.5v10zm4-.5c0 .3-.2.5-.5.5h-2v-10h2c.3 0 .5.2.5.5v9z"}))},category:"design",supports:{align:["full"],html:!1},example:{attributes:{columns:2},innerBlocks:[{name:"jetpack/layout-grid-column",innerBlocks:[{name:"core/paragraph",attributes:{customFontSize:32,content:Object(i.__)("<strong>Snow Patrol</strong>","layout-grid"),align:"center"}}]},{name:"jetpack/layout-grid-column",innerBlocks:[{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg"}}]}]},attributes:function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Me(Object(n),!0).forEach((function(t){o()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Me(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({align:{type:"string",default:"full"},gutterSize:{type:"string",default:"large"},addGutterEnds:{type:"boolean",default:!0},verticalAlignment:{type:"string"}},function(e,t){for(var n={},r=function(e){t.map((function(t){n[L(e,t)]={type:"number"},n[I(e,t)]={type:"number",default:0}}))},o=0;o<e;o++)r(o);return n}(4,G)),edit:xe,save:function(e){var t=e.attributes,n=e.innerBlocks,r=t.className,o=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={},r={span:J,offset:Q,row:Y},o=0;o<G.length;o++)n=F(F({},n),re(ne(G[o],e,t),r));return t.addGutterEnds||(n["wp-block-jetpack-layout-gutter__nowrap"]=!0),t.verticalAlignment&&"top"!==t.verticalAlignment&&(n["are-vertically-aligned-".concat(t.verticalAlignment)]=!0),n}(n.length,t),c=E()(oe(r),o,ce(t));return Object(w.createElement)("div",{className:c},Object(w.createElement)(S.InnerBlocks.Content,null))}}),Object(c.registerBlockType)("jetpack/layout-grid-column",{description:Object(i.__)("A column used inside a Layout Grid block.","layout-grid"),title:Object(i.__)("Column","layout-grid"),icon:function(e){return Object(w.createElement)(C.SVG,l()({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"},e),Object(w.createElement)(C.Path,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM5.5 17V8c0-.3.2-.5.5-.5h5.5v10H6c-.3 0-.5-.2-.5-.5zm14 0c0 .3-.2.5-.5.5h-2v-10h2c.3 0 .5.2.5.5v9z"}))},category:"design",parent:["jetpack/layout-grid"],supports:{inserter:!1,reusable:!1,html:!1},attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},padding:{type:"string",default:"none"},verticalAlignment:{type:"string"}},edit:Se,save:function(e){var t,n=e.attributes,r=void 0===n?{}:n,c=r.className,i=r.backgroundColor,a=r.customBackgroundColor,l=r.padding,u=r.verticalAlignment,s=Object(S.getColorClassName)("background-color",i),p=E()(c,(t={},o()(t,"wp-block-jetpack-layout-grid__padding-"+l,!0),o()(t,"has-background",i||a),o()(t,s,s),o()(t,"is-vertically-aligned-".concat(u),u),t)),d={backgroundColor:s?void 0:a};return Object(w.createElement)("div",{className:p,style:d},Object(w.createElement)(S.InnerBlocks.Content,null))},deprecated:Ce})}]);
|
index.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
Â
/**
|
| 3 |
Â
* Plugin Name: Layout Grid
|
| 4 |
Â
* Description: Let any blocks align to a global grid
|
| 5 |
-
* Version: 1.
|
| 6 |
Â
* Author: Automattic
|
| 7 |
Â
* Author URI: https://automattic.com
|
| 8 |
Â
* License: GPL v2 or later
|
| 2 |
Â
/**
|
| 3 |
Â
* Plugin Name: Layout Grid
|
| 4 |
Â
* Description: Let any blocks align to a global grid
|
| 5 |
+
* Version: 1.6
|
| 6 |
Â
* Author: Automattic
|
| 7 |
Â
* Author URI: https://automattic.com
|
| 8 |
Â
* License: GPL v2 or later
|
readme.txt
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
Â
=== Layout Grid Block ===
|
| 2 |
Â
Contributors: automattic, jasmussen, johnny5, mkaz
|
| 3 |
Â
Stable tag: trunk
|
| 4 |
-
Tested up to: 5.
|
| 5 |
Â
Requires at least: 5.6
|
| 6 |
Â
License: GPLv2 or later
|
| 7 |
Â
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
@@ -24,6 +24,13 @@ You can follow development, file an issue, suggest features, and view the source
|
|
| 24 |
Â
|
| 25 |
Â
== Changelog ==
|
| 26 |
Â
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
| 27 |
Â
= 1.5 - 8th February 2021 =
|
| 28 |
Â
* Improve editor responsive behaviour on smaller devices
|
| 29 |
Â
* Bump minimum WordPress version to 5.6
|
| 1 |
Â
=== Layout Grid Block ===
|
| 2 |
Â
Contributors: automattic, jasmussen, johnny5, mkaz
|
| 3 |
Â
Stable tag: trunk
|
| 4 |
+
Tested up to: 5.7
|
| 5 |
Â
Requires at least: 5.6
|
| 6 |
Â
License: GPLv2 or later
|
| 7 |
Â
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
| 24 |
Â
|
| 25 |
Â
== Changelog ==
|
| 26 |
Â
|
| 27 |
+
= 1.6 - 26th March 2021 =
|
| 28 |
+
* Remove deprecated Gutenberg functions
|
| 29 |
+
* Restore hyphenation behaviour to 1.3 - it caused too many issues
|
| 30 |
+
* Remove Firefox fix in 1.2.4 which no longer seems to be needed and causes other issues
|
| 31 |
+
* Merge front.css into style.css
|
| 32 |
+
* Force grid preview to be desktop mode, to improve appearance in pattern inserter
|
| 33 |
+
|
| 34 |
Â
= 1.5 - 8th February 2021 =
|
| 35 |
Â
* Improve editor responsive behaviour on smaller devices
|
| 36 |
Â
* Bump minimum WordPress version to 5.6
|
style.css
CHANGED
|
@@ -6,49 +6,66 @@
|
|
| 6 |
Â
* Padding Options
|
| 7 |
Â
*/
|
| 8 |
Â
/* autoprefixer grid: no-autoplace */
|
|
Â
|
|
| 9 |
Â
.wp-block-jetpack-layout-grid {
|
| 10 |
Â
padding-left: 24px;
|
| 11 |
Â
padding-right: 24px;
|
| 12 |
Â
box-sizing: border-box; }
|
|
Â
|
|
| 13 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
|
| 14 |
Â
padding-left: 0px;
|
| 15 |
Â
padding-right: 0px; }
|
|
Â
|
|
| 16 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
|
| 17 |
Â
padding-left: 8px;
|
| 18 |
Â
padding-right: 8px; }
|
|
Â
|
|
| 19 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
|
| 20 |
Â
padding-left: 16px;
|
| 21 |
Â
padding-right: 16px; }
|
|
Â
|
|
| 22 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
|
| 23 |
Â
padding-left: 48px;
|
| 24 |
Â
padding-right: 48px; }
|
|
Â
|
|
| 25 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__nowrap {
|
| 26 |
Â
padding-left: 0px;
|
| 27 |
Â
padding-right: 0px; }
|
|
Â
|
|
| 28 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none {
|
| 29 |
Â
padding: 0px; }
|
|
Â
|
|
| 30 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none.has-background {
|
| 31 |
Â
padding: 0px 13px; }
|
|
Â
|
|
| 32 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column {
|
| 33 |
Â
padding: 8px; }
|
|
Â
|
|
| 34 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background {
|
| 35 |
Â
padding: 8px 21px; }
|
|
Â
|
|
| 36 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column {
|
| 37 |
Â
padding: 16px; }
|
|
Â
|
|
| 38 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background {
|
| 39 |
Â
padding: 16px 29px; }
|
|
Â
|
|
| 40 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column {
|
| 41 |
Â
padding: 24px; }
|
|
Â
|
|
| 42 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background {
|
| 43 |
Â
padding: 24px 37px; }
|
|
Â
|
|
| 44 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column {
|
| 45 |
Â
padding: 48px; }
|
|
Â
|
|
| 46 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background {
|
| 47 |
Â
padding: 48px 61px; }
|
| 48 |
Â
|
| 49 |
Â
/**
|
| 50 |
Â
* Individual Column Options
|
| 51 |
Â
*/
|
|
Â
|
|
| 52 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.has-background {
|
| 53 |
Â
margin-left: -13px;
|
| 54 |
Â
margin-right: -13px;
|
|
@@ -57,32 +74,42 @@
|
|
| 57 |
Â
padding-top: .05px;
|
| 58 |
Â
padding-bottom: .05px; }
|
| 59 |
Â
|
|
Â
|
|
| 60 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none {
|
| 61 |
Â
padding: 0px; }
|
|
Â
|
|
| 62 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background {
|
| 63 |
Â
padding: 0px 13px;
|
| 64 |
Â
max-width: calc( 100% + 26px); }
|
| 65 |
Â
|
|
Â
|
|
| 66 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small {
|
| 67 |
Â
padding: 8px; }
|
|
Â
|
|
| 68 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background {
|
| 69 |
Â
padding: 8px 21px;
|
| 70 |
Â
max-width: calc( 100% + 42px); }
|
| 71 |
Â
|
|
Â
|
|
| 72 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium {
|
| 73 |
Â
padding: 16px; }
|
|
Â
|
|
| 74 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background {
|
| 75 |
Â
padding: 16px 29px;
|
| 76 |
Â
max-width: calc( 100% + 58px); }
|
| 77 |
Â
|
|
Â
|
|
| 78 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large {
|
| 79 |
Â
padding: 24px; }
|
|
Â
|
|
| 80 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background {
|
| 81 |
Â
padding: 24px 37px;
|
| 82 |
Â
max-width: calc( 100% + 74px); }
|
| 83 |
Â
|
|
Â
|
|
| 84 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge {
|
| 85 |
Â
padding: 48px; }
|
|
Â
|
|
| 86 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background {
|
| 87 |
Â
padding: 48px 61px;
|
| 88 |
Â
max-width: calc( 100% + 122px); }
|
|
@@ -110,3 +137,704 @@
|
|
| 110 |
Â
|
| 111 |
Â
.wp-block-jetpack-layout-grid-column.is-vertically-aligned-bottom {
|
| 112 |
Â
align-self: flex-end; }
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
|
|
Â
|
| 6 |
Â
* Padding Options
|
| 7 |
Â
*/
|
| 8 |
Â
/* autoprefixer grid: no-autoplace */
|
| 9 |
+
.wp-block-jetpack-layout-grid-editor,
|
| 10 |
Â
.wp-block-jetpack-layout-grid {
|
| 11 |
Â
padding-left: 24px;
|
| 12 |
Â
padding-right: 24px;
|
| 13 |
Â
box-sizing: border-box; }
|
| 14 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__none,
|
| 15 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
|
| 16 |
Â
padding-left: 0px;
|
| 17 |
Â
padding-right: 0px; }
|
| 18 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__small,
|
| 19 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
|
| 20 |
Â
padding-left: 8px;
|
| 21 |
Â
padding-right: 8px; }
|
| 22 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__medium,
|
| 23 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
|
| 24 |
Â
padding-left: 16px;
|
| 25 |
Â
padding-right: 16px; }
|
| 26 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__huge,
|
| 27 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
|
| 28 |
Â
padding-left: 48px;
|
| 29 |
Â
padding-right: 48px; }
|
| 30 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-gutter__nowrap,
|
| 31 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__nowrap {
|
| 32 |
Â
padding-left: 0px;
|
| 33 |
Â
padding-right: 0px; }
|
| 34 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-none,
|
| 35 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none {
|
| 36 |
Â
padding: 0px; }
|
| 37 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-none.has-background,
|
| 38 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none.has-background {
|
| 39 |
Â
padding: 0px 13px; }
|
| 40 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column,
|
| 41 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column {
|
| 42 |
Â
padding: 8px; }
|
| 43 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background,
|
| 44 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background {
|
| 45 |
Â
padding: 8px 21px; }
|
| 46 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column,
|
| 47 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column {
|
| 48 |
Â
padding: 16px; }
|
| 49 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background,
|
| 50 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background {
|
| 51 |
Â
padding: 16px 29px; }
|
| 52 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column,
|
| 53 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column {
|
| 54 |
Â
padding: 24px; }
|
| 55 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background,
|
| 56 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background {
|
| 57 |
Â
padding: 24px 37px; }
|
| 58 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column,
|
| 59 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column {
|
| 60 |
Â
padding: 48px; }
|
| 61 |
+
.wp-block-jetpack-layout-grid-editor.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background,
|
| 62 |
Â
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background {
|
| 63 |
Â
padding: 48px 61px; }
|
| 64 |
Â
|
| 65 |
Â
/**
|
| 66 |
Â
* Individual Column Options
|
| 67 |
Â
*/
|
| 68 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.has-background,
|
| 69 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.has-background {
|
| 70 |
Â
margin-left: -13px;
|
| 71 |
Â
margin-right: -13px;
|
| 74 |
Â
padding-top: .05px;
|
| 75 |
Â
padding-bottom: .05px; }
|
| 76 |
Â
|
| 77 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none,
|
| 78 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none {
|
| 79 |
Â
padding: 0px; }
|
| 80 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background,
|
| 81 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background {
|
| 82 |
Â
padding: 0px 13px;
|
| 83 |
Â
max-width: calc( 100% + 26px); }
|
| 84 |
Â
|
| 85 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small,
|
| 86 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small {
|
| 87 |
Â
padding: 8px; }
|
| 88 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background,
|
| 89 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background {
|
| 90 |
Â
padding: 8px 21px;
|
| 91 |
Â
max-width: calc( 100% + 42px); }
|
| 92 |
Â
|
| 93 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium,
|
| 94 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium {
|
| 95 |
Â
padding: 16px; }
|
| 96 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background,
|
| 97 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background {
|
| 98 |
Â
padding: 16px 29px;
|
| 99 |
Â
max-width: calc( 100% + 58px); }
|
| 100 |
Â
|
| 101 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large,
|
| 102 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large {
|
| 103 |
Â
padding: 24px; }
|
| 104 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background,
|
| 105 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background {
|
| 106 |
Â
padding: 24px 37px;
|
| 107 |
Â
max-width: calc( 100% + 74px); }
|
| 108 |
Â
|
| 109 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge,
|
| 110 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge {
|
| 111 |
Â
padding: 48px; }
|
| 112 |
+
.wp-block-jetpack-layout-grid-editor .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background,
|
| 113 |
Â
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background {
|
| 114 |
Â
padding: 48px 61px;
|
| 115 |
Â
max-width: calc( 100% + 122px); }
|
| 137 |
Â
|
| 138 |
Â
.wp-block-jetpack-layout-grid-column.is-vertically-aligned-bottom {
|
| 139 |
Â
align-self: flex-end; }
|
| 140 |
+
|
| 141 |
+
/**
|
| 142 |
+
* Responsive Grid Options. Exclude these from the editor.
|
| 143 |
+
*/
|
| 144 |
+
/* autoprefixer grid: no-autoplace */
|
| 145 |
+
.wp-block-jetpack-layout-grid {
|
| 146 |
+
display: grid;
|
| 147 |
+
grid-gap: 24px;
|
| 148 |
+
grid-template-columns: repeat(4, 1fr); }
|
| 149 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 150 |
+
grid-column-start: 1; }
|
| 151 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 152 |
+
grid-column-start: 1; }
|
| 153 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 154 |
+
grid-column-start: 1; }
|
| 155 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 156 |
+
grid-column-start: 1; }
|
| 157 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 158 |
+
grid-column-start: 2; }
|
| 159 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 160 |
+
grid-column-start: 2; }
|
| 161 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 162 |
+
grid-column-start: 2; }
|
| 163 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 164 |
+
grid-column-start: 2; }
|
| 165 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 166 |
+
grid-column-start: 3; }
|
| 167 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 168 |
+
grid-column-start: 3; }
|
| 169 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 170 |
+
grid-column-start: 3; }
|
| 171 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 172 |
+
grid-column-start: 3; }
|
| 173 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 174 |
+
grid-column-start: 4; }
|
| 175 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 176 |
+
grid-column-start: 4; }
|
| 177 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 178 |
+
grid-column-start: 4; }
|
| 179 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 180 |
+
grid-column-start: 4; }
|
| 181 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 182 |
+
grid-column-start: 5; }
|
| 183 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 184 |
+
grid-column-start: 5; }
|
| 185 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 186 |
+
grid-column-start: 5; }
|
| 187 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 188 |
+
grid-column-start: 5; }
|
| 189 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 190 |
+
grid-column-start: 6; }
|
| 191 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 192 |
+
grid-column-start: 6; }
|
| 193 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 194 |
+
grid-column-start: 6; }
|
| 195 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 196 |
+
grid-column-start: 6; }
|
| 197 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 198 |
+
grid-column-start: 7; }
|
| 199 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 200 |
+
grid-column-start: 7; }
|
| 201 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 202 |
+
grid-column-start: 7; }
|
| 203 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 204 |
+
grid-column-start: 7; }
|
| 205 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 206 |
+
grid-column-start: 8; }
|
| 207 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 208 |
+
grid-column-start: 8; }
|
| 209 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 210 |
+
grid-column-start: 8; }
|
| 211 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 212 |
+
grid-column-start: 8; }
|
| 213 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 214 |
+
grid-column-start: 9; }
|
| 215 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 216 |
+
grid-column-start: 9; }
|
| 217 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 218 |
+
grid-column-start: 9; }
|
| 219 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 220 |
+
grid-column-start: 9; }
|
| 221 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 222 |
+
grid-column-start: 10; }
|
| 223 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 224 |
+
grid-column-start: 10; }
|
| 225 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 226 |
+
grid-column-start: 10; }
|
| 227 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 228 |
+
grid-column-start: 10; }
|
| 229 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 230 |
+
grid-column-start: 11; }
|
| 231 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 232 |
+
grid-column-start: 11; }
|
| 233 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 234 |
+
grid-column-start: 11; }
|
| 235 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 236 |
+
grid-column-start: 11; }
|
| 237 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 238 |
+
grid-column-start: 12; }
|
| 239 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 240 |
+
grid-column-start: 12; }
|
| 241 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 242 |
+
grid-column-start: 12; }
|
| 243 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 244 |
+
grid-column-start: 12; }
|
| 245 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 246 |
+
grid-column-end: span 1; }
|
| 247 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 248 |
+
grid-column-end: span 1; }
|
| 249 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 250 |
+
grid-column-end: span 1; }
|
| 251 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 252 |
+
grid-column-end: span 1; }
|
| 253 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 254 |
+
grid-column-end: span 2; }
|
| 255 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 256 |
+
grid-column-end: span 2; }
|
| 257 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 258 |
+
grid-column-end: span 2; }
|
| 259 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 260 |
+
grid-column-end: span 2; }
|
| 261 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 262 |
+
grid-column-end: span 3; }
|
| 263 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 264 |
+
grid-column-end: span 3; }
|
| 265 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 266 |
+
grid-column-end: span 3; }
|
| 267 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 268 |
+
grid-column-end: span 3; }
|
| 269 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 270 |
+
grid-column-end: span 4; }
|
| 271 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 272 |
+
grid-column-end: span 4; }
|
| 273 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 274 |
+
grid-column-end: span 4; }
|
| 275 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 276 |
+
grid-column-end: span 4; }
|
| 277 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 278 |
+
grid-column-end: span 5; }
|
| 279 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 280 |
+
grid-column-end: span 5; }
|
| 281 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 282 |
+
grid-column-end: span 5; }
|
| 283 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 284 |
+
grid-column-end: span 5; }
|
| 285 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 286 |
+
grid-column-end: span 6; }
|
| 287 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 288 |
+
grid-column-end: span 6; }
|
| 289 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 290 |
+
grid-column-end: span 6; }
|
| 291 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 292 |
+
grid-column-end: span 6; }
|
| 293 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 294 |
+
grid-column-end: span 7; }
|
| 295 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 296 |
+
grid-column-end: span 7; }
|
| 297 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 298 |
+
grid-column-end: span 7; }
|
| 299 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 300 |
+
grid-column-end: span 7; }
|
| 301 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 302 |
+
grid-column-end: span 8; }
|
| 303 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 304 |
+
grid-column-end: span 8; }
|
| 305 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 306 |
+
grid-column-end: span 8; }
|
| 307 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 308 |
+
grid-column-end: span 8; }
|
| 309 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 310 |
+
grid-column-end: span 9; }
|
| 311 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 312 |
+
grid-column-end: span 9; }
|
| 313 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 314 |
+
grid-column-end: span 9; }
|
| 315 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 316 |
+
grid-column-end: span 9; }
|
| 317 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 318 |
+
grid-column-end: span 10; }
|
| 319 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 320 |
+
grid-column-end: span 10; }
|
| 321 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 322 |
+
grid-column-end: span 10; }
|
| 323 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 324 |
+
grid-column-end: span 10; }
|
| 325 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 326 |
+
grid-column-end: span 11; }
|
| 327 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 328 |
+
grid-column-end: span 11; }
|
| 329 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 330 |
+
grid-column-end: span 11; }
|
| 331 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 332 |
+
grid-column-end: span 11; }
|
| 333 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 334 |
+
grid-column-end: span 12; }
|
| 335 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 336 |
+
grid-column-end: span 12; }
|
| 337 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 338 |
+
grid-column-end: span 12; }
|
| 339 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 340 |
+
grid-column-end: span 12; }
|
| 341 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 342 |
+
grid-row-start: 1; }
|
| 343 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 344 |
+
grid-row-start: 1; }
|
| 345 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 346 |
+
grid-row-start: 1; }
|
| 347 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 348 |
+
grid-row-start: 1; }
|
| 349 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 350 |
+
grid-row-start: 2; }
|
| 351 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 352 |
+
grid-row-start: 2; }
|
| 353 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 354 |
+
grid-row-start: 2; }
|
| 355 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 356 |
+
grid-row-start: 2; }
|
| 357 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 358 |
+
grid-row-start: 3; }
|
| 359 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 360 |
+
grid-row-start: 3; }
|
| 361 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 362 |
+
grid-row-start: 3; }
|
| 363 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 364 |
+
grid-row-start: 3; }
|
| 365 |
+
.wp-block-jetpack-layout-grid.column1-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 366 |
+
grid-row-start: 4; }
|
| 367 |
+
.wp-block-jetpack-layout-grid.column2-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 368 |
+
grid-row-start: 4; }
|
| 369 |
+
.wp-block-jetpack-layout-grid.column3-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 370 |
+
grid-row-start: 4; }
|
| 371 |
+
.wp-block-jetpack-layout-grid.column4-mobile-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 372 |
+
grid-row-start: 4; }
|
| 373 |
+
@media (min-width: 600px) {
|
| 374 |
+
.wp-block-jetpack-layout-grid {
|
| 375 |
+
grid-template-columns: repeat(8, 1fr); }
|
| 376 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 377 |
+
grid-column-start: 1; }
|
| 378 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 379 |
+
grid-column-start: 1; }
|
| 380 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 381 |
+
grid-column-start: 1; }
|
| 382 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 383 |
+
grid-column-start: 1; }
|
| 384 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 385 |
+
grid-column-start: 2; }
|
| 386 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 387 |
+
grid-column-start: 2; }
|
| 388 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 389 |
+
grid-column-start: 2; }
|
| 390 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 391 |
+
grid-column-start: 2; }
|
| 392 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 393 |
+
grid-column-start: 3; }
|
| 394 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 395 |
+
grid-column-start: 3; }
|
| 396 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 397 |
+
grid-column-start: 3; }
|
| 398 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 399 |
+
grid-column-start: 3; }
|
| 400 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 401 |
+
grid-column-start: 4; }
|
| 402 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 403 |
+
grid-column-start: 4; }
|
| 404 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 405 |
+
grid-column-start: 4; }
|
| 406 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 407 |
+
grid-column-start: 4; }
|
| 408 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 409 |
+
grid-column-start: 5; }
|
| 410 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 411 |
+
grid-column-start: 5; }
|
| 412 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 413 |
+
grid-column-start: 5; }
|
| 414 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 415 |
+
grid-column-start: 5; }
|
| 416 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 417 |
+
grid-column-start: 6; }
|
| 418 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 419 |
+
grid-column-start: 6; }
|
| 420 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 421 |
+
grid-column-start: 6; }
|
| 422 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 423 |
+
grid-column-start: 6; }
|
| 424 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 425 |
+
grid-column-start: 7; }
|
| 426 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 427 |
+
grid-column-start: 7; }
|
| 428 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 429 |
+
grid-column-start: 7; }
|
| 430 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 431 |
+
grid-column-start: 7; }
|
| 432 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 433 |
+
grid-column-start: 8; }
|
| 434 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 435 |
+
grid-column-start: 8; }
|
| 436 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 437 |
+
grid-column-start: 8; }
|
| 438 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 439 |
+
grid-column-start: 8; }
|
| 440 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 441 |
+
grid-column-start: 9; }
|
| 442 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 443 |
+
grid-column-start: 9; }
|
| 444 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 445 |
+
grid-column-start: 9; }
|
| 446 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 447 |
+
grid-column-start: 9; }
|
| 448 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 449 |
+
grid-column-start: 10; }
|
| 450 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 451 |
+
grid-column-start: 10; }
|
| 452 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 453 |
+
grid-column-start: 10; }
|
| 454 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 455 |
+
grid-column-start: 10; }
|
| 456 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 457 |
+
grid-column-start: 11; }
|
| 458 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 459 |
+
grid-column-start: 11; }
|
| 460 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 461 |
+
grid-column-start: 11; }
|
| 462 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 463 |
+
grid-column-start: 11; }
|
| 464 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 465 |
+
grid-column-start: 12; }
|
| 466 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 467 |
+
grid-column-start: 12; }
|
| 468 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 469 |
+
grid-column-start: 12; }
|
| 470 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 471 |
+
grid-column-start: 12; }
|
| 472 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 473 |
+
grid-column-end: span 1; }
|
| 474 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 475 |
+
grid-column-end: span 1; }
|
| 476 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 477 |
+
grid-column-end: span 1; }
|
| 478 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 479 |
+
grid-column-end: span 1; }
|
| 480 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 481 |
+
grid-column-end: span 2; }
|
| 482 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 483 |
+
grid-column-end: span 2; }
|
| 484 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 485 |
+
grid-column-end: span 2; }
|
| 486 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 487 |
+
grid-column-end: span 2; }
|
| 488 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 489 |
+
grid-column-end: span 3; }
|
| 490 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 491 |
+
grid-column-end: span 3; }
|
| 492 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 493 |
+
grid-column-end: span 3; }
|
| 494 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 495 |
+
grid-column-end: span 3; }
|
| 496 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 497 |
+
grid-column-end: span 4; }
|
| 498 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 499 |
+
grid-column-end: span 4; }
|
| 500 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 501 |
+
grid-column-end: span 4; }
|
| 502 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 503 |
+
grid-column-end: span 4; }
|
| 504 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 505 |
+
grid-column-end: span 5; }
|
| 506 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 507 |
+
grid-column-end: span 5; }
|
| 508 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 509 |
+
grid-column-end: span 5; }
|
| 510 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 511 |
+
grid-column-end: span 5; }
|
| 512 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 513 |
+
grid-column-end: span 6; }
|
| 514 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 515 |
+
grid-column-end: span 6; }
|
| 516 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 517 |
+
grid-column-end: span 6; }
|
| 518 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 519 |
+
grid-column-end: span 6; }
|
| 520 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 521 |
+
grid-column-end: span 7; }
|
| 522 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 523 |
+
grid-column-end: span 7; }
|
| 524 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 525 |
+
grid-column-end: span 7; }
|
| 526 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 527 |
+
grid-column-end: span 7; }
|
| 528 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 529 |
+
grid-column-end: span 8; }
|
| 530 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 531 |
+
grid-column-end: span 8; }
|
| 532 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 533 |
+
grid-column-end: span 8; }
|
| 534 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 535 |
+
grid-column-end: span 8; }
|
| 536 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 537 |
+
grid-column-end: span 9; }
|
| 538 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 539 |
+
grid-column-end: span 9; }
|
| 540 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 541 |
+
grid-column-end: span 9; }
|
| 542 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 543 |
+
grid-column-end: span 9; }
|
| 544 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 545 |
+
grid-column-end: span 10; }
|
| 546 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 547 |
+
grid-column-end: span 10; }
|
| 548 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 549 |
+
grid-column-end: span 10; }
|
| 550 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 551 |
+
grid-column-end: span 10; }
|
| 552 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 553 |
+
grid-column-end: span 11; }
|
| 554 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 555 |
+
grid-column-end: span 11; }
|
| 556 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 557 |
+
grid-column-end: span 11; }
|
| 558 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 559 |
+
grid-column-end: span 11; }
|
| 560 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 561 |
+
grid-column-end: span 12; }
|
| 562 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 563 |
+
grid-column-end: span 12; }
|
| 564 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 565 |
+
grid-column-end: span 12; }
|
| 566 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 567 |
+
grid-column-end: span 12; }
|
| 568 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 569 |
+
grid-row-start: 1; }
|
| 570 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 571 |
+
grid-row-start: 1; }
|
| 572 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 573 |
+
grid-row-start: 1; }
|
| 574 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 575 |
+
grid-row-start: 1; }
|
| 576 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 577 |
+
grid-row-start: 2; }
|
| 578 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 579 |
+
grid-row-start: 2; }
|
| 580 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 581 |
+
grid-row-start: 2; }
|
| 582 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 583 |
+
grid-row-start: 2; }
|
| 584 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 585 |
+
grid-row-start: 3; }
|
| 586 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 587 |
+
grid-row-start: 3; }
|
| 588 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 589 |
+
grid-row-start: 3; }
|
| 590 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 591 |
+
grid-row-start: 3; }
|
| 592 |
+
.wp-block-jetpack-layout-grid.column1-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 593 |
+
grid-row-start: 4; }
|
| 594 |
+
.wp-block-jetpack-layout-grid.column2-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 595 |
+
grid-row-start: 4; }
|
| 596 |
+
.wp-block-jetpack-layout-grid.column3-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 597 |
+
grid-row-start: 4; }
|
| 598 |
+
.wp-block-jetpack-layout-grid.column4-tablet-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 599 |
+
grid-row-start: 4; } }
|
| 600 |
+
@media (min-width: 1080px) {
|
| 601 |
+
.wp-block-jetpack-layout-grid {
|
| 602 |
+
grid-template-columns: repeat(12, 1fr); }
|
| 603 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 604 |
+
grid-column-start: 1; }
|
| 605 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 606 |
+
grid-column-start: 1; }
|
| 607 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 608 |
+
grid-column-start: 1; }
|
| 609 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 610 |
+
grid-column-start: 1; }
|
| 611 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 612 |
+
grid-column-start: 2; }
|
| 613 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 614 |
+
grid-column-start: 2; }
|
| 615 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 616 |
+
grid-column-start: 2; }
|
| 617 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 618 |
+
grid-column-start: 2; }
|
| 619 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 620 |
+
grid-column-start: 3; }
|
| 621 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 622 |
+
grid-column-start: 3; }
|
| 623 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 624 |
+
grid-column-start: 3; }
|
| 625 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 626 |
+
grid-column-start: 3; }
|
| 627 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 628 |
+
grid-column-start: 4; }
|
| 629 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 630 |
+
grid-column-start: 4; }
|
| 631 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 632 |
+
grid-column-start: 4; }
|
| 633 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 634 |
+
grid-column-start: 4; }
|
| 635 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 636 |
+
grid-column-start: 5; }
|
| 637 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 638 |
+
grid-column-start: 5; }
|
| 639 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 640 |
+
grid-column-start: 5; }
|
| 641 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 642 |
+
grid-column-start: 5; }
|
| 643 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 644 |
+
grid-column-start: 6; }
|
| 645 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 646 |
+
grid-column-start: 6; }
|
| 647 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 648 |
+
grid-column-start: 6; }
|
| 649 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 650 |
+
grid-column-start: 6; }
|
| 651 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 652 |
+
grid-column-start: 7; }
|
| 653 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 654 |
+
grid-column-start: 7; }
|
| 655 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 656 |
+
grid-column-start: 7; }
|
| 657 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 658 |
+
grid-column-start: 7; }
|
| 659 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 660 |
+
grid-column-start: 8; }
|
| 661 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 662 |
+
grid-column-start: 8; }
|
| 663 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 664 |
+
grid-column-start: 8; }
|
| 665 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 666 |
+
grid-column-start: 8; }
|
| 667 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 668 |
+
grid-column-start: 9; }
|
| 669 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 670 |
+
grid-column-start: 9; }
|
| 671 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 672 |
+
grid-column-start: 9; }
|
| 673 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 674 |
+
grid-column-start: 9; }
|
| 675 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 676 |
+
grid-column-start: 10; }
|
| 677 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 678 |
+
grid-column-start: 10; }
|
| 679 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 680 |
+
grid-column-start: 10; }
|
| 681 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 682 |
+
grid-column-start: 10; }
|
| 683 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 684 |
+
grid-column-start: 11; }
|
| 685 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 686 |
+
grid-column-start: 11; }
|
| 687 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 688 |
+
grid-column-start: 11; }
|
| 689 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 690 |
+
grid-column-start: 11; }
|
| 691 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 692 |
+
grid-column-start: 12; }
|
| 693 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 694 |
+
grid-column-start: 12; }
|
| 695 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 696 |
+
grid-column-start: 12; }
|
| 697 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__start-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 698 |
+
grid-column-start: 12; }
|
| 699 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 700 |
+
grid-column-end: span 1; }
|
| 701 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 702 |
+
grid-column-end: span 1; }
|
| 703 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 704 |
+
grid-column-end: span 1; }
|
| 705 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 706 |
+
grid-column-end: span 1; }
|
| 707 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 708 |
+
grid-column-end: span 2; }
|
| 709 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 710 |
+
grid-column-end: span 2; }
|
| 711 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 712 |
+
grid-column-end: span 2; }
|
| 713 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 714 |
+
grid-column-end: span 2; }
|
| 715 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 716 |
+
grid-column-end: span 3; }
|
| 717 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 718 |
+
grid-column-end: span 3; }
|
| 719 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 720 |
+
grid-column-end: span 3; }
|
| 721 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 722 |
+
grid-column-end: span 3; }
|
| 723 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 724 |
+
grid-column-end: span 4; }
|
| 725 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 726 |
+
grid-column-end: span 4; }
|
| 727 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 728 |
+
grid-column-end: span 4; }
|
| 729 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 730 |
+
grid-column-end: span 4; }
|
| 731 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 732 |
+
grid-column-end: span 5; }
|
| 733 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 734 |
+
grid-column-end: span 5; }
|
| 735 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 736 |
+
grid-column-end: span 5; }
|
| 737 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-5 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 738 |
+
grid-column-end: span 5; }
|
| 739 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 740 |
+
grid-column-end: span 6; }
|
| 741 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 742 |
+
grid-column-end: span 6; }
|
| 743 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 744 |
+
grid-column-end: span 6; }
|
| 745 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-6 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 746 |
+
grid-column-end: span 6; }
|
| 747 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 748 |
+
grid-column-end: span 7; }
|
| 749 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 750 |
+
grid-column-end: span 7; }
|
| 751 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 752 |
+
grid-column-end: span 7; }
|
| 753 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-7 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 754 |
+
grid-column-end: span 7; }
|
| 755 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 756 |
+
grid-column-end: span 8; }
|
| 757 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 758 |
+
grid-column-end: span 8; }
|
| 759 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 760 |
+
grid-column-end: span 8; }
|
| 761 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-8 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 762 |
+
grid-column-end: span 8; }
|
| 763 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 764 |
+
grid-column-end: span 9; }
|
| 765 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 766 |
+
grid-column-end: span 9; }
|
| 767 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 768 |
+
grid-column-end: span 9; }
|
| 769 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-9 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 770 |
+
grid-column-end: span 9; }
|
| 771 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 772 |
+
grid-column-end: span 10; }
|
| 773 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 774 |
+
grid-column-end: span 10; }
|
| 775 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 776 |
+
grid-column-end: span 10; }
|
| 777 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-10 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 778 |
+
grid-column-end: span 10; }
|
| 779 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 780 |
+
grid-column-end: span 11; }
|
| 781 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 782 |
+
grid-column-end: span 11; }
|
| 783 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 784 |
+
grid-column-end: span 11; }
|
| 785 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-11 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 786 |
+
grid-column-end: span 11; }
|
| 787 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 788 |
+
grid-column-end: span 12; }
|
| 789 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 790 |
+
grid-column-end: span 12; }
|
| 791 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 792 |
+
grid-column-end: span 12; }
|
| 793 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__span-12 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 794 |
+
grid-column-end: span 12; }
|
| 795 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 796 |
+
grid-row-start: 1; }
|
| 797 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 798 |
+
grid-row-start: 1; }
|
| 799 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 800 |
+
grid-row-start: 1; }
|
| 801 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-1 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 802 |
+
grid-row-start: 1; }
|
| 803 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 804 |
+
grid-row-start: 2; }
|
| 805 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 806 |
+
grid-row-start: 2; }
|
| 807 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 808 |
+
grid-row-start: 2; }
|
| 809 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-2 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 810 |
+
grid-row-start: 2; }
|
| 811 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 812 |
+
grid-row-start: 3; }
|
| 813 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 814 |
+
grid-row-start: 3; }
|
| 815 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 816 |
+
grid-row-start: 3; }
|
| 817 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-3 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 818 |
+
grid-row-start: 3; }
|
| 819 |
+
.wp-block-jetpack-layout-grid.column1-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(1) {
|
| 820 |
+
grid-row-start: 4; }
|
| 821 |
+
.wp-block-jetpack-layout-grid.column2-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(2) {
|
| 822 |
+
grid-row-start: 4; }
|
| 823 |
+
.wp-block-jetpack-layout-grid.column3-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(3) {
|
| 824 |
+
grid-row-start: 4; }
|
| 825 |
+
.wp-block-jetpack-layout-grid.column4-desktop-grid__row-4 > .wp-block-jetpack-layout-grid-column:nth-child(4) {
|
| 826 |
+
grid-row-start: 4; } }
|
| 827 |
+
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column * {
|
| 828 |
+
word-break: break-word;
|
| 829 |
+
word-wrap: break-word; }
|
| 830 |
+
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
|
| 831 |
+
grid-gap: 0px; }
|
| 832 |
+
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
|
| 833 |
+
grid-gap: 8px; }
|
| 834 |
+
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
|
| 835 |
+
grid-gap: 16px; }
|
| 836 |
+
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
|
| 837 |
+
grid-gap: 48px; }
|
| 838 |
+
|
| 839 |
+
.wp-block-jetpack-layout-grid-column {
|
| 840 |
+
max-width: 100%; }
|
