Version Description
- 12th December 2019 =
- Fix grid values being ignored in the 7.1.0 editor
- Fix cropping of grid when inside a group block
Download this release
Release Info
Developer | mkaz |
Plugin | Layout Grid Block |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- editor.css +121 -122
- index.php +1 -1
- readme.txt +10 -2
editor.css
CHANGED
@@ -75,14 +75,11 @@ body.is-resizing [data-type="jetpack/layout-grid"] {
|
|
75 |
[data-type="jetpack/layout-grid"][data-align="full"].has-child-selected > .block-editor-block-list__block-edit,
|
76 |
[data-type="jetpack/layout-grid"][data-align="full"].is-selected > .block-editor-block-list__block-edit,
|
77 |
body.is-resizing [data-type="jetpack/layout-grid"][data-align="full"] > .block-editor-block-list__block-edit {
|
78 |
-
width: 100
|
79 |
-
|
80 |
-
[data-type="jetpack/layout-grid"][data-align="full"].
|
81 |
-
[data-type="jetpack/layout-grid"][data-align="full"]
|
82 |
-
|
83 |
-
border-left-width: 1px;
|
84 |
-
border-right-width: 1px;
|
85 |
-
border-style: solid; }
|
86 |
|
87 |
/**
|
88 |
* Grid columns
|
@@ -107,364 +104,364 @@ body.is-resizing [data-type="jetpack/layout-grid"][data-align="full"] > .block-e
|
|
107 |
touch-action: none;
|
108 |
user-select: none; }
|
109 |
.wp-block-jetpack-layout-grid.column1-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
110 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
111 |
grid-column-start: 1; }
|
112 |
.wp-block-jetpack-layout-grid.column2-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
113 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
114 |
grid-column-start: 1; }
|
115 |
.wp-block-jetpack-layout-grid.column3-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
116 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
117 |
grid-column-start: 1; }
|
118 |
.wp-block-jetpack-layout-grid.column4-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
119 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
120 |
grid-column-start: 1; }
|
121 |
.wp-block-jetpack-layout-grid.column1-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
122 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
123 |
grid-column-start: 2; }
|
124 |
.wp-block-jetpack-layout-grid.column2-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
125 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
126 |
grid-column-start: 2; }
|
127 |
.wp-block-jetpack-layout-grid.column3-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
128 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
129 |
grid-column-start: 2; }
|
130 |
.wp-block-jetpack-layout-grid.column4-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
131 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
132 |
grid-column-start: 2; }
|
133 |
.wp-block-jetpack-layout-grid.column1-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
134 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
135 |
grid-column-start: 3; }
|
136 |
.wp-block-jetpack-layout-grid.column2-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
137 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
138 |
grid-column-start: 3; }
|
139 |
.wp-block-jetpack-layout-grid.column3-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
140 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
141 |
grid-column-start: 3; }
|
142 |
.wp-block-jetpack-layout-grid.column4-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
143 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
144 |
grid-column-start: 3; }
|
145 |
.wp-block-jetpack-layout-grid.column1-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
146 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
147 |
grid-column-start: 4; }
|
148 |
.wp-block-jetpack-layout-grid.column2-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
149 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
150 |
grid-column-start: 4; }
|
151 |
.wp-block-jetpack-layout-grid.column3-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
152 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
153 |
grid-column-start: 4; }
|
154 |
.wp-block-jetpack-layout-grid.column4-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
155 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
156 |
grid-column-start: 4; }
|
157 |
.wp-block-jetpack-layout-grid.column1-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
158 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
159 |
grid-column-start: 5; }
|
160 |
.wp-block-jetpack-layout-grid.column2-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
161 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
162 |
grid-column-start: 5; }
|
163 |
.wp-block-jetpack-layout-grid.column3-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
164 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
165 |
grid-column-start: 5; }
|
166 |
.wp-block-jetpack-layout-grid.column4-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
167 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
168 |
grid-column-start: 5; }
|
169 |
.wp-block-jetpack-layout-grid.column1-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
170 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
171 |
grid-column-start: 6; }
|
172 |
.wp-block-jetpack-layout-grid.column2-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
173 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
174 |
grid-column-start: 6; }
|
175 |
.wp-block-jetpack-layout-grid.column3-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
176 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
177 |
grid-column-start: 6; }
|
178 |
.wp-block-jetpack-layout-grid.column4-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
179 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
180 |
grid-column-start: 6; }
|
181 |
.wp-block-jetpack-layout-grid.column1-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
182 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
183 |
grid-column-start: 7; }
|
184 |
.wp-block-jetpack-layout-grid.column2-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
185 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
186 |
grid-column-start: 7; }
|
187 |
.wp-block-jetpack-layout-grid.column3-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
188 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
189 |
grid-column-start: 7; }
|
190 |
.wp-block-jetpack-layout-grid.column4-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
191 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
192 |
grid-column-start: 7; }
|
193 |
.wp-block-jetpack-layout-grid.column1-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
194 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
195 |
grid-column-start: 8; }
|
196 |
.wp-block-jetpack-layout-grid.column2-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
197 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
198 |
grid-column-start: 8; }
|
199 |
.wp-block-jetpack-layout-grid.column3-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
200 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
201 |
grid-column-start: 8; }
|
202 |
.wp-block-jetpack-layout-grid.column4-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
203 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
204 |
grid-column-start: 8; }
|
205 |
.wp-block-jetpack-layout-grid.column1-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
206 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
207 |
grid-column-start: 9; }
|
208 |
.wp-block-jetpack-layout-grid.column2-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
209 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
210 |
grid-column-start: 9; }
|
211 |
.wp-block-jetpack-layout-grid.column3-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
212 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
213 |
grid-column-start: 9; }
|
214 |
.wp-block-jetpack-layout-grid.column4-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
215 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
216 |
grid-column-start: 9; }
|
217 |
.wp-block-jetpack-layout-grid.column1-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
218 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
219 |
grid-column-start: 10; }
|
220 |
.wp-block-jetpack-layout-grid.column2-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
221 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
222 |
grid-column-start: 10; }
|
223 |
.wp-block-jetpack-layout-grid.column3-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
224 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
225 |
grid-column-start: 10; }
|
226 |
.wp-block-jetpack-layout-grid.column4-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
227 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
228 |
grid-column-start: 10; }
|
229 |
.wp-block-jetpack-layout-grid.column1-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
230 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
231 |
grid-column-start: 11; }
|
232 |
.wp-block-jetpack-layout-grid.column2-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
233 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
234 |
grid-column-start: 11; }
|
235 |
.wp-block-jetpack-layout-grid.column3-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
236 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
237 |
grid-column-start: 11; }
|
238 |
.wp-block-jetpack-layout-grid.column4-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
239 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
240 |
grid-column-start: 11; }
|
241 |
.wp-block-jetpack-layout-grid.column1-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
242 |
-
.wp-block-jetpack-layout-grid.column1-grid__start-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
243 |
grid-column-start: 12; }
|
244 |
.wp-block-jetpack-layout-grid.column2-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
245 |
-
.wp-block-jetpack-layout-grid.column2-grid__start-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
246 |
grid-column-start: 12; }
|
247 |
.wp-block-jetpack-layout-grid.column3-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
248 |
-
.wp-block-jetpack-layout-grid.column3-grid__start-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
249 |
grid-column-start: 12; }
|
250 |
.wp-block-jetpack-layout-grid.column4-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
251 |
-
.wp-block-jetpack-layout-grid.column4-grid__start-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
252 |
grid-column-start: 12; }
|
253 |
.wp-block-jetpack-layout-grid.column1-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
254 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
255 |
grid-column-end: span 1; }
|
256 |
.wp-block-jetpack-layout-grid.column2-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
257 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
258 |
grid-column-end: span 1; }
|
259 |
.wp-block-jetpack-layout-grid.column3-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
260 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
261 |
grid-column-end: span 1; }
|
262 |
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
263 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
264 |
grid-column-end: span 1; }
|
265 |
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
266 |
grid-column-end: span 1; }
|
267 |
.wp-block-jetpack-layout-grid.column1-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
268 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
269 |
grid-column-end: span 2; }
|
270 |
.wp-block-jetpack-layout-grid.column2-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
271 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
272 |
grid-column-end: span 2; }
|
273 |
.wp-block-jetpack-layout-grid.column3-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
274 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
275 |
grid-column-end: span 2; }
|
276 |
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
277 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
278 |
grid-column-end: span 2; }
|
279 |
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
280 |
grid-column-end: span 2; }
|
281 |
.wp-block-jetpack-layout-grid.column1-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
282 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
283 |
grid-column-end: span 3; }
|
284 |
.wp-block-jetpack-layout-grid.column2-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
285 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
286 |
grid-column-end: span 3; }
|
287 |
.wp-block-jetpack-layout-grid.column3-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
288 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
289 |
grid-column-end: span 3; }
|
290 |
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
291 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
292 |
grid-column-end: span 3; }
|
293 |
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
294 |
grid-column-end: span 3; }
|
295 |
.wp-block-jetpack-layout-grid.column1-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
296 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
297 |
grid-column-end: span 4; }
|
298 |
.wp-block-jetpack-layout-grid.column2-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
299 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
300 |
grid-column-end: span 4; }
|
301 |
.wp-block-jetpack-layout-grid.column3-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
302 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
303 |
grid-column-end: span 4; }
|
304 |
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
305 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
306 |
grid-column-end: span 4; }
|
307 |
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
308 |
grid-column-end: span 4; }
|
309 |
.wp-block-jetpack-layout-grid.column1-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
310 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
311 |
grid-column-end: span 5; }
|
312 |
.wp-block-jetpack-layout-grid.column2-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
313 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
314 |
grid-column-end: span 5; }
|
315 |
.wp-block-jetpack-layout-grid.column3-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
316 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
317 |
grid-column-end: span 5; }
|
318 |
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
319 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
320 |
grid-column-end: span 5; }
|
321 |
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
322 |
grid-column-end: span 5; }
|
323 |
.wp-block-jetpack-layout-grid.column1-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
324 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
325 |
grid-column-end: span 6; }
|
326 |
.wp-block-jetpack-layout-grid.column2-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
327 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
328 |
grid-column-end: span 6; }
|
329 |
.wp-block-jetpack-layout-grid.column3-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
330 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
331 |
grid-column-end: span 6; }
|
332 |
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
333 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
334 |
grid-column-end: span 6; }
|
335 |
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
336 |
grid-column-end: span 6; }
|
337 |
.wp-block-jetpack-layout-grid.column1-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
338 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
339 |
grid-column-end: span 7; }
|
340 |
.wp-block-jetpack-layout-grid.column2-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
341 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
342 |
grid-column-end: span 7; }
|
343 |
.wp-block-jetpack-layout-grid.column3-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
344 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
345 |
grid-column-end: span 7; }
|
346 |
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
347 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
348 |
grid-column-end: span 7; }
|
349 |
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
350 |
grid-column-end: span 7; }
|
351 |
.wp-block-jetpack-layout-grid.column1-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
352 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
353 |
grid-column-end: span 8; }
|
354 |
.wp-block-jetpack-layout-grid.column2-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
355 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
356 |
grid-column-end: span 8; }
|
357 |
.wp-block-jetpack-layout-grid.column3-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
358 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
359 |
grid-column-end: span 8; }
|
360 |
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
361 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
362 |
grid-column-end: span 8; }
|
363 |
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
364 |
grid-column-end: span 8; }
|
365 |
.wp-block-jetpack-layout-grid.column1-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
366 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
367 |
grid-column-end: span 9; }
|
368 |
.wp-block-jetpack-layout-grid.column2-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
369 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
370 |
grid-column-end: span 9; }
|
371 |
.wp-block-jetpack-layout-grid.column3-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
372 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
373 |
grid-column-end: span 9; }
|
374 |
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
375 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
376 |
grid-column-end: span 9; }
|
377 |
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
378 |
grid-column-end: span 9; }
|
379 |
.wp-block-jetpack-layout-grid.column1-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
380 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
381 |
grid-column-end: span 10; }
|
382 |
.wp-block-jetpack-layout-grid.column2-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
383 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
384 |
grid-column-end: span 10; }
|
385 |
.wp-block-jetpack-layout-grid.column3-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
386 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
387 |
grid-column-end: span 10; }
|
388 |
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
389 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
390 |
grid-column-end: span 10; }
|
391 |
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
392 |
grid-column-end: span 10; }
|
393 |
.wp-block-jetpack-layout-grid.column1-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
394 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
395 |
grid-column-end: span 11; }
|
396 |
.wp-block-jetpack-layout-grid.column2-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
397 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
398 |
grid-column-end: span 11; }
|
399 |
.wp-block-jetpack-layout-grid.column3-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
400 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
401 |
grid-column-end: span 11; }
|
402 |
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
403 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
404 |
grid-column-end: span 11; }
|
405 |
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
406 |
grid-column-end: span 11; }
|
407 |
.wp-block-jetpack-layout-grid.column1-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
408 |
-
.wp-block-jetpack-layout-grid.column1-grid__span-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
409 |
grid-column-end: span 12; }
|
410 |
.wp-block-jetpack-layout-grid.column2-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
411 |
-
.wp-block-jetpack-layout-grid.column2-grid__span-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
412 |
grid-column-end: span 12; }
|
413 |
.wp-block-jetpack-layout-grid.column3-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
414 |
-
.wp-block-jetpack-layout-grid.column3-grid__span-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
415 |
grid-column-end: span 12; }
|
416 |
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
417 |
-
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
418 |
grid-column-end: span 12; }
|
419 |
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
420 |
grid-column-end: span 12; }
|
421 |
.wp-block-jetpack-layout-grid.column1-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
422 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
423 |
grid-row-start: 1; }
|
424 |
.wp-block-jetpack-layout-grid.column2-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
425 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
426 |
grid-row-start: 1; }
|
427 |
.wp-block-jetpack-layout-grid.column3-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
428 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
429 |
grid-row-start: 1; }
|
430 |
.wp-block-jetpack-layout-grid.column4-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
431 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-1 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
432 |
grid-row-start: 1; }
|
433 |
.wp-block-jetpack-layout-grid.column1-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
434 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
435 |
grid-row-start: 2; }
|
436 |
.wp-block-jetpack-layout-grid.column2-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
437 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
438 |
grid-row-start: 2; }
|
439 |
.wp-block-jetpack-layout-grid.column3-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
440 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
441 |
grid-row-start: 2; }
|
442 |
.wp-block-jetpack-layout-grid.column4-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
443 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-2 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
444 |
grid-row-start: 2; }
|
445 |
.wp-block-jetpack-layout-grid.column1-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
446 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
447 |
grid-row-start: 3; }
|
448 |
.wp-block-jetpack-layout-grid.column2-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
449 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
450 |
grid-row-start: 3; }
|
451 |
.wp-block-jetpack-layout-grid.column3-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
452 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
453 |
grid-row-start: 3; }
|
454 |
.wp-block-jetpack-layout-grid.column4-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
455 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-3 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
456 |
grid-row-start: 3; }
|
457 |
.wp-block-jetpack-layout-grid.column1-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
458 |
-
.wp-block-jetpack-layout-grid.column1-grid__row-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(1) {
|
459 |
grid-row-start: 4; }
|
460 |
.wp-block-jetpack-layout-grid.column2-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
461 |
-
.wp-block-jetpack-layout-grid.column2-grid__row-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(2) {
|
462 |
grid-row-start: 4; }
|
463 |
.wp-block-jetpack-layout-grid.column3-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
464 |
-
.wp-block-jetpack-layout-grid.column3-grid__row-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(3) {
|
465 |
grid-row-start: 4; }
|
466 |
.wp-block-jetpack-layout-grid.column4-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
467 |
-
.wp-block-jetpack-layout-grid.column4-grid__row-4 > .block-editor-inner-blocks > .editor-block-list__layout > .wp-block:nth-child(4) {
|
468 |
grid-row-start: 4; }
|
469 |
|
470 |
/**
|
@@ -570,8 +567,10 @@ body.is-resizing [data-type="jetpack/layout-grid"][data-align="full"] > .block-e
|
|
570 |
flex-direction: column;
|
571 |
align-items: center; }
|
572 |
[data-type="jetpack/layout-grid"][data-align="full"] > .block-editor-block-list__block-edit {
|
573 |
-
|
574 |
-
|
|
|
|
|
575 |
|
576 |
[data-type="jetpack/layout-grid"] > .block-editor-block-list__block-edit > .block-editor-block-contextual-toolbar > .block-editor-block-toolbar > .block-editor-block-switcher + .block-editor-block-toolbar__slot {
|
577 |
display: none; }
|
75 |
[data-type="jetpack/layout-grid"][data-align="full"].has-child-selected > .block-editor-block-list__block-edit,
|
76 |
[data-type="jetpack/layout-grid"][data-align="full"].is-selected > .block-editor-block-list__block-edit,
|
77 |
body.is-resizing [data-type="jetpack/layout-grid"][data-align="full"] > .block-editor-block-list__block-edit {
|
78 |
+
width: calc( 100% + 30px + 30px + 8px); }
|
79 |
+
.wp-block-group [data-type="jetpack/layout-grid"][data-align="full"].has-child-selected > .block-editor-block-list__block-edit, .wp-block-group
|
80 |
+
[data-type="jetpack/layout-grid"][data-align="full"].is-selected > .block-editor-block-list__block-edit, .wp-block-group
|
81 |
+
body.is-resizing [data-type="jetpack/layout-grid"][data-align="full"] > .block-editor-block-list__block-edit {
|
82 |
+
width: calc( 100% - 28px - 28px - 8px); }
|
|
|
|
|
|
|
83 |
|
84 |
/**
|
85 |
* Grid columns
|
104 |
touch-action: none;
|
105 |
user-select: none; }
|
106 |
.wp-block-jetpack-layout-grid.column1-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
107 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
108 |
grid-column-start: 1; }
|
109 |
.wp-block-jetpack-layout-grid.column2-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
110 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
111 |
grid-column-start: 1; }
|
112 |
.wp-block-jetpack-layout-grid.column3-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
113 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
114 |
grid-column-start: 1; }
|
115 |
.wp-block-jetpack-layout-grid.column4-grid__start-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
116 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
117 |
grid-column-start: 1; }
|
118 |
.wp-block-jetpack-layout-grid.column1-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
119 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
120 |
grid-column-start: 2; }
|
121 |
.wp-block-jetpack-layout-grid.column2-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
122 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
123 |
grid-column-start: 2; }
|
124 |
.wp-block-jetpack-layout-grid.column3-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
125 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
126 |
grid-column-start: 2; }
|
127 |
.wp-block-jetpack-layout-grid.column4-grid__start-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
128 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
129 |
grid-column-start: 2; }
|
130 |
.wp-block-jetpack-layout-grid.column1-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
131 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
132 |
grid-column-start: 3; }
|
133 |
.wp-block-jetpack-layout-grid.column2-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
134 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
135 |
grid-column-start: 3; }
|
136 |
.wp-block-jetpack-layout-grid.column3-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
137 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
138 |
grid-column-start: 3; }
|
139 |
.wp-block-jetpack-layout-grid.column4-grid__start-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
140 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
141 |
grid-column-start: 3; }
|
142 |
.wp-block-jetpack-layout-grid.column1-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
143 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
144 |
grid-column-start: 4; }
|
145 |
.wp-block-jetpack-layout-grid.column2-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
146 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
147 |
grid-column-start: 4; }
|
148 |
.wp-block-jetpack-layout-grid.column3-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
149 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
150 |
grid-column-start: 4; }
|
151 |
.wp-block-jetpack-layout-grid.column4-grid__start-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
152 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
153 |
grid-column-start: 4; }
|
154 |
.wp-block-jetpack-layout-grid.column1-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
155 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
156 |
grid-column-start: 5; }
|
157 |
.wp-block-jetpack-layout-grid.column2-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
158 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
159 |
grid-column-start: 5; }
|
160 |
.wp-block-jetpack-layout-grid.column3-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
161 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
162 |
grid-column-start: 5; }
|
163 |
.wp-block-jetpack-layout-grid.column4-grid__start-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
164 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
165 |
grid-column-start: 5; }
|
166 |
.wp-block-jetpack-layout-grid.column1-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
167 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
168 |
grid-column-start: 6; }
|
169 |
.wp-block-jetpack-layout-grid.column2-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
170 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
171 |
grid-column-start: 6; }
|
172 |
.wp-block-jetpack-layout-grid.column3-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
173 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
174 |
grid-column-start: 6; }
|
175 |
.wp-block-jetpack-layout-grid.column4-grid__start-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
176 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
177 |
grid-column-start: 6; }
|
178 |
.wp-block-jetpack-layout-grid.column1-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
179 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
180 |
grid-column-start: 7; }
|
181 |
.wp-block-jetpack-layout-grid.column2-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
182 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
183 |
grid-column-start: 7; }
|
184 |
.wp-block-jetpack-layout-grid.column3-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
185 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
186 |
grid-column-start: 7; }
|
187 |
.wp-block-jetpack-layout-grid.column4-grid__start-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
188 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
189 |
grid-column-start: 7; }
|
190 |
.wp-block-jetpack-layout-grid.column1-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
191 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
192 |
grid-column-start: 8; }
|
193 |
.wp-block-jetpack-layout-grid.column2-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
194 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
195 |
grid-column-start: 8; }
|
196 |
.wp-block-jetpack-layout-grid.column3-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
197 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
198 |
grid-column-start: 8; }
|
199 |
.wp-block-jetpack-layout-grid.column4-grid__start-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
200 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
201 |
grid-column-start: 8; }
|
202 |
.wp-block-jetpack-layout-grid.column1-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
203 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
204 |
grid-column-start: 9; }
|
205 |
.wp-block-jetpack-layout-grid.column2-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
206 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
207 |
grid-column-start: 9; }
|
208 |
.wp-block-jetpack-layout-grid.column3-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
209 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
210 |
grid-column-start: 9; }
|
211 |
.wp-block-jetpack-layout-grid.column4-grid__start-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
212 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
213 |
grid-column-start: 9; }
|
214 |
.wp-block-jetpack-layout-grid.column1-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
215 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
216 |
grid-column-start: 10; }
|
217 |
.wp-block-jetpack-layout-grid.column2-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
218 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
219 |
grid-column-start: 10; }
|
220 |
.wp-block-jetpack-layout-grid.column3-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
221 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
222 |
grid-column-start: 10; }
|
223 |
.wp-block-jetpack-layout-grid.column4-grid__start-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
224 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
225 |
grid-column-start: 10; }
|
226 |
.wp-block-jetpack-layout-grid.column1-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
227 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
228 |
grid-column-start: 11; }
|
229 |
.wp-block-jetpack-layout-grid.column2-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
230 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
231 |
grid-column-start: 11; }
|
232 |
.wp-block-jetpack-layout-grid.column3-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
233 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
234 |
grid-column-start: 11; }
|
235 |
.wp-block-jetpack-layout-grid.column4-grid__start-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
236 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
237 |
grid-column-start: 11; }
|
238 |
.wp-block-jetpack-layout-grid.column1-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
239 |
+
.wp-block-jetpack-layout-grid.column1-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
240 |
grid-column-start: 12; }
|
241 |
.wp-block-jetpack-layout-grid.column2-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
242 |
+
.wp-block-jetpack-layout-grid.column2-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
243 |
grid-column-start: 12; }
|
244 |
.wp-block-jetpack-layout-grid.column3-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
245 |
+
.wp-block-jetpack-layout-grid.column3-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
246 |
grid-column-start: 12; }
|
247 |
.wp-block-jetpack-layout-grid.column4-grid__start-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
248 |
+
.wp-block-jetpack-layout-grid.column4-grid__start-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
249 |
grid-column-start: 12; }
|
250 |
.wp-block-jetpack-layout-grid.column1-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
251 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
252 |
grid-column-end: span 1; }
|
253 |
.wp-block-jetpack-layout-grid.column2-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
254 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
255 |
grid-column-end: span 1; }
|
256 |
.wp-block-jetpack-layout-grid.column3-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
257 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
258 |
grid-column-end: span 1; }
|
259 |
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
260 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
261 |
grid-column-end: span 1; }
|
262 |
.wp-block-jetpack-layout-grid.column4-grid__span-1 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
263 |
grid-column-end: span 1; }
|
264 |
.wp-block-jetpack-layout-grid.column1-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
265 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
266 |
grid-column-end: span 2; }
|
267 |
.wp-block-jetpack-layout-grid.column2-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
268 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
269 |
grid-column-end: span 2; }
|
270 |
.wp-block-jetpack-layout-grid.column3-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
271 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
272 |
grid-column-end: span 2; }
|
273 |
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
274 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
275 |
grid-column-end: span 2; }
|
276 |
.wp-block-jetpack-layout-grid.column4-grid__span-2 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
277 |
grid-column-end: span 2; }
|
278 |
.wp-block-jetpack-layout-grid.column1-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
279 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
280 |
grid-column-end: span 3; }
|
281 |
.wp-block-jetpack-layout-grid.column2-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
282 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
283 |
grid-column-end: span 3; }
|
284 |
.wp-block-jetpack-layout-grid.column3-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
285 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
286 |
grid-column-end: span 3; }
|
287 |
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
288 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
289 |
grid-column-end: span 3; }
|
290 |
.wp-block-jetpack-layout-grid.column4-grid__span-3 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
291 |
grid-column-end: span 3; }
|
292 |
.wp-block-jetpack-layout-grid.column1-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
293 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
294 |
grid-column-end: span 4; }
|
295 |
.wp-block-jetpack-layout-grid.column2-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
296 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
297 |
grid-column-end: span 4; }
|
298 |
.wp-block-jetpack-layout-grid.column3-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
299 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
300 |
grid-column-end: span 4; }
|
301 |
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
302 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
303 |
grid-column-end: span 4; }
|
304 |
.wp-block-jetpack-layout-grid.column4-grid__span-4 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
305 |
grid-column-end: span 4; }
|
306 |
.wp-block-jetpack-layout-grid.column1-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
307 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
308 |
grid-column-end: span 5; }
|
309 |
.wp-block-jetpack-layout-grid.column2-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
310 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
311 |
grid-column-end: span 5; }
|
312 |
.wp-block-jetpack-layout-grid.column3-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
313 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
314 |
grid-column-end: span 5; }
|
315 |
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
316 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
317 |
grid-column-end: span 5; }
|
318 |
.wp-block-jetpack-layout-grid.column4-grid__span-5 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
319 |
grid-column-end: span 5; }
|
320 |
.wp-block-jetpack-layout-grid.column1-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
321 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
322 |
grid-column-end: span 6; }
|
323 |
.wp-block-jetpack-layout-grid.column2-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
324 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
325 |
grid-column-end: span 6; }
|
326 |
.wp-block-jetpack-layout-grid.column3-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
327 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
328 |
grid-column-end: span 6; }
|
329 |
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
330 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
331 |
grid-column-end: span 6; }
|
332 |
.wp-block-jetpack-layout-grid.column4-grid__span-6 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
333 |
grid-column-end: span 6; }
|
334 |
.wp-block-jetpack-layout-grid.column1-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
335 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
336 |
grid-column-end: span 7; }
|
337 |
.wp-block-jetpack-layout-grid.column2-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
338 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
339 |
grid-column-end: span 7; }
|
340 |
.wp-block-jetpack-layout-grid.column3-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
341 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
342 |
grid-column-end: span 7; }
|
343 |
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
344 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
345 |
grid-column-end: span 7; }
|
346 |
.wp-block-jetpack-layout-grid.column4-grid__span-7 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
347 |
grid-column-end: span 7; }
|
348 |
.wp-block-jetpack-layout-grid.column1-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
349 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
350 |
grid-column-end: span 8; }
|
351 |
.wp-block-jetpack-layout-grid.column2-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
352 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
353 |
grid-column-end: span 8; }
|
354 |
.wp-block-jetpack-layout-grid.column3-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
355 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
356 |
grid-column-end: span 8; }
|
357 |
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
358 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
359 |
grid-column-end: span 8; }
|
360 |
.wp-block-jetpack-layout-grid.column4-grid__span-8 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
361 |
grid-column-end: span 8; }
|
362 |
.wp-block-jetpack-layout-grid.column1-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
363 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
364 |
grid-column-end: span 9; }
|
365 |
.wp-block-jetpack-layout-grid.column2-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
366 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
367 |
grid-column-end: span 9; }
|
368 |
.wp-block-jetpack-layout-grid.column3-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
369 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
370 |
grid-column-end: span 9; }
|
371 |
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
372 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
373 |
grid-column-end: span 9; }
|
374 |
.wp-block-jetpack-layout-grid.column4-grid__span-9 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
375 |
grid-column-end: span 9; }
|
376 |
.wp-block-jetpack-layout-grid.column1-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
377 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
378 |
grid-column-end: span 10; }
|
379 |
.wp-block-jetpack-layout-grid.column2-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
380 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
381 |
grid-column-end: span 10; }
|
382 |
.wp-block-jetpack-layout-grid.column3-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
383 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
384 |
grid-column-end: span 10; }
|
385 |
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
386 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
387 |
grid-column-end: span 10; }
|
388 |
.wp-block-jetpack-layout-grid.column4-grid__span-10 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
389 |
grid-column-end: span 10; }
|
390 |
.wp-block-jetpack-layout-grid.column1-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
391 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
392 |
grid-column-end: span 11; }
|
393 |
.wp-block-jetpack-layout-grid.column2-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
394 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
395 |
grid-column-end: span 11; }
|
396 |
.wp-block-jetpack-layout-grid.column3-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
397 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
398 |
grid-column-end: span 11; }
|
399 |
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
400 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
401 |
grid-column-end: span 11; }
|
402 |
.wp-block-jetpack-layout-grid.column4-grid__span-11 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
403 |
grid-column-end: span 11; }
|
404 |
.wp-block-jetpack-layout-grid.column1-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
405 |
+
.wp-block-jetpack-layout-grid.column1-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
406 |
grid-column-end: span 12; }
|
407 |
.wp-block-jetpack-layout-grid.column2-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
408 |
+
.wp-block-jetpack-layout-grid.column2-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
409 |
grid-column-end: span 12; }
|
410 |
.wp-block-jetpack-layout-grid.column3-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
411 |
+
.wp-block-jetpack-layout-grid.column3-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
412 |
grid-column-end: span 12; }
|
413 |
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
414 |
+
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
415 |
grid-column-end: span 12; }
|
416 |
.wp-block-jetpack-layout-grid.column4-grid__span-12 > .wpcom-resize-grid > .wp-block:nth-child(5) {
|
417 |
grid-column-end: span 12; }
|
418 |
.wp-block-jetpack-layout-grid.column1-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
419 |
+
.wp-block-jetpack-layout-grid.column1-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
420 |
grid-row-start: 1; }
|
421 |
.wp-block-jetpack-layout-grid.column2-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
422 |
+
.wp-block-jetpack-layout-grid.column2-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
423 |
grid-row-start: 1; }
|
424 |
.wp-block-jetpack-layout-grid.column3-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
425 |
+
.wp-block-jetpack-layout-grid.column3-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
426 |
grid-row-start: 1; }
|
427 |
.wp-block-jetpack-layout-grid.column4-grid__row-1 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
428 |
+
.wp-block-jetpack-layout-grid.column4-grid__row-1 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
429 |
grid-row-start: 1; }
|
430 |
.wp-block-jetpack-layout-grid.column1-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
431 |
+
.wp-block-jetpack-layout-grid.column1-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
432 |
grid-row-start: 2; }
|
433 |
.wp-block-jetpack-layout-grid.column2-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
434 |
+
.wp-block-jetpack-layout-grid.column2-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
435 |
grid-row-start: 2; }
|
436 |
.wp-block-jetpack-layout-grid.column3-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
437 |
+
.wp-block-jetpack-layout-grid.column3-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
438 |
grid-row-start: 2; }
|
439 |
.wp-block-jetpack-layout-grid.column4-grid__row-2 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
440 |
+
.wp-block-jetpack-layout-grid.column4-grid__row-2 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
441 |
grid-row-start: 2; }
|
442 |
.wp-block-jetpack-layout-grid.column1-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
443 |
+
.wp-block-jetpack-layout-grid.column1-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
444 |
grid-row-start: 3; }
|
445 |
.wp-block-jetpack-layout-grid.column2-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
446 |
+
.wp-block-jetpack-layout-grid.column2-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
447 |
grid-row-start: 3; }
|
448 |
.wp-block-jetpack-layout-grid.column3-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
449 |
+
.wp-block-jetpack-layout-grid.column3-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
450 |
grid-row-start: 3; }
|
451 |
.wp-block-jetpack-layout-grid.column4-grid__row-3 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
452 |
+
.wp-block-jetpack-layout-grid.column4-grid__row-3 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
453 |
grid-row-start: 3; }
|
454 |
.wp-block-jetpack-layout-grid.column1-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(1),
|
455 |
+
.wp-block-jetpack-layout-grid.column1-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(1) {
|
456 |
grid-row-start: 4; }
|
457 |
.wp-block-jetpack-layout-grid.column2-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(2),
|
458 |
+
.wp-block-jetpack-layout-grid.column2-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(2) {
|
459 |
grid-row-start: 4; }
|
460 |
.wp-block-jetpack-layout-grid.column3-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(3),
|
461 |
+
.wp-block-jetpack-layout-grid.column3-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(3) {
|
462 |
grid-row-start: 4; }
|
463 |
.wp-block-jetpack-layout-grid.column4-grid__row-4 > .wpcom-resize-grid > .wp-block:nth-child(4),
|
464 |
+
.wp-block-jetpack-layout-grid.column4-grid__row-4 > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block:nth-child(4) {
|
465 |
grid-row-start: 4; }
|
466 |
|
467 |
/**
|
567 |
flex-direction: column;
|
568 |
align-items: center; }
|
569 |
[data-type="jetpack/layout-grid"][data-align="full"] > .block-editor-block-list__block-edit {
|
570 |
+
transition: all .1s ease;
|
571 |
+
width: calc( 100% + 58px + 58px); }
|
572 |
+
.wp-block-group [data-type="jetpack/layout-grid"][data-align="full"] > .block-editor-block-list__block-edit {
|
573 |
+
width: 100%; }
|
574 |
|
575 |
[data-type="jetpack/layout-grid"] > .block-editor-block-list__block-edit > .block-editor-block-contextual-toolbar > .block-editor-block-toolbar > .block-editor-block-switcher + .block-editor-block-toolbar__slot {
|
576 |
display: none; }
|
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.0.
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com
|
8 |
* Text Domain: jetpack-layout-grid
|
2 |
/**
|
3 |
* Plugin Name: Layout Grid
|
4 |
* Description: Let any blocks align to a global grid
|
5 |
+
* Version: 1.0.3
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com
|
8 |
* Text Domain: jetpack-layout-grid
|
readme.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
=== Layout Grid Block ===
|
2 |
Contributors: automattic, jasmussen, johnny5, mkaz
|
3 |
-
Stable tag: 1.0.
|
4 |
-
Tested up to: 5.3
|
5 |
Requires at least: 5.3
|
6 |
License: GPLv2 or later
|
7 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -12,6 +12,10 @@ A Gutenberg container block to let you align items consistently across a global
|
|
12 |
|
13 |
Want to create a column-based layout with easily customizable column-width and positions? Or perhaps you want to align your content to a global layout grid across your post. With this Layout Grid block you can do both or either. There are also options to provide specific layouts to mobile or tablet breakpoints. Pick a number of columns (1-4), then go ahead and resize and position each column as you want them to look, for any screen. Optionally apply background colours and paddings to add emphasis.
|
14 |
|
|
|
|
|
|
|
|
|
15 |
== Screenshots ==
|
16 |
|
17 |
1. Grid layout selector.
|
@@ -19,6 +23,10 @@ Want to create a column-based layout with easily customizable column-width and p
|
|
19 |
|
20 |
== Changelog ==
|
21 |
|
|
|
|
|
|
|
|
|
22 |
= 1.0.2 - 28th November 2019 =
|
23 |
* Fix a bug with duplicate column spans
|
24 |
|
1 |
=== Layout Grid Block ===
|
2 |
Contributors: automattic, jasmussen, johnny5, mkaz
|
3 |
+
Stable tag: 1.0.3
|
4 |
+
Tested up to: 5.3.2
|
5 |
Requires at least: 5.3
|
6 |
License: GPLv2 or later
|
7 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
13 |
Want to create a column-based layout with easily customizable column-width and positions? Or perhaps you want to align your content to a global layout grid across your post. With this Layout Grid block you can do both or either. There are also options to provide specific layouts to mobile or tablet breakpoints. Pick a number of columns (1-4), then go ahead and resize and position each column as you want them to look, for any screen. Optionally apply background colours and paddings to add emphasis.
|
14 |
|
15 |
+
## Source and Support
|
16 |
+
|
17 |
+
You can follow development, file an issue, suggest features, and view the source at the Github repo: <a href="https://github.com/automattic/block-experiments">https://github.com/automattic/block-experiments</a>
|
18 |
+
|
19 |
== Screenshots ==
|
20 |
|
21 |
1. Grid layout selector.
|
23 |
|
24 |
== Changelog ==
|
25 |
|
26 |
+
= 1.0.3 - 12th December 2019 =
|
27 |
+
* Fix grid values being ignored in the 7.1.0 editor
|
28 |
+
* Fix cropping of grid when inside a group block
|
29 |
+
|
30 |
= 1.0.2 - 28th November 2019 =
|
31 |
* Fix a bug with duplicate column spans
|
32 |
|