9
|
1 |
/** |
|
2 |
* Colors |
|
3 |
*/ |
|
4 |
/** |
16
|
5 |
* Deprecated colors. |
|
6 |
* Please avoid using these. |
|
7 |
*/ |
|
8 |
/** |
9
|
9 |
* Breakpoints & Media Queries |
|
10 |
*/ |
|
11 |
/** |
16
|
12 |
* Colors |
|
13 |
*/ |
|
14 |
/** |
|
15 |
* Deprecated colors. |
|
16 |
* Please avoid using these. |
|
17 |
*/ |
|
18 |
/** |
|
19 |
* Fonts & basic variables. |
|
20 |
*/ |
|
21 |
/** |
|
22 |
* Grid System. |
|
23 |
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/ |
|
24 |
*/ |
|
25 |
/** |
|
26 |
* Dimensions. |
|
27 |
*/ |
|
28 |
/** |
|
29 |
* Shadows. |
|
30 |
*/ |
|
31 |
/** |
|
32 |
* Editor widths. |
|
33 |
*/ |
|
34 |
/** |
|
35 |
* Block UI. |
|
36 |
*/ |
|
37 |
/** |
|
38 |
* Border radii. |
9
|
39 |
*/ |
|
40 |
/** |
|
41 |
* Breakpoint mixins |
|
42 |
*/ |
|
43 |
/** |
|
44 |
* Long content fade mixin |
|
45 |
* |
|
46 |
* Creates a fading overlay to signify that the content is longer |
|
47 |
* than the space allows. |
|
48 |
*/ |
|
49 |
/** |
16
|
50 |
* Focus styles. |
9
|
51 |
*/ |
|
52 |
/** |
|
53 |
* Applies editor left position to the selector passed as argument |
|
54 |
*/ |
|
55 |
/** |
|
56 |
* Styles that are reused verbatim in a few places |
|
57 |
*/ |
|
58 |
/** |
|
59 |
* Allows users to opt-out of animations via OS-level preferences. |
|
60 |
*/ |
16
|
61 |
/** |
|
62 |
* Reset default styles for JavaScript UI based pages. |
|
63 |
* This is a WP-admin agnostic reset |
|
64 |
*/ |
|
65 |
/** |
|
66 |
* Reset the WP Admin page styles for Gutenberg-like pages. |
|
67 |
*/ |
|
68 |
:root { |
|
69 |
--wp-admin-theme-color: #007cba; |
|
70 |
--wp-admin-theme-color-darker-10: #006ba1; |
|
71 |
--wp-admin-theme-color-darker-20: #005a87; } |
|
72 |
|
|
73 |
#start-resizable-editor-section { |
|
74 |
display: none; } |
|
75 |
|
9
|
76 |
.block-editor ul.wp-block-archives { |
|
77 |
padding-left: 2.5em; } |
|
78 |
|
|
79 |
.wp-block-audio { |
16
|
80 |
margin-left: 0; |
|
81 |
margin-right: 0; } |
|
82 |
|
|
83 |
.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow__click-redirect { |
|
84 |
min-height: auto; } |
|
85 |
|
|
86 |
.edit-post-visual-editor .block-library-block__reusable-block-container .is-root-container { |
|
87 |
padding-left: 0; |
|
88 |
padding-right: 0; } |
9
|
89 |
|
16
|
90 |
.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow { |
|
91 |
display: block; } |
|
92 |
|
|
93 |
.edit-post-visual-editor .block-library-block__reusable-block-container .components-disabled .block-list-appender { |
|
94 |
display: none; } |
9
|
95 |
|
16
|
96 |
.wp-block[data-align="center"] > .wp-block-button { |
|
97 |
text-align: center; |
|
98 |
margin-left: auto; |
|
99 |
margin-right: auto; } |
|
100 |
|
|
101 |
.wp-block[data-align="right"] > .wp-block-button { |
9
|
102 |
/*!rtl:ignore*/ |
|
103 |
text-align: right; } |
|
104 |
|
|
105 |
.wp-block-button { |
16
|
106 |
position: relative; |
|
107 |
cursor: text; } |
|
108 |
.wp-block-button:not(.has-text-color):not(.is-style-outline) [data-rich-text-placeholder]::after { |
9
|
109 |
color: #fff; } |
16
|
110 |
.wp-block-button:focus { |
|
111 |
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; |
|
112 |
box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color); |
|
113 |
outline: 2px solid transparent; |
|
114 |
outline-offset: -2px; } |
|
115 |
.wp-block-button[data-rich-text-placeholder]::after { |
9
|
116 |
opacity: 0.8; } |
|
117 |
|
16
|
118 |
.wp-block-button__inline-link { |
|
119 |
color: #555d66; |
|
120 |
height: 0; |
|
121 |
overflow: hidden; |
|
122 |
max-width: 290px; } |
|
123 |
.wp-block-button__inline-link-input__suggestions { |
|
124 |
max-width: 290px; } |
|
125 |
@media (min-width: 782px) { |
|
126 |
.wp-block-button__inline-link { |
|
127 |
max-width: 260px; } |
|
128 |
.wp-block-button__inline-link-input__suggestions { |
|
129 |
max-width: 260px; } } |
|
130 |
@media (min-width: 960px) { |
|
131 |
.wp-block-button__inline-link { |
|
132 |
max-width: 290px; } |
|
133 |
.wp-block-button__inline-link-input__suggestions { |
|
134 |
max-width: 290px; } } |
|
135 |
.is-selected .wp-block-button__inline-link { |
|
136 |
height: auto; |
|
137 |
overflow: visible; |
|
138 |
margin-top: 16px; } |
|
139 |
|
|
140 |
div[data-type="core/button"] { |
|
141 |
display: table; } |
|
142 |
|
|
143 |
.wp-block-buttons .wp-block.block-editor-block-list__block[data-type="core/button"] { |
|
144 |
display: inline-block; |
|
145 |
width: auto; } |
|
146 |
|
|
147 |
.wp-block[data-align="center"] > .wp-block-buttons { |
9
|
148 |
display: flex; |
|
149 |
align-items: center; |
16
|
150 |
flex-wrap: wrap; |
|
151 |
justify-content: center; } |
|
152 |
|
|
153 |
.wp-block[data-align="right"] > .wp-block-buttons { |
|
154 |
display: flex; |
|
155 |
justify-content: flex-end; } |
|
156 |
|
|
157 |
.wp-block-buttons .block-list-appender { |
|
158 |
display: inline-block; } |
9
|
159 |
|
|
160 |
.block-editor .wp-block-categories ul { |
|
161 |
padding-left: 2.5em; } |
|
162 |
.block-editor .wp-block-categories ul ul { |
|
163 |
margin-top: 6px; } |
|
164 |
|
16
|
165 |
.wp-block-code > code { |
9
|
166 |
display: block; } |
16
|
167 |
|
|
168 |
.wp-block-columns .wp-block { |
|
169 |
max-width: none; } |
|
170 |
|
|
171 |
@media (min-width: 600px) { |
|
172 |
.editor-styles-wrapper |
|
173 |
.block-editor-block-list__block.wp-block-column:nth-child(even) { |
|
174 |
margin-left: 32px; } } |
|
175 |
|
|
176 |
@media (min-width: 782px) { |
|
177 |
.editor-styles-wrapper |
|
178 |
.block-editor-block-list__block.wp-block-column:not(:first-child) { |
|
179 |
margin-left: 32px; } } |
|
180 |
|
|
181 |
.block-editor-block-list__block.wp-block-column.wp-block-column { |
|
182 |
margin-top: 0; |
|
183 |
margin-bottom: 0; } |
9
|
184 |
|
16
|
185 |
.wp-block-cover { |
|
186 |
position: relative; } |
|
187 |
.wp-block-cover.is-placeholder { |
|
188 |
min-height: auto !important; |
|
189 |
padding: 0 !important; } |
|
190 |
.wp-block-cover.components-placeholder h2 { |
|
191 |
color: inherit; } |
|
192 |
.wp-block-cover .block-editor-block-list__layout { |
|
193 |
width: 100%; } |
|
194 |
.wp-block-cover .wp-block-cover__inner-container { |
|
195 |
text-align: left; |
|
196 |
margin-left: 0; |
|
197 |
margin-right: 0; } |
|
198 |
.wp-block-cover .wp-block-cover__placeholder-background-options { |
|
199 |
width: 100%; } |
9
|
200 |
|
16
|
201 |
[data-align="left"] > .wp-block-cover, |
|
202 |
[data-align="right"] > .wp-block-cover { |
|
203 |
max-width: 290px; |
9
|
204 |
width: 100%; } |
|
205 |
|
16
|
206 |
.block-library-cover__reset-button { |
|
207 |
margin-left: auto; } |
9
|
208 |
|
16
|
209 |
.block-library-cover__resize-container { |
|
210 |
position: absolute !important; |
|
211 |
top: 0; |
|
212 |
left: 0; |
|
213 |
right: 0; |
|
214 |
bottom: 0; } |
9
|
215 |
|
16
|
216 |
.block-library-cover__resize-container:not(.is-resizing) { |
|
217 |
height: auto !important; } |
9
|
218 |
|
|
219 |
.wp-block-embed { |
16
|
220 |
margin-left: 0; |
|
221 |
margin-right: 0; |
9
|
222 |
clear: both; } |
|
223 |
.wp-block-embed.is-loading { |
|
224 |
display: flex; |
|
225 |
flex-direction: column; |
|
226 |
align-items: center; |
|
227 |
justify-content: center; |
|
228 |
padding: 1em; |
|
229 |
min-height: 200px; |
|
230 |
text-align: center; |
16
|
231 |
border-radius: 2px; |
|
232 |
background-color: #fff; |
|
233 |
box-shadow: inset 0 0 0 1px #1e1e1e; } |
9
|
234 |
.wp-block-embed.is-loading p { |
|
235 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
236 |
font-size: 13px; } |
|
237 |
.wp-block-embed .components-placeholder__error { |
|
238 |
word-break: break-word; } |
16
|
239 |
.wp-block-embed .components-placeholder__learn-more { |
|
240 |
margin-top: 1em; } |
9
|
241 |
|
|
242 |
.block-library-embed__interactive-overlay { |
|
243 |
position: absolute; |
|
244 |
top: 0; |
|
245 |
left: 0; |
|
246 |
right: 0; |
|
247 |
bottom: 0; |
|
248 |
opacity: 0; } |
|
249 |
|
|
250 |
.wp-block-file { |
|
251 |
display: flex; |
|
252 |
justify-content: space-between; |
|
253 |
align-items: center; |
|
254 |
margin-bottom: 0; } |
|
255 |
.wp-block-file .wp-block-file__content-wrapper { |
|
256 |
flex-grow: 1; } |
|
257 |
.wp-block-file .wp-block-file__textlink { |
|
258 |
display: inline-block; |
|
259 |
min-width: 1em; } |
|
260 |
.wp-block-file .wp-block-file__textlink:focus { |
|
261 |
box-shadow: none; } |
|
262 |
.wp-block-file .wp-block-file__button-richtext-wrapper { |
|
263 |
display: inline-block; |
|
264 |
margin-left: 0.75em; } |
|
265 |
.wp-block-file .wp-block-file__copy-url-button { |
|
266 |
margin-left: 1em; } |
|
267 |
|
|
268 |
.wp-block-freeform.block-library-rich-text__tinymce { |
16
|
269 |
height: auto; |
|
270 |
/* Allow height of embed iframes to be calculated properly */ |
9
|
271 |
/* Remove blue highlighting of selected images in WebKit */ |
|
272 |
/* Image captions */ |
|
273 |
/* WP Views */ } |
|
274 |
.wp-block-freeform.block-library-rich-text__tinymce p, |
|
275 |
.wp-block-freeform.block-library-rich-text__tinymce li { |
|
276 |
line-height: 1.8; } |
|
277 |
.wp-block-freeform.block-library-rich-text__tinymce ul, |
|
278 |
.wp-block-freeform.block-library-rich-text__tinymce ol { |
|
279 |
padding-left: 2.5em; |
|
280 |
margin-left: 0; } |
|
281 |
.wp-block-freeform.block-library-rich-text__tinymce blockquote { |
|
282 |
margin: 0; |
16
|
283 |
box-shadow: inset 0 0 0 0 #ddd; |
9
|
284 |
border-left: 4px solid #000; |
|
285 |
padding-left: 1em; } |
|
286 |
.wp-block-freeform.block-library-rich-text__tinymce pre { |
|
287 |
white-space: pre-wrap; |
|
288 |
font-family: Menlo, Consolas, monaco, monospace; |
16
|
289 |
font-size: 15px; |
|
290 |
color: #1e1e1e; } |
9
|
291 |
.wp-block-freeform.block-library-rich-text__tinymce > *:first-child { |
|
292 |
margin-top: 0; } |
|
293 |
.wp-block-freeform.block-library-rich-text__tinymce > *:last-child { |
|
294 |
margin-bottom: 0; } |
|
295 |
.wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus { |
|
296 |
outline: none; } |
|
297 |
.wp-block-freeform.block-library-rich-text__tinymce a { |
16
|
298 |
color: #007cba; |
|
299 |
color: var(--wp-admin-theme-color); } |
9
|
300 |
.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected] { |
|
301 |
padding: 0 2px; |
|
302 |
margin: 0 -2px; |
|
303 |
border-radius: 2px; |
|
304 |
box-shadow: 0 0 0 1px #e5f5fa; |
|
305 |
background: #e5f5fa; } |
|
306 |
.wp-block-freeform.block-library-rich-text__tinymce code { |
|
307 |
padding: 2px; |
|
308 |
border-radius: 2px; |
16
|
309 |
color: #1e1e1e; |
|
310 |
background: #f0f0f0; |
9
|
311 |
font-family: Menlo, Consolas, monaco, monospace; |
|
312 |
font-size: 14px; } |
|
313 |
.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected] { |
16
|
314 |
background: #ddd; } |
9
|
315 |
.wp-block-freeform.block-library-rich-text__tinymce .alignright { |
|
316 |
/*rtl:ignore*/ |
|
317 |
float: right; |
|
318 |
/*rtl:ignore*/ |
|
319 |
margin: 0.5em 0 0.5em 1em; } |
|
320 |
.wp-block-freeform.block-library-rich-text__tinymce .alignleft { |
|
321 |
/*rtl:ignore*/ |
|
322 |
float: left; |
|
323 |
/*rtl:ignore*/ |
|
324 |
margin: 0.5em 1em 0.5em 0; } |
|
325 |
.wp-block-freeform.block-library-rich-text__tinymce .aligncenter { |
|
326 |
display: block; |
|
327 |
margin-left: auto; |
|
328 |
margin-right: auto; } |
|
329 |
.wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag { |
|
330 |
width: 96%; |
|
331 |
height: 20px; |
|
332 |
display: block; |
|
333 |
margin: 15px auto; |
|
334 |
outline: 0; |
|
335 |
cursor: default; |
16
|
336 |
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAADtgAAAAoBAMAAAA86gLBAAAAJFBMVEVMaXG7u7vBwcHDw8POzs68vLzGxsbMzMy+vr7AwMDQ0NDGxsYKLGzpAAAADHRSTlMA///zWf+/f///TMxNVGuqAAABwklEQVR4Ae3dMXLaQBTH4bfj8UCpx8hq0vgKvgFNemhT6Qo6gg6R+0ZahM2QLmyBJ99XWP9V5+o3jIUcLQEAAAAAAAAAAAAAAAAAAAAAAABQ8j0WL9lfTtlt18uNXAUA8O/KVtfa1tdcrOdSh9gCQAMlh1hMNbZZ1bsrsQWABsrhLRbz7z5in/32UbfUMUbkMQCAh5RfGYv82UdMdZ6HS2wjT2ILAI8r3XmM2B3WvM59vfO2xXYW2yYAENuPU8S+X/N67mKxzy225yaxBQCxLV392UdcvwV0jPVUj98ntkBWT7C7+9u2/V/vGtvXIWJ6/4rtbottWa6Ri0NUT/u72LYttrb97LHdvUXMxxrb8TO2W2TF1rYbbLG1bbGNjMi4+2Sbi1FsbbvNFlvbFtt5fDnE3d9sP1/XeIyV2Nr2U2/guZUuptNrH/dPI9eLB6SaAEBs6wPJf3/PNk9tYgsAYrv/8TFuzx/fvkFqGtrEFgDEdpcZUb7ejXy6ntrEFgDENvL6gsas4vbdyKt4DACI7TxElJv/Z7udpqFNbAFAbKduy2uU2trttM/x28UWAAAAAAAAAAAAAAAAAAAAAAAAAADgDyPwGmGTCZp7AAAAAElFTkSuQmCC); |
9
|
337 |
background-size: 1900px 20px; |
|
338 |
background-repeat: no-repeat; |
|
339 |
background-position: center; } |
|
340 |
.wp-block-freeform.block-library-rich-text__tinymce img::selection { |
|
341 |
background-color: transparent; } |
|
342 |
.wp-block-freeform.block-library-rich-text__tinymce div.mceTemp { |
|
343 |
-ms-user-select: element; } |
|
344 |
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption { |
|
345 |
margin: 0; |
|
346 |
/* dl browser reset */ |
|
347 |
max-width: 100%; } |
|
348 |
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a, |
|
349 |
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img { |
|
350 |
display: block; } |
|
351 |
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption, |
|
352 |
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption * { |
|
353 |
-webkit-user-drag: none; } |
|
354 |
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd { |
|
355 |
padding-top: 0.5em; |
|
356 |
margin: 0; |
|
357 |
/* browser dd reset */ } |
|
358 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview { |
|
359 |
width: 99.99%; |
|
360 |
/* All IE need hasLayout, incl. 11 (ugh, not again!!) */ |
|
361 |
position: relative; |
|
362 |
clear: both; |
|
363 |
margin-bottom: 16px; |
|
364 |
border: 1px solid transparent; } |
|
365 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview iframe { |
|
366 |
display: block; |
|
367 |
max-width: 100%; |
|
368 |
background: transparent; } |
|
369 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim { |
|
370 |
position: absolute; |
|
371 |
top: 0; |
|
372 |
right: 0; |
|
373 |
bottom: 0; |
|
374 |
left: 0; } |
|
375 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected="2"] .mce-shim { |
|
376 |
display: none; } |
|
377 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder { |
16
|
378 |
border: 1px dashed #ddd; |
9
|
379 |
padding: 10px; } |
|
380 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error { |
16
|
381 |
border: 1px solid #ddd; |
9
|
382 |
padding: 1em 0; |
|
383 |
margin: 0; |
|
384 |
word-wrap: break-word; } |
|
385 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p { |
|
386 |
margin: 0; |
|
387 |
text-align: center; } |
|
388 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder, |
|
389 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error { |
|
390 |
border-color: transparent; } |
|
391 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons { |
|
392 |
display: block; |
|
393 |
margin: 0 auto; |
|
394 |
width: 32px; |
|
395 |
height: 32px; |
|
396 |
font-size: 32px; } |
|
397 |
.wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery::after { |
|
398 |
content: ""; |
|
399 |
display: table; |
|
400 |
clear: both; } |
|
401 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus { |
|
402 |
outline: none; } |
|
403 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery a { |
|
404 |
cursor: default; } |
|
405 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery { |
|
406 |
margin: auto -6px; |
|
407 |
padding: 6px 0; |
|
408 |
line-height: 1; |
|
409 |
overflow-x: hidden; } |
|
410 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item { |
|
411 |
float: left; |
|
412 |
margin: 0; |
|
413 |
text-align: center; |
|
414 |
padding: 6px; |
|
415 |
box-sizing: border-box; } |
|
416 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption, |
|
417 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon { |
|
418 |
margin: 0; } |
|
419 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption { |
|
420 |
font-size: 13px; |
|
421 |
margin: 4px 0; } |
|
422 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item { |
|
423 |
width: 100%; } |
|
424 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item { |
|
425 |
width: 50%; } |
|
426 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item { |
|
427 |
width: 33.33333%; } |
|
428 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item { |
|
429 |
width: 25%; } |
|
430 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item { |
|
431 |
width: 20%; } |
|
432 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item { |
|
433 |
width: 16.66667%; } |
|
434 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item { |
|
435 |
width: 14.28571%; } |
|
436 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item { |
|
437 |
width: 12.5%; } |
|
438 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item { |
|
439 |
width: 11.11111%; } |
|
440 |
.wp-block-freeform.block-library-rich-text__tinymce .gallery img { |
|
441 |
max-width: 100%; |
|
442 |
height: auto; |
|
443 |
border: none; |
|
444 |
padding: 0; } |
|
445 |
|
16
|
446 |
div[data-type="core/freeform"]::before { |
9
|
447 |
transition: border-color 0.1s linear, box-shadow 0.1s linear; |
16
|
448 |
border: 1px solid #ddd; |
9
|
449 |
outline: 1px solid transparent; } |
16
|
450 |
@media (prefers-reduced-motion: reduce) { |
|
451 |
div[data-type="core/freeform"]::before { |
|
452 |
transition-duration: 0s; } } |
9
|
453 |
|
16
|
454 |
div[data-type="core/freeform"].is-selected::before { |
|
455 |
border-color: #1e1e1e; } |
9
|
456 |
|
16
|
457 |
div[data-type="core/freeform"] .block-editor-block-contextual-toolbar + div { |
9
|
458 |
margin-top: 0; |
|
459 |
padding-top: 0; } |
|
460 |
|
|
461 |
div[data-type="core/freeform"].is-selected .block-library-rich-text__tinymce::after { |
|
462 |
content: ""; |
|
463 |
display: table; |
|
464 |
clear: both; } |
|
465 |
|
|
466 |
.mce-toolbar-grp .mce-btn.mce-active button, |
|
467 |
.mce-toolbar-grp .mce-btn.mce-active:hover button, |
|
468 |
.mce-toolbar-grp .mce-btn.mce-active i, |
|
469 |
.mce-toolbar-grp .mce-btn.mce-active:hover i { |
16
|
470 |
color: #1e1e1e; } |
9
|
471 |
|
|
472 |
.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last { |
|
473 |
margin-right: 0; |
|
474 |
margin-left: 8px; } |
|
475 |
|
|
476 |
.mce-toolbar-grp .mce-btn i { |
|
477 |
font-style: normal; } |
|
478 |
|
|
479 |
.block-library-classic__toolbar { |
16
|
480 |
display: none; |
9
|
481 |
width: auto; |
16
|
482 |
margin: 0; |
9
|
483 |
position: -webkit-sticky; |
|
484 |
position: sticky; |
16
|
485 |
z-index: 31; |
|
486 |
top: 0; |
|
487 |
border: 1px solid #ddd; |
9
|
488 |
border-bottom: none; |
16
|
489 |
border-radius: 2px; |
|
490 |
margin-bottom: 8px; |
|
491 |
padding: 0; } |
|
492 |
div[data-type="core/freeform"].is-selected .block-library-classic__toolbar, |
|
493 |
div[data-type="core/freeform"].is-typing .block-library-classic__toolbar { |
|
494 |
display: block; |
|
495 |
border-color: #1e1e1e; } |
|
496 |
.block-library-classic__toolbar .mce-tinymce { |
|
497 |
box-shadow: none; } |
9
|
498 |
@media (min-width: 600px) { |
|
499 |
.block-library-classic__toolbar { |
|
500 |
padding: 0; } } |
|
501 |
.block-library-classic__toolbar:empty { |
16
|
502 |
display: block; |
9
|
503 |
background: #f5f5f5; |
|
504 |
border-bottom: 1px solid #e2e4e7; } |
|
505 |
.block-library-classic__toolbar:empty::before { |
|
506 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
507 |
font-size: 13px; |
|
508 |
content: attr(data-placeholder); |
|
509 |
color: #555d66; |
|
510 |
line-height: 37px; |
|
511 |
padding: 14px; } |
16
|
512 |
.block-library-classic__toolbar div.mce-toolbar-grp { |
|
513 |
border-bottom: 1px solid #1e1e1e; } |
9
|
514 |
.block-library-classic__toolbar .mce-tinymce-inline, |
|
515 |
.block-library-classic__toolbar .mce-tinymce-inline > div, |
|
516 |
.block-library-classic__toolbar div.mce-toolbar-grp, |
|
517 |
.block-library-classic__toolbar div.mce-toolbar-grp > div, |
|
518 |
.block-library-classic__toolbar .mce-menubar, |
|
519 |
.block-library-classic__toolbar .mce-menubar > div { |
|
520 |
height: auto !important; |
|
521 |
width: 100% !important; } |
|
522 |
.block-library-classic__toolbar .mce-container-body.mce-abs-layout { |
|
523 |
overflow: visible; } |
|
524 |
.block-library-classic__toolbar .mce-menubar, |
|
525 |
.block-library-classic__toolbar div.mce-toolbar-grp { |
|
526 |
position: static; } |
|
527 |
.block-library-classic__toolbar .mce-toolbar-grp > div { |
|
528 |
padding: 1px 3px; } |
|
529 |
.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) { |
|
530 |
display: none; } |
|
531 |
.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar { |
|
532 |
display: block; } |
|
533 |
|
16
|
534 |
.wp-block-gallery li { |
9
|
535 |
list-style-type: none; } |
|
536 |
|
16
|
537 |
.wp-block-gallery .block-editor-media-placeholder { |
|
538 |
margin-bottom: 12px; |
|
539 |
padding: 12px; } |
|
540 |
.wp-block-gallery .block-editor-media-placeholder .components-placeholder__label { |
|
541 |
display: none; } |
|
542 |
.wp-block-gallery .block-editor-media-placeholder .components-button { |
|
543 |
margin-bottom: 0; } |
|
544 |
|
|
545 |
figure.wp-block-gallery { |
|
546 |
display: block; |
|
547 |
margin: 0; } |
|
548 |
|
|
549 |
.blocks-gallery-grid.blocks-gallery-grid { |
|
550 |
padding-left: 0; |
|
551 |
margin-left: 0; |
|
552 |
margin-bottom: 0; } |
|
553 |
|
|
554 |
.blocks-gallery-item figure:not(.is-selected):focus, |
|
555 |
.blocks-gallery-item img:focus { |
9
|
556 |
outline: none; } |
|
557 |
|
16
|
558 |
.blocks-gallery-item figure.is-selected { |
|
559 |
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; |
|
560 |
box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color); |
|
561 |
border-radius: 2px; |
|
562 |
outline: 2px solid transparent; } |
|
563 |
.blocks-gallery-item figure.is-selected img { |
|
564 |
border-radius: 2px; } |
9
|
565 |
|
16
|
566 |
.blocks-gallery-item figure.is-transient img { |
9
|
567 |
opacity: 0.3; } |
|
568 |
|
16
|
569 |
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu { |
|
570 |
display: inline-flex; } |
9
|
571 |
|
16
|
572 |
.blocks-gallery-item .block-editor-media-placeholder { |
|
573 |
margin: 0; |
9
|
574 |
height: 100%; } |
16
|
575 |
.blocks-gallery-item .block-editor-media-placeholder .components-placeholder__label { |
|
576 |
display: flex; } |
9
|
577 |
|
|
578 |
.block-library-gallery-item__inline-menu { |
16
|
579 |
display: none; |
9
|
580 |
position: absolute; |
|
581 |
top: -2px; |
16
|
582 |
margin: 8px; |
|
583 |
z-index: 20; |
|
584 |
transition: box-shadow 0.2s ease-out; |
|
585 |
border-radius: 2px; |
|
586 |
background: #fff; |
|
587 |
border: 1px solid #1e1e1e; } |
|
588 |
@media (prefers-reduced-motion: reduce) { |
|
589 |
.block-library-gallery-item__inline-menu { |
|
590 |
transition-duration: 0s; } } |
|
591 |
.block-library-gallery-item__inline-menu:hover { |
|
592 |
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); } |
|
593 |
@media (min-width: 600px) { |
|
594 |
.columns-7 .block-library-gallery-item__inline-menu, |
|
595 |
.columns-8 .block-library-gallery-item__inline-menu { |
|
596 |
padding: 2px; } } |
|
597 |
.block-library-gallery-item__inline-menu .components-button.has-icon:not(:focus) { |
|
598 |
border: none; |
|
599 |
box-shadow: none; } |
|
600 |
@media (min-width: 600px) { |
|
601 |
.columns-7 .block-library-gallery-item__inline-menu .components-button.has-icon, |
|
602 |
.columns-8 .block-library-gallery-item__inline-menu .components-button.has-icon { |
|
603 |
padding: 0; |
|
604 |
width: inherit; |
|
605 |
height: inherit; } } |
|
606 |
.block-library-gallery-item__inline-menu.is-left { |
|
607 |
left: -2px; } |
|
608 |
.block-library-gallery-item__inline-menu.is-right { |
|
609 |
right: -2px; } |
9
|
610 |
|
|
611 |
.blocks-gallery-item .components-spinner { |
|
612 |
position: absolute; |
|
613 |
top: 50%; |
|
614 |
left: 50%; |
|
615 |
margin-top: -9px; |
|
616 |
margin-left: -9px; } |
|
617 |
|
16
|
618 |
/** |
|
619 |
* Group: All Alignment Settings |
|
620 |
*/ |
|
621 |
.wp-block-group { |
|
622 |
margin-top: 0; |
|
623 |
margin-bottom: 0; } |
|
624 |
.wp-block-group .block-editor-block-list__insertion-point { |
|
625 |
left: 0; |
|
626 |
right: 0; } |
|
627 |
.wp-block-group > .wp-block-group__inner-container > [data-align="full"] { |
|
628 |
margin-left: auto; |
|
629 |
margin-right: auto; } |
|
630 |
.wp-block-group.has-background > .wp-block-group__inner-container > [data-align="full"] { |
|
631 |
margin-left: -30px; |
|
632 |
width: calc(100% + 60px); } |
|
633 |
|
|
634 |
/** |
|
635 |
* Group: Full Width Alignment |
|
636 |
*/ |
|
637 |
[data-align="full"] .wp-block-group > .wp-block-group__inner-container > .wp-block { |
|
638 |
padding-left: 14px; |
|
639 |
padding-right: 14px; } |
|
640 |
@media (min-width: 600px) { |
|
641 |
[data-align="full"] .wp-block-group > .wp-block-group__inner-container > .wp-block { |
|
642 |
padding-left: 0; |
|
643 |
padding-right: 0; } } |
|
644 |
|
|
645 |
[data-align="full"] .wp-block-group > .wp-block-group__inner-container > [data-align="full"] { |
|
646 |
padding-right: 0; |
|
647 |
padding-left: 0; |
|
648 |
left: 0; |
|
649 |
width: 100%; |
|
650 |
max-width: none; } |
|
651 |
|
|
652 |
[data-align="full"] .wp-block-group.has-background > .wp-block-group__inner-container > [data-align="full"] { |
|
653 |
width: calc(100% + 60px); } |
|
654 |
|
|
655 |
[data-type="core/group"].is-selected .block-list-appender { |
|
656 |
margin-left: 0; |
9
|
657 |
margin-right: 0; } |
|
658 |
|
16
|
659 |
[data-type="core/group"].is-selected .has-background .block-list-appender { |
|
660 |
margin-top: 18px; |
|
661 |
margin-bottom: 18px; } |
9
|
662 |
|
16
|
663 |
.block-library-heading-level-dropdown .components-popover__content { |
|
664 |
min-width: 230px; } |
|
665 |
.block-library-heading-level-dropdown .components-popover__content > div { |
|
666 |
padding: 0; } |
9
|
667 |
|
16
|
668 |
.block-library-heading-level-toolbar { |
|
669 |
border: none; } |
9
|
670 |
|
16
|
671 |
.wp-block-html { |
|
672 |
margin-bottom: 28px; } |
|
673 |
.wp-block-html .block-library-html__preview-overlay { |
|
674 |
position: absolute; |
|
675 |
width: 100%; |
|
676 |
height: 100%; |
|
677 |
top: 0; |
|
678 |
left: 0; } |
|
679 |
.wp-block-html .block-editor-plain-text { |
|
680 |
font-family: Menlo, Consolas, monaco, monospace; |
|
681 |
color: #1e1e1e; |
|
682 |
padding: 0.8em 1em; |
|
683 |
border: 1px solid #ddd; |
|
684 |
border-radius: 4px; |
|
685 |
max-height: 250px; |
|
686 |
/* Fonts smaller than 16px causes mobile safari to zoom. */ |
|
687 |
font-size: 16px; } |
|
688 |
@media (min-width: 600px) { |
|
689 |
.wp-block-html .block-editor-plain-text { |
|
690 |
font-size: 13px; } } |
|
691 |
.wp-block-html .block-editor-plain-text:focus { |
|
692 |
box-shadow: none; } |
9
|
693 |
|
16
|
694 |
figure.wp-block-image:not(.wp-block) { |
|
695 |
margin: 0; } |
9
|
696 |
|
|
697 |
.wp-block-image { |
|
698 |
position: relative; } |
16
|
699 |
.wp-block-image .is-applying img, |
9
|
700 |
.wp-block-image.is-transient img { |
|
701 |
opacity: 0.3; } |
|
702 |
.wp-block-image figcaption img { |
|
703 |
display: inline; } |
|
704 |
.wp-block-image .components-spinner { |
|
705 |
position: absolute; |
|
706 |
top: 50%; |
|
707 |
left: 50%; |
|
708 |
margin-top: -9px; |
|
709 |
margin-left: -9px; } |
|
710 |
|
|
711 |
.wp-block-image .components-resizable-box__container { |
|
712 |
display: inline-block; } |
|
713 |
.wp-block-image .components-resizable-box__container img { |
|
714 |
display: block; |
16
|
715 |
width: inherit; |
|
716 |
height: inherit; } |
9
|
717 |
|
|
718 |
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal { |
|
719 |
position: absolute; |
|
720 |
left: 0; |
|
721 |
right: 0; |
|
722 |
margin: -1px 0; } |
|
723 |
@media (min-width: 600px) { |
|
724 |
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal { |
|
725 |
margin: -1px; } } |
|
726 |
|
16
|
727 |
[data-align="wide"] > .wp-block-image img, |
|
728 |
[data-align="full"] > .wp-block-image img { |
|
729 |
width: 100%; } |
|
730 |
|
|
731 |
.wp-block[data-align="left"] > .wp-block-image { |
|
732 |
margin-right: 1em; |
|
733 |
margin-left: 0; |
|
734 |
margin-top: 0.5em; |
|
735 |
margin-bottom: 0.5em; } |
9
|
736 |
|
16
|
737 |
.wp-block[data-align="right"] > .wp-block-image { |
|
738 |
margin-left: 1em; |
|
739 |
margin-right: 0; |
|
740 |
margin-top: 0.5em; |
|
741 |
margin-bottom: 0.5em; } |
9
|
742 |
|
16
|
743 |
.wp-block[data-align="center"] > .wp-block-image { |
|
744 |
margin-left: auto; |
|
745 |
margin-right: auto; |
|
746 |
text-align: center; } |
|
747 |
|
|
748 |
.wp-block-image__crop-area { |
|
749 |
position: relative; |
|
750 |
max-width: 100%; |
9
|
751 |
width: 100%; } |
|
752 |
|
16
|
753 |
.wp-block-image__crop-icon { |
|
754 |
padding: 0 8px; |
|
755 |
min-width: 48px; |
|
756 |
display: flex; |
|
757 |
justify-content: center; |
|
758 |
align-items: center; } |
|
759 |
.wp-block-image__crop-icon svg { |
|
760 |
fill: currentColor; } |
|
761 |
|
|
762 |
.wp-block-image__zoom .components-popover__content { |
|
763 |
overflow: visible; } |
|
764 |
|
|
765 |
.wp-block-image__zoom .components-range-control { |
|
766 |
flex: 1; } |
|
767 |
|
|
768 |
.wp-block-image__zoom .components-base-control__field { |
|
769 |
display: flex; |
|
770 |
margin-bottom: 0; } |
|
771 |
|
|
772 |
.wp-block-image__aspect-ratio { |
|
773 |
height: 46px; |
|
774 |
margin-bottom: -8px; |
|
775 |
display: flex; |
|
776 |
align-items: center; } |
|
777 |
.wp-block-image__aspect-ratio .components-button { |
|
778 |
width: 36px; |
|
779 |
padding-left: 0; |
|
780 |
padding-right: 0; } |
9
|
781 |
|
|
782 |
.wp-block-latest-comments.has-avatars .avatar { |
|
783 |
margin-right: 10px; } |
|
784 |
|
|
785 |
.wp-block-latest-comments__comment-excerpt p { |
|
786 |
font-size: 14px; |
|
787 |
line-height: 1.8; |
|
788 |
margin: 5px 0 20px; |
|
789 |
padding-top: 0; } |
|
790 |
|
|
791 |
.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment { |
|
792 |
min-height: 36px; } |
|
793 |
|
|
794 |
.block-editor .wp-block-latest-posts { |
|
795 |
padding-left: 2.5em; } |
|
796 |
.block-editor .wp-block-latest-posts.is-grid { |
|
797 |
padding-left: 0; } |
|
798 |
|
|
799 |
.wp-block-latest-posts li a > div { |
|
800 |
display: inline; } |
|
801 |
|
|
802 |
.wp-block-legacy-widget__edit-container .widget-inside { |
|
803 |
border: none; |
16
|
804 |
display: block; |
|
805 |
box-shadow: none; } |
|
806 |
|
|
807 |
.wp-block-legacy-widget__edit-container .widget.open { |
|
808 |
z-index: 0; } |
9
|
809 |
|
|
810 |
.wp-block-legacy-widget__update-button { |
|
811 |
margin-left: auto; |
|
812 |
display: block; } |
|
813 |
|
|
814 |
.wp-block-legacy-widget__preview { |
|
815 |
overflow: auto; } |
|
816 |
|
16
|
817 |
.wp-block-legacy-widget__preview, |
|
818 |
.wp-block-legacy-widget__edit-container, |
|
819 |
.wp-block-legacy-widget__edit-widget-title { |
|
820 |
padding: 8px 14px; } |
9
|
821 |
|
16
|
822 |
.wp-block-legacy-widget__edit-widget-title { |
|
823 |
background: #ddd; |
|
824 |
color: #1e1e1e; |
|
825 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
826 |
font-size: 13px; |
|
827 |
padding: 8px 14px; |
|
828 |
font-weight: 600; } |
9
|
829 |
|
|
830 |
.wp-block-media-text .__resizable_base__ { |
16
|
831 |
-ms-grid-column: 1; |
|
832 |
-ms-grid-column-span: 2; |
|
833 |
grid-column: 1 / span 2; |
|
834 |
-ms-grid-row: 2; |
|
835 |
grid-row: 2; } |
9
|
836 |
|
|
837 |
.wp-block-media-text .editor-media-container__resizer { |
|
838 |
width: 100% !important; } |
|
839 |
|
16
|
840 |
.wp-block-media-text.is-image-fill .editor-media-container__resizer { |
|
841 |
height: 100% !important; } |
9
|
842 |
|
16
|
843 |
.wp-block-media-text > .block-editor-block-list__layout > .block-editor-block-list__block { |
|
844 |
max-width: unset; } |
9
|
845 |
|
|
846 |
.block-editor-block-list__block[data-type="core/more"] { |
|
847 |
max-width: 100%; |
16
|
848 |
text-align: center; |
|
849 |
margin-top: 28px; |
|
850 |
margin-bottom: 28px; } |
9
|
851 |
|
|
852 |
.block-editor .wp-block-more { |
|
853 |
display: block; |
|
854 |
text-align: center; |
|
855 |
white-space: nowrap; } |
|
856 |
.block-editor .wp-block-more input[type="text"] { |
|
857 |
position: relative; |
|
858 |
font-size: 13px; |
|
859 |
text-transform: uppercase; |
|
860 |
font-weight: 600; |
|
861 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
862 |
color: #6c7781; |
|
863 |
border: none; |
|
864 |
box-shadow: none; |
|
865 |
white-space: nowrap; |
|
866 |
text-align: center; |
|
867 |
margin: 0; |
|
868 |
border-radius: 4px; |
|
869 |
background: #fff; |
|
870 |
padding: 6px 8px; |
16
|
871 |
height: 24px; |
|
872 |
max-width: 100%; } |
9
|
873 |
.block-editor .wp-block-more input[type="text"]:focus { |
|
874 |
box-shadow: none; } |
|
875 |
.block-editor .wp-block-more::before { |
|
876 |
content: ""; |
|
877 |
position: absolute; |
|
878 |
top: calc(50%); |
|
879 |
left: 0; |
|
880 |
right: 0; |
|
881 |
border-top: 3px dashed #ccd0d4; } |
|
882 |
|
16
|
883 |
.editor-styles-wrapper .wp-block-navigation ul, |
|
884 |
.editor-styles-wrapper .wp-block-navigation ol { |
|
885 |
margin-bottom: 0; |
|
886 |
margin-left: 0; |
|
887 |
padding-left: 0; } |
|
888 |
|
|
889 |
.editor-styles-wrapper .wp-block-navigation .block-editor-block-list__block { |
|
890 |
margin: 0; } |
|
891 |
|
|
892 |
.wp-block-navigation .block-list-appender { |
|
893 |
margin: 0; |
|
894 |
display: flex; |
|
895 |
align-items: center; } |
|
896 |
|
|
897 |
.wp-block-navigation.is-vertical .block-list-appender { |
|
898 |
margin: 8px; } |
|
899 |
|
|
900 |
.wp-block-navigation__inserter-content { |
|
901 |
padding: 16px; } |
|
902 |
|
|
903 |
.wp-block-navigation__container.is-parent-of-selected-block { |
|
904 |
visibility: visible; |
|
905 |
opacity: 1; } |
|
906 |
|
|
907 |
.has-child > .wp-block-navigation__container, .has-child:hover > .wp-block-navigation__container { |
|
908 |
opacity: 0; |
|
909 |
visibility: hidden; } |
|
910 |
|
|
911 |
.has-child.is-selected > .wp-block-navigation__container, .has-child.has-child-selected > .wp-block-navigation__container { |
|
912 |
opacity: 1; |
|
913 |
visibility: visible; } |
|
914 |
|
|
915 |
/** |
|
916 |
* Colors Selector component |
|
917 |
*/ |
|
918 |
.block-library-colors-selector { |
|
919 |
width: auto; } |
|
920 |
.block-library-colors-selector .block-library-colors-selector__toggle { |
|
921 |
display: block; |
|
922 |
margin: 0 auto; |
|
923 |
padding: 3px; |
|
924 |
width: auto; } |
|
925 |
.block-library-colors-selector .block-library-colors-selector__icon-container { |
|
926 |
height: 30px; |
|
927 |
position: relative; |
|
928 |
margin: 0 auto; |
|
929 |
padding: 3px; |
|
930 |
display: flex; |
|
931 |
align-items: center; |
|
932 |
border-radius: 4px; } |
|
933 |
.block-library-colors-selector .block-library-colors-selector__state-selection { |
|
934 |
margin-left: auto; |
|
935 |
margin-right: auto; } |
|
936 |
.block-library-colors-selector .block-library-colors-selector__state-selection { |
|
937 |
border-radius: 11px; |
|
938 |
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2); |
|
939 |
width: 22px; |
|
940 |
min-width: 22px; |
|
941 |
height: 22px; |
|
942 |
min-height: 22px; |
|
943 |
line-height: 20px; |
|
944 |
padding: 2px; } |
|
945 |
.block-library-colors-selector .block-library-colors-selector__state-selection > svg { |
|
946 |
min-width: auto !important; } |
|
947 |
.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg, |
|
948 |
.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg path { |
|
949 |
color: inherit; } |
|
950 |
|
|
951 |
.block-library-colors-selector__popover .color-palette-controller-container { |
|
952 |
padding: 16px; } |
|
953 |
|
|
954 |
.block-library-colors-selector__popover .components-base-control__label { |
|
955 |
height: 20px; |
|
956 |
line-height: 20px; } |
|
957 |
|
|
958 |
.block-library-colors-selector__popover .component-color-indicator { |
|
959 |
float: right; |
|
960 |
margin-top: 2px; } |
|
961 |
|
|
962 |
.block-library-colors-selector__popover .components-panel__body-title { |
|
963 |
display: none; } |
|
964 |
|
|
965 |
.is-editing > .wp-block-navigation__container { |
|
966 |
visibility: visible; |
|
967 |
opacity: 1; |
|
968 |
display: flex; |
|
969 |
flex-direction: column; } |
|
970 |
|
|
971 |
.wp-block-navigation.is-style-dark .block-editor-button-block-appender.block-list-appender__toggle { |
|
972 |
color: #fff; } |
|
973 |
|
|
974 |
.wp-block-navigation.is-style-dark .block-editor-button-block-appender.block-list-appender__toggle > svg { |
|
975 |
color: #000; |
|
976 |
background-color: #fff; } |
|
977 |
|
|
978 |
.wp-block-navigation-placeholder .components-spinner { |
|
979 |
margin-top: -4px; |
|
980 |
margin-left: 4px; |
|
981 |
vertical-align: middle; |
|
982 |
margin-right: 7px; } |
|
983 |
|
|
984 |
.wp-block-navigation-placeholder .components-custom-select-control__label { |
|
985 |
margin-bottom: 1rem; } |
|
986 |
|
|
987 |
.wp-block-navigation-placeholder .components-custom-select-control__button { |
|
988 |
height: auto; |
|
989 |
padding: 0.375rem 0.75rem 0.375rem 1.5rem; |
|
990 |
min-width: 13.75rem; } |
|
991 |
|
|
992 |
.wp-block-navigation-placeholder .components-custom-select-control.has-menus .components-custom-select-control__item.is-create-empty-option { |
|
993 |
position: relative; |
|
994 |
margin-top: 20px; } |
|
995 |
.wp-block-navigation-placeholder .components-custom-select-control.has-menus .components-custom-select-control__item.is-create-empty-option::before { |
|
996 |
content: ""; |
|
997 |
position: absolute; |
|
998 |
top: -10px; |
|
999 |
left: 25px; |
|
1000 |
right: 25px; |
|
1001 |
height: 15px; |
|
1002 |
border-top: 1px solid #757575; } |
|
1003 |
|
|
1004 |
.wp-block-navigation-placeholder .components-custom-select-control__label { |
|
1005 |
font-size: 13px; |
|
1006 |
font-weight: normal; } |
|
1007 |
|
|
1008 |
.wp-block-navigation-placeholder .components-custom-select-control__menu { |
|
1009 |
margin: 0; |
|
1010 |
max-height: none; |
|
1011 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
1012 |
font-size: 13px; } |
|
1013 |
|
|
1014 |
.wp-block-navigation .block-editor-button-block-appender { |
|
1015 |
justify-content: flex-start; } |
|
1016 |
|
|
1017 |
.wp-block-navigation-link__field .components-text-control__input.components-text-control__input, |
|
1018 |
.wp-block-navigation-link__container { |
|
1019 |
border-radius: 0; |
|
1020 |
line-height: 36px; |
|
1021 |
min-height: 36px; } |
|
1022 |
|
|
1023 |
/** |
|
1024 |
* Adjust Navigation Item. |
|
1025 |
*/ |
|
1026 |
.wp-block-navigation-link .block-editor-block-list__layout { |
|
1027 |
display: block; } |
|
1028 |
|
|
1029 |
.wp-block-navigation-link.is-editing, .wp-block-navigation-link.is-selected { |
|
1030 |
min-width: 20px; } |
|
1031 |
|
|
1032 |
.wp-block-navigation-link .block-editor-rich-text__editable.is-selected:not(.keep-placeholder-on-focus):not(:focus)[data-rich-text-placeholder]::after { |
|
1033 |
display: inline-block; } |
|
1034 |
|
|
1035 |
.wp-block-navigation-link .block-list-appender { |
|
1036 |
margin: 16px; |
|
1037 |
margin-left: 10px; |
|
1038 |
margin-top: 10px; } |
|
1039 |
|
|
1040 |
.wp-block-navigation-link__nofollow-external-link { |
|
1041 |
display: block; } |
|
1042 |
|
|
1043 |
.wp-block-navigation-link__separator { |
|
1044 |
margin: 8px 0 8px; |
|
1045 |
border-top: 1px solid #ddd; } |
|
1046 |
|
|
1047 |
.components-popover.wp-block-navigation-link__dropdown-content { |
|
1048 |
margin-top: -1px; |
|
1049 |
margin-left: -4px; } |
|
1050 |
|
|
1051 |
.wp-block-navigation-link__dropdown-content .components-popover__content > div { |
|
1052 |
padding: 8px 0; } |
|
1053 |
|
|
1054 |
.wp-block-navigation .block-editor-block-list__block[data-type="core/navigation-link"] > .block-editor-block-list__insertion-point { |
|
1055 |
display: none; } |
|
1056 |
|
9
|
1057 |
.block-editor-block-list__block[data-type="core/nextpage"] { |
16
|
1058 |
max-width: 100%; |
|
1059 |
margin-top: 28px; |
|
1060 |
margin-bottom: 28px; } |
9
|
1061 |
|
|
1062 |
.wp-block-nextpage { |
|
1063 |
display: block; |
|
1064 |
text-align: center; |
|
1065 |
white-space: nowrap; } |
|
1066 |
.wp-block-nextpage > span { |
|
1067 |
font-size: 13px; |
|
1068 |
position: relative; |
|
1069 |
display: inline-block; |
|
1070 |
text-transform: uppercase; |
|
1071 |
font-weight: 600; |
|
1072 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
1073 |
color: #6c7781; |
|
1074 |
border-radius: 4px; |
|
1075 |
background: #fff; |
|
1076 |
padding: 6px 8px; |
|
1077 |
height: 24px; } |
|
1078 |
.wp-block-nextpage::before { |
|
1079 |
content: ""; |
|
1080 |
position: absolute; |
|
1081 |
top: calc(50%); |
|
1082 |
left: 0; |
|
1083 |
right: 0; |
|
1084 |
border-top: 3px dashed #ccd0d4; } |
|
1085 |
|
16
|
1086 |
.block-editor-block-list__block[data-type="core/paragraph"].has-drop-cap:focus { |
|
1087 |
min-height: auto !important; } |
|
1088 |
|
|
1089 |
.wp-block-post-excerpt__excerpt.is-inline { |
|
1090 |
display: inline-block; } |
9
|
1091 |
|
16
|
1092 |
.wp-block-post-author { |
|
1093 |
display: flex; |
|
1094 |
flex-wrap: wrap; |
|
1095 |
line-height: 1.5; } |
|
1096 |
.wp-block-post-author .wp-block-post-author__byline { |
|
1097 |
font-size: 0.5em; |
|
1098 |
margin-top: 0; |
|
1099 |
position: relative; |
|
1100 |
font-style: normal; } |
|
1101 |
.wp-block-post-author .wp-block-post-author__content { |
|
1102 |
flex-grow: 1; |
|
1103 |
flex-basis: 0; } |
|
1104 |
.wp-block-post-author .wp-block-post-author__avatar img { |
|
1105 |
margin: 0; } |
|
1106 |
.wp-block-post-author .wp-block-post-author__avatar { |
|
1107 |
margin-bottom: -8px; } |
|
1108 |
.wp-block-post-author .wp-block-post-author__name { |
|
1109 |
margin: 0; |
|
1110 |
font-weight: bold; } |
|
1111 |
.wp-block-post-author .wp-block-post-author__bio { |
|
1112 |
margin: 0 0 8px; |
|
1113 |
font-size: 0.7em; } |
9
|
1114 |
|
16
|
1115 |
.wp-block[data-align="left"] > .wp-block-pullquote p, |
|
1116 |
.wp-block[data-align="right"] > .wp-block-pullquote p { |
9
|
1117 |
font-size: 20px; } |
|
1118 |
|
16
|
1119 |
.wp-block-pullquote blockquote p { |
9
|
1120 |
font-size: 28px; |
|
1121 |
line-height: 1.6; } |
|
1122 |
|
|
1123 |
.wp-block-pullquote.is-style-solid-color { |
|
1124 |
margin-left: 0; |
|
1125 |
margin-right: 0; } |
16
|
1126 |
.wp-block-pullquote.is-style-solid-color blockquote p { |
9
|
1127 |
font-size: 32px; } |
|
1128 |
.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation { |
|
1129 |
text-transform: none; |
|
1130 |
font-style: normal; } |
|
1131 |
|
|
1132 |
.wp-block-pullquote .wp-block-pullquote__citation { |
|
1133 |
color: inherit; } |
|
1134 |
|
16
|
1135 |
.wp-block-quote__citation { |
|
1136 |
font-size: 13px; } |
9
|
1137 |
|
|
1138 |
.block-editor .wp-block-rss { |
|
1139 |
padding-left: 2.5em; } |
|
1140 |
.block-editor .wp-block-rss.is-grid { |
|
1141 |
padding-left: 0; } |
|
1142 |
|
16
|
1143 |
.wp-block-rss li a > div { |
|
1144 |
display: inline; } |
|
1145 |
|
|
1146 |
.wp-block-rss__placeholder-form { |
|
1147 |
display: flex; |
|
1148 |
align-items: stretch; } |
|
1149 |
.wp-block-rss__placeholder-form > * { |
|
1150 |
margin-bottom: 8px; } |
|
1151 |
@media (min-width: 782px) { |
|
1152 |
.wp-block-rss__placeholder-form > * { |
|
1153 |
margin-bottom: 0; } } |
|
1154 |
|
|
1155 |
.wp-block-rss__placeholder-input { |
|
1156 |
display: flex; |
|
1157 |
align-items: stretch; |
|
1158 |
flex-grow: 1; } |
|
1159 |
.wp-block-rss__placeholder-input .components-base-control__field { |
|
1160 |
margin: 0; |
|
1161 |
display: flex; |
|
1162 |
align-items: stretch; |
|
1163 |
flex-grow: 1; |
|
1164 |
margin-right: 8px; } |
|
1165 |
|
|
1166 |
.wp-block-search__input { |
|
1167 |
border-radius: 2px; |
|
1168 |
border: 1px solid #7e8993; |
|
1169 |
color: rgba(30, 30, 30, 0.62); |
9
|
1170 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
16
|
1171 |
font-size: 13px; |
|
1172 |
padding: 8px; } |
|
1173 |
.wp-block-search__input:focus { |
9
|
1174 |
outline: none; } |
|
1175 |
|
16
|
1176 |
.wp-block-search__button { |
9
|
1177 |
background: #f7f7f7; |
16
|
1178 |
border-radius: 2px; |
9
|
1179 |
border: 1px solid #ccc; |
|
1180 |
box-shadow: inset 0 -1px 0 #ccc; |
|
1181 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
16
|
1182 |
font-size: 13px; |
|
1183 |
padding: 6px 10px; } |
|
1184 |
|
|
1185 |
.block-editor-block-list__block[data-type="core/separator"] { |
|
1186 |
padding-top: 0.1px; |
|
1187 |
padding-bottom: 0.1px; } |
|
1188 |
.block-editor-block-list__block[data-type="core/separator"].block-editor-block-list__block { |
|
1189 |
margin-top: 0; |
|
1190 |
margin-bottom: 0; } |
9
|
1191 |
|
|
1192 |
.wp-block-shortcode { |
|
1193 |
display: flex; |
16
|
1194 |
flex-direction: column; |
9
|
1195 |
padding: 14px; |
|
1196 |
font-size: 13px; |
16
|
1197 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
1198 |
margin-bottom: 28px; } |
9
|
1199 |
.wp-block-shortcode label { |
|
1200 |
display: flex; |
|
1201 |
align-items: center; |
|
1202 |
white-space: nowrap; |
|
1203 |
font-weight: 600; |
|
1204 |
flex-shrink: 0; } |
|
1205 |
.wp-block-shortcode .block-editor-plain-text { |
16
|
1206 |
max-height: 250px; } |
9
|
1207 |
.wp-block-shortcode .dashicon { |
|
1208 |
margin-right: 8px; } |
|
1209 |
|
16
|
1210 |
.block-editor .blocks-shortcode__textarea, |
|
1211 |
.blocks-shortcode__textarea { |
|
1212 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
1213 |
padding: 6px 8px; |
|
1214 |
box-shadow: 0 0 0 transparent; |
|
1215 |
transition: box-shadow 0.1s linear; |
|
1216 |
border-radius: 2px; |
|
1217 |
border: 1px solid #757575; |
|
1218 |
/* Fonts smaller than 16px causes mobile safari to zoom. */ |
|
1219 |
font-size: 16px; |
|
1220 |
/* Override core line-height. To be reviewed. */ |
|
1221 |
line-height: normal; } |
|
1222 |
@media (prefers-reduced-motion: reduce) { |
|
1223 |
.block-editor .blocks-shortcode__textarea, |
|
1224 |
.blocks-shortcode__textarea { |
|
1225 |
transition-duration: 0s; } } |
|
1226 |
@media (min-width: 600px) { |
|
1227 |
.block-editor .blocks-shortcode__textarea, |
|
1228 |
.blocks-shortcode__textarea { |
|
1229 |
font-size: 13px; |
|
1230 |
/* Override core line-height. To be reviewed. */ |
|
1231 |
line-height: normal; } } |
|
1232 |
.block-editor .blocks-shortcode__textarea:focus, |
|
1233 |
.blocks-shortcode__textarea:focus { |
|
1234 |
border-color: #007cba; |
|
1235 |
border-color: var(--wp-admin-theme-color); |
|
1236 |
box-shadow: 0 0 0 0.5px #007cba; |
|
1237 |
box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); |
|
1238 |
outline: 2px solid transparent; } |
|
1239 |
.block-editor .blocks-shortcode__textarea::-webkit-input-placeholder, |
|
1240 |
.blocks-shortcode__textarea::-webkit-input-placeholder { |
|
1241 |
color: rgba(30, 30, 30, 0.62); } |
|
1242 |
.block-editor .blocks-shortcode__textarea::-moz-placeholder, |
|
1243 |
.blocks-shortcode__textarea::-moz-placeholder { |
|
1244 |
opacity: 1; |
|
1245 |
color: rgba(30, 30, 30, 0.62); } |
|
1246 |
.block-editor .blocks-shortcode__textarea:-ms-input-placeholder, |
|
1247 |
.blocks-shortcode__textarea:-ms-input-placeholder { |
|
1248 |
color: rgba(30, 30, 30, 0.62); } |
|
1249 |
.is-dark-theme .block-editor .blocks-shortcode__textarea::-webkit-input-placeholder, .is-dark-theme |
|
1250 |
.blocks-shortcode__textarea::-webkit-input-placeholder { |
|
1251 |
color: rgba(255, 255, 255, 0.65); } |
|
1252 |
.is-dark-theme .block-editor .blocks-shortcode__textarea::-moz-placeholder, .is-dark-theme |
|
1253 |
.blocks-shortcode__textarea::-moz-placeholder { |
|
1254 |
opacity: 1; |
|
1255 |
color: rgba(255, 255, 255, 0.65); } |
|
1256 |
.is-dark-theme .block-editor .blocks-shortcode__textarea:-ms-input-placeholder, .is-dark-theme |
|
1257 |
.blocks-shortcode__textarea:-ms-input-placeholder { |
|
1258 |
color: rgba(255, 255, 255, 0.65); } |
|
1259 |
|
|
1260 |
.wp-block-social-links .wp-social-link button { |
|
1261 |
color: currentColor; |
|
1262 |
padding: 6px; } |
|
1263 |
|
|
1264 |
.wp-block-social-links.is-style-pill-shape .wp-social-link button { |
|
1265 |
padding-left: 16px; |
|
1266 |
padding-right: 16px; } |
|
1267 |
|
|
1268 |
.wp-block-social-links div.block-editor-url-input { |
|
1269 |
display: inline-block; |
|
1270 |
margin-left: 8px; } |
|
1271 |
|
|
1272 |
.editor-styles-wrapper .wp-block-social-link { |
|
1273 |
margin: 0; |
|
1274 |
margin-right: 8px; } |
|
1275 |
|
|
1276 |
.editor-styles-wrapper .wp-block-social-links { |
|
1277 |
padding: 0; } |
|
1278 |
|
|
1279 |
.wp-block-social-links .block-list-appender { |
|
1280 |
margin: 0; |
|
1281 |
display: flex; |
|
1282 |
align-items: center; } |
|
1283 |
|
|
1284 |
.wp-block[data-align="center"] > .wp-block-social-links { |
|
1285 |
justify-content: center; } |
|
1286 |
|
|
1287 |
.block-editor-block-preview__content .wp-social-link:disabled { |
|
1288 |
opacity: 1; } |
|
1289 |
|
|
1290 |
[data-type="core/social-links"]:not(.is-selected):not(.has-child-selected) .wp-block-social-links { |
|
1291 |
min-height: 36px; } |
|
1292 |
|
|
1293 |
[data-type="core/social-links"] .wp-social-link__is-incomplete { |
|
1294 |
transition: transform 0.1s ease; |
|
1295 |
transform-origin: center center; } |
|
1296 |
|
|
1297 |
[data-type="core/social-links"]:not(.is-selected):not(.has-child-selected) .wp-social-link__is-incomplete { |
|
1298 |
opacity: 0; |
|
1299 |
transform: scale(0); |
|
1300 |
width: 0; |
|
1301 |
padding: 0; |
|
1302 |
margin-right: 0; } |
|
1303 |
|
|
1304 |
.wp-social-link.wp-social-link__is-incomplete { |
|
1305 |
opacity: 0.5; } |
|
1306 |
@media (prefers-reduced-motion: reduce) { |
|
1307 |
.wp-social-link.wp-social-link__is-incomplete { |
|
1308 |
transition-duration: 0s; } } |
|
1309 |
|
|
1310 |
.wp-block-social-links .is-selected .wp-social-link__is-incomplete, |
|
1311 |
.wp-social-link.wp-social-link__is-incomplete:hover, |
|
1312 |
.wp-social-link.wp-social-link__is-incomplete:focus { |
|
1313 |
opacity: 1; } |
|
1314 |
|
|
1315 |
[data-type="core/social-links"] .wp-social-link:focus { |
|
1316 |
opacity: 1; |
|
1317 |
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007cba; |
|
1318 |
box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color); |
|
1319 |
outline: 2px solid transparent; } |
|
1320 |
|
|
1321 |
.is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block[data-type="core/social-link"].is-selected::after, |
|
1322 |
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/social-link"]:not([contenteditable]):focus::after { |
|
1323 |
right: 8px; } |
|
1324 |
|
|
1325 |
.block-library-spacer__resize-container.has-show-handle { |
|
1326 |
background: #f0f0f0; } |
|
1327 |
.is-dark-theme .block-library-spacer__resize-container.has-show-handle { |
|
1328 |
background: rgba(255, 255, 255, 0.15); } |
|
1329 |
|
|
1330 |
.block-library-spacer__resize-container { |
|
1331 |
clear: both; |
|
1332 |
margin-bottom: 28px; } |
|
1333 |
.block-library-spacer__resize-container .components-resizable-box__handle::before { |
|
1334 |
content: none; } |
9
|
1335 |
|
|
1336 |
.edit-post-visual-editor p.wp-block-subhead { |
|
1337 |
color: #6c7781; |
|
1338 |
font-size: 1.1em; |
|
1339 |
font-style: italic; } |
|
1340 |
|
16
|
1341 |
.wp-block[data-align="left"] > .wp-block-table, |
|
1342 |
.wp-block[data-align="right"] > .wp-block-table, |
|
1343 |
.wp-block[data-align="center"] > .wp-block-table { |
|
1344 |
height: auto; } |
|
1345 |
.wp-block[data-align="left"] > .wp-block-table table, |
|
1346 |
.wp-block[data-align="right"] > .wp-block-table table, |
|
1347 |
.wp-block[data-align="center"] > .wp-block-table table { |
|
1348 |
width: auto; } |
|
1349 |
.wp-block[data-align="left"] > .wp-block-table td, |
|
1350 |
.wp-block[data-align="left"] > .wp-block-table th, |
|
1351 |
.wp-block[data-align="right"] > .wp-block-table td, |
|
1352 |
.wp-block[data-align="right"] > .wp-block-table th, |
|
1353 |
.wp-block[data-align="center"] > .wp-block-table td, |
|
1354 |
.wp-block[data-align="center"] > .wp-block-table th { |
|
1355 |
word-break: break-word; } |
9
|
1356 |
|
16
|
1357 |
.wp-block[data-align="center"] > .wp-block-table { |
9
|
1358 |
text-align: initial; } |
16
|
1359 |
.wp-block[data-align="center"] > .wp-block-table table { |
9
|
1360 |
margin: 0 auto; } |
|
1361 |
|
16
|
1362 |
.wp-block-table { |
|
1363 |
margin: 0; } |
|
1364 |
.wp-block-table table { |
|
1365 |
border-collapse: collapse; } |
|
1366 |
.wp-block-table td, |
|
1367 |
.wp-block-table th { |
|
1368 |
border: 1px solid; } |
|
1369 |
.wp-block-table td.is-selected, |
|
1370 |
.wp-block-table th.is-selected { |
|
1371 |
border-color: #007cba; |
|
1372 |
border-color: var(--wp-admin-theme-color); |
|
1373 |
box-shadow: inset 0 0 0 1px #007cba; |
|
1374 |
box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color); |
|
1375 |
border-style: double; } |
|
1376 |
.wp-block-table figcaption { |
|
1377 |
color: #555d66; |
|
1378 |
font-size: 13px; |
|
1379 |
text-align: center; } |
9
|
1380 |
|
16
|
1381 |
.blocks-table__placeholder-form.blocks-table__placeholder-form { |
|
1382 |
display: flex; |
|
1383 |
flex-direction: column; |
|
1384 |
align-items: flex-start; } |
|
1385 |
.blocks-table__placeholder-form.blocks-table__placeholder-form > * { |
|
1386 |
margin-bottom: 8px; } |
|
1387 |
@media (min-width: 782px) { |
|
1388 |
.blocks-table__placeholder-form.blocks-table__placeholder-form { |
|
1389 |
flex-direction: row; |
|
1390 |
align-items: flex-end; } |
|
1391 |
.blocks-table__placeholder-form.blocks-table__placeholder-form > * { |
|
1392 |
margin-bottom: 0; } } |
9
|
1393 |
|
16
|
1394 |
.blocks-table__placeholder-input { |
|
1395 |
width: 112px; |
|
1396 |
margin-right: 8px; |
|
1397 |
margin-bottom: 0; } |
|
1398 |
.blocks-table__placeholder-input input { |
|
1399 |
height: 36px; } |
|
1400 |
.blocks-table__placeholder-input .components-base-control__field { |
|
1401 |
margin-bottom: 0; } |
9
|
1402 |
|
|
1403 |
.block-editor .wp-block-tag-cloud a { |
|
1404 |
display: inline-block; |
|
1405 |
margin-right: 5px; } |
|
1406 |
|
|
1407 |
.block-editor .wp-block-tag-cloud span { |
|
1408 |
display: inline-block; |
|
1409 |
margin-left: 5px; |
|
1410 |
color: #8f98a1; |
|
1411 |
text-decoration: none; } |
|
1412 |
|
16
|
1413 |
.wp-block-template-part__placeholder-preview-dropdown-content .components-popover__content { |
|
1414 |
min-width: 320px; |
|
1415 |
padding: 0; } |
|
1416 |
|
|
1417 |
.wp-block-template-part__placeholder-preview-search-form { |
|
1418 |
border-bottom: 1px solid #ddd; } |
9
|
1419 |
|
16
|
1420 |
.wp-block-template-part__placeholder-preview-container { |
|
1421 |
background: #fff; |
|
1422 |
padding-bottom: 16px; } |
|
1423 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-preview-item { |
|
1424 |
border-radius: 2px; |
|
1425 |
cursor: pointer; |
|
1426 |
margin-top: 16px; |
|
1427 |
transition: all 0.05s ease-in-out; |
|
1428 |
border: 1px solid transparent; } |
|
1429 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-preview-item:hover { |
|
1430 |
border: 1px solid #007cba; |
|
1431 |
border: 1px solid var(--wp-admin-theme-color); } |
|
1432 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-preview-item:focus { |
|
1433 |
box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba; |
|
1434 |
box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px var(--wp-admin-theme-color); |
|
1435 |
outline: 2px solid transparent; } |
|
1436 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-preview-item.is-placeholder { |
|
1437 |
min-height: 100px; } |
|
1438 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-preview-item-title { |
|
1439 |
padding: 4px; |
|
1440 |
font-size: 12px; |
|
1441 |
text-align: left; } |
|
1442 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-panel-group-header { |
|
1443 |
padding: 16px 16px 0; } |
|
1444 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-panel-group-content { |
|
1445 |
padding: 0 16px; } |
|
1446 |
.wp-block-template-part__placeholder-preview-container .wp-block-template-part__placeholder-panel-group-title { |
|
1447 |
color: #007cba; |
|
1448 |
color: var(--wp-admin-theme-color); |
|
1449 |
text-transform: uppercase; |
|
1450 |
font-size: 11px; |
|
1451 |
font-weight: 500; } |
|
1452 |
|
|
1453 |
.wp-block-template-part__name-panel { |
|
1454 |
background-color: #fff; |
|
1455 |
border-radius: 2px; |
|
1456 |
box-shadow: 0 0 0 1px #1e1e1e; |
|
1457 |
outline: 1px solid transparent; |
|
1458 |
padding: 6px 12px; } |
|
1459 |
.wp-block-template-part__name-panel .components-base-control__field { |
|
1460 |
align-items: center; |
|
1461 |
display: flex; |
|
1462 |
margin-bottom: 0; } |
|
1463 |
.wp-block-template-part__name-panel .components-base-control__label { |
|
1464 |
margin-bottom: 0; |
|
1465 |
margin-right: 8px; } |
|
1466 |
|
|
1467 |
.is-navigate-mode .is-selected .wp-block-template-part__name-panel { |
|
1468 |
box-shadow: 0 0 0 1px #007cba; |
|
1469 |
box-shadow: 0 0 0 1px var(--wp-admin-theme-color); } |
|
1470 |
.is-dark-theme .is-navigate-mode .is-selected .wp-block-template-part__name-panel { |
|
1471 |
box-shadow: 0 0 0 1px #007cba; |
|
1472 |
box-shadow: 0 0 0 1px var(--wp-admin-theme-color); } |
|
1473 |
|
|
1474 |
.wp-block-text-columns .block-editor-rich-text__editable:focus { |
|
1475 |
outline: 1px solid #ddd; } |
|
1476 |
|
|
1477 |
pre.wp-block-verse { |
|
1478 |
color: #1e1e1e; |
9
|
1479 |
white-space: nowrap; |
|
1480 |
font-family: inherit; |
|
1481 |
font-size: inherit; |
|
1482 |
padding: 1em; |
|
1483 |
overflow: auto; } |
|
1484 |
|
16
|
1485 |
.wp-block[data-align="center"] > .wp-block-video { |
9
|
1486 |
text-align: center; } |
|
1487 |
|
16
|
1488 |
.editor-video-poster-control .components-base-control__label { |
|
1489 |
display: block; } |
|
1490 |
|
9
|
1491 |
.editor-video-poster-control .components-button { |
|
1492 |
margin-right: 8px; } |
|
1493 |
|
16
|
1494 |
.wp-block[data-type="core/widget-area"] { |
|
1495 |
max-width: 700px; } |
|
1496 |
|
|
1497 |
.wp-block-widget-area > .components-panel__body > .block-editor-inner-blocks { |
|
1498 |
padding-top: 24px; } |
|
1499 |
|
|
1500 |
/** |
|
1501 |
* Import styles from internal editor components used by the blocks. |
|
1502 |
*/ |
|
1503 |
.block-editor-block-list__layout .reusable-block-edit-panel { |
|
1504 |
align-items: center; |
|
1505 |
display: flex; |
|
1506 |
flex-wrap: wrap; |
|
1507 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
1508 |
font-size: 13px; |
|
1509 |
padding: 6px 12px; |
|
1510 |
border-radius: 2px; |
|
1511 |
background-color: #fff; |
|
1512 |
box-shadow: 0 0 0 1px #1e1e1e; |
|
1513 |
outline: 1px solid transparent; } |
|
1514 |
.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info { |
|
1515 |
margin-right: auto; } |
|
1516 |
.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label { |
|
1517 |
margin-right: 8px; |
|
1518 |
white-space: nowrap; |
|
1519 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
1520 |
font-size: 13px; } |
|
1521 |
.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title { |
|
1522 |
flex: 1 1 100%; } |
|
1523 |
.block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button { |
|
1524 |
flex-shrink: 0; } |
|
1525 |
@media (min-width: 960px) { |
|
1526 |
.block-editor-block-list__layout .reusable-block-edit-panel { |
|
1527 |
flex-wrap: nowrap; } |
|
1528 |
.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title { |
|
1529 |
margin: 0; } |
|
1530 |
.block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button { |
|
1531 |
margin: 0 0 0 8px; } } |
|
1532 |
|
|
1533 |
.reusable-block-edit-panel__title[type="text"] { |
|
1534 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
1535 |
padding: 6px 8px; |
|
1536 |
box-shadow: 0 0 0 transparent; |
|
1537 |
transition: box-shadow 0.1s linear; |
|
1538 |
border-radius: 2px; |
|
1539 |
border: 1px solid #757575; |
|
1540 |
/* Fonts smaller than 16px causes mobile safari to zoom. */ |
|
1541 |
font-size: 16px; |
|
1542 |
/* Override core line-height. To be reviewed. */ |
|
1543 |
line-height: normal; } |
|
1544 |
@media (prefers-reduced-motion: reduce) { |
|
1545 |
.reusable-block-edit-panel__title[type="text"] { |
|
1546 |
transition-duration: 0s; } } |
|
1547 |
@media (min-width: 600px) { |
|
1548 |
.reusable-block-edit-panel__title[type="text"] { |
|
1549 |
font-size: 13px; |
|
1550 |
/* Override core line-height. To be reviewed. */ |
|
1551 |
line-height: normal; } } |
|
1552 |
.reusable-block-edit-panel__title[type="text"]:focus { |
|
1553 |
border-color: #007cba; |
|
1554 |
border-color: var(--wp-admin-theme-color); |
|
1555 |
box-shadow: 0 0 0 0.5px #007cba; |
|
1556 |
box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); |
|
1557 |
outline: 2px solid transparent; } |
|
1558 |
.reusable-block-edit-panel__title[type="text"]::-webkit-input-placeholder { |
|
1559 |
color: rgba(30, 30, 30, 0.62); } |
|
1560 |
.reusable-block-edit-panel__title[type="text"]::-moz-placeholder { |
|
1561 |
opacity: 1; |
|
1562 |
color: rgba(30, 30, 30, 0.62); } |
|
1563 |
.reusable-block-edit-panel__title[type="text"]:-ms-input-placeholder { |
|
1564 |
color: rgba(30, 30, 30, 0.62); } |
|
1565 |
.is-dark-theme .reusable-block-edit-panel__title[type="text"]::-webkit-input-placeholder { |
|
1566 |
color: rgba(255, 255, 255, 0.65); } |
|
1567 |
.is-dark-theme .reusable-block-edit-panel__title[type="text"]::-moz-placeholder { |
|
1568 |
opacity: 1; |
|
1569 |
color: rgba(255, 255, 255, 0.65); } |
|
1570 |
.is-dark-theme .reusable-block-edit-panel__title[type="text"]:-ms-input-placeholder { |
|
1571 |
color: rgba(255, 255, 255, 0.65); } |
|
1572 |
|
|
1573 |
.is-navigate-mode .is-selected .reusable-block-edit-panel { |
|
1574 |
box-shadow: 0 0 0 1px #007cba; |
|
1575 |
box-shadow: 0 0 0 1px var(--wp-admin-theme-color); } |
|
1576 |
.is-dark-theme .is-navigate-mode .is-selected .reusable-block-edit-panel { |
|
1577 |
box-shadow: 0 0 0 1px #007cba; |
|
1578 |
box-shadow: 0 0 0 1px var(--wp-admin-theme-color); } |
|
1579 |
|
|
1580 |
/** |
|
1581 |
* Editor Normalization Styles |
|
1582 |
* |
|
1583 |
* These are only output in the editor, but styles here are NOT prefixed .editor-styles-wrapper. |
|
1584 |
* This allows us to create normalization styles that are easily overridden by editor styles. |
|
1585 |
*/ |
|
1586 |
.block-editor-block-list__block { |
|
1587 |
margin-top: 28px; |
|
1588 |
margin-bottom: 28px; } |
|
1589 |
|
|
1590 |
#end-resizable-editor-section { |
|
1591 |
display: none; } |