9
|
1 |
@charset "UTF-8"; |
|
2 |
/** |
|
3 |
* Colors |
|
4 |
*/ |
|
5 |
/** |
16
|
6 |
* Deprecated colors. |
|
7 |
* Please avoid using these. |
|
8 |
*/ |
|
9 |
/** |
9
|
10 |
* Breakpoints & Media Queries |
|
11 |
*/ |
|
12 |
/** |
16
|
13 |
* Colors |
|
14 |
*/ |
|
15 |
/** |
|
16 |
* Deprecated colors. |
|
17 |
* Please avoid using these. |
|
18 |
*/ |
|
19 |
/** |
|
20 |
* Fonts & basic variables. |
|
21 |
*/ |
|
22 |
/** |
|
23 |
* Grid System. |
|
24 |
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/ |
|
25 |
*/ |
|
26 |
/** |
|
27 |
* Dimensions. |
|
28 |
*/ |
|
29 |
/** |
|
30 |
* Shadows. |
|
31 |
*/ |
|
32 |
/** |
|
33 |
* Editor widths. |
|
34 |
*/ |
|
35 |
/** |
|
36 |
* Block UI. |
|
37 |
*/ |
|
38 |
/** |
|
39 |
* Border radii. |
9
|
40 |
*/ |
|
41 |
/** |
|
42 |
* Breakpoint mixins |
|
43 |
*/ |
|
44 |
/** |
|
45 |
* Long content fade mixin |
|
46 |
* |
|
47 |
* Creates a fading overlay to signify that the content is longer |
|
48 |
* than the space allows. |
|
49 |
*/ |
|
50 |
/** |
16
|
51 |
* Focus styles. |
9
|
52 |
*/ |
|
53 |
/** |
|
54 |
* Applies editor left position to the selector passed as argument |
|
55 |
*/ |
|
56 |
/** |
|
57 |
* Styles that are reused verbatim in a few places |
|
58 |
*/ |
|
59 |
/** |
|
60 |
* Allows users to opt-out of animations via OS-level preferences. |
|
61 |
*/ |
16
|
62 |
/** |
|
63 |
* Reset default styles for JavaScript UI based pages. |
|
64 |
* This is a WP-admin agnostic reset |
|
65 |
*/ |
|
66 |
/** |
|
67 |
* Reset the WP Admin page styles for Gutenberg-like pages. |
|
68 |
*/ |
|
69 |
:root { |
|
70 |
--wp-admin-theme-color: #007cba; |
|
71 |
--wp-admin-theme-color-darker-10: #006ba1; |
|
72 |
--wp-admin-theme-color-darker-20: #005a87; } |
|
73 |
|
|
74 |
.editor-autocompleters__user .editor-autocompleters__no-avatar::before { |
|
75 |
/* stylelint-disable */ |
|
76 |
font: normal 20px/1 dashicons; |
|
77 |
/* stylelint-enable */ |
|
78 |
content: "\f110"; |
|
79 |
margin-left: 5px; |
|
80 |
vertical-align: middle; } |
9
|
81 |
|
|
82 |
.editor-autocompleters__user .editor-autocompleters__user-avatar { |
|
83 |
margin-left: 8px; |
|
84 |
flex-grow: 0; |
|
85 |
flex-shrink: 0; |
|
86 |
max-width: none; |
|
87 |
width: 24px; |
|
88 |
height: 24px; } |
|
89 |
|
|
90 |
.editor-autocompleters__user .editor-autocompleters__user-name { |
|
91 |
white-space: nowrap; |
|
92 |
text-overflow: ellipsis; |
|
93 |
overflow: hidden; |
|
94 |
max-width: 200px; |
|
95 |
flex-shrink: 0; |
|
96 |
flex-grow: 1; } |
|
97 |
|
|
98 |
.editor-autocompleters__user .editor-autocompleters__user-slug { |
|
99 |
margin-right: 8px; |
|
100 |
color: #8f98a1; |
|
101 |
white-space: nowrap; |
|
102 |
text-overflow: ellipsis; |
|
103 |
overflow: none; |
|
104 |
max-width: 100px; |
|
105 |
flex-grow: 0; |
|
106 |
flex-shrink: 0; } |
|
107 |
|
|
108 |
.editor-autocompleters__user:hover .editor-autocompleters__user-slug { |
16
|
109 |
color: #007cba; |
|
110 |
color: var(--wp-admin-theme-color); } |
9
|
111 |
|
|
112 |
.document-outline { |
|
113 |
margin: 20px 0; } |
|
114 |
.document-outline ul { |
|
115 |
margin: 0; |
|
116 |
padding: 0; } |
|
117 |
|
|
118 |
.document-outline__item { |
|
119 |
display: flex; |
|
120 |
margin: 4px 0; } |
|
121 |
.document-outline__item a { |
|
122 |
text-decoration: none; } |
|
123 |
.document-outline__item .document-outline__emdash::before { |
16
|
124 |
color: #ddd; |
9
|
125 |
margin-left: 4px; } |
|
126 |
.document-outline__item.is-h2 .document-outline__emdash::before { |
|
127 |
content: "—"; } |
|
128 |
.document-outline__item.is-h3 .document-outline__emdash::before { |
|
129 |
content: "——"; } |
|
130 |
.document-outline__item.is-h4 .document-outline__emdash::before { |
|
131 |
content: "———"; } |
|
132 |
.document-outline__item.is-h5 .document-outline__emdash::before { |
|
133 |
content: "————"; } |
|
134 |
.document-outline__item.is-h6 .document-outline__emdash::before { |
|
135 |
content: "—————"; } |
|
136 |
|
|
137 |
.document-outline__button { |
|
138 |
cursor: pointer; |
|
139 |
background: none; |
|
140 |
border: none; |
|
141 |
display: flex; |
|
142 |
align-items: flex-start; |
|
143 |
margin: 0 -1px 0 0; |
|
144 |
padding: 2px 1px 2px 5px; |
16
|
145 |
color: #1e1e1e; |
|
146 |
text-align: right; |
|
147 |
border-radius: 2px; } |
9
|
148 |
.document-outline__button:disabled { |
|
149 |
cursor: default; } |
|
150 |
.document-outline__button:focus { |
16
|
151 |
box-shadow: 0 0 0 1.5px #007cba; |
|
152 |
box-shadow: 0 0 0 1.5px var(--wp-admin-theme-color); |
|
153 |
outline: 2px solid transparent; } |
9
|
154 |
|
|
155 |
.document-outline__level { |
16
|
156 |
background: #ddd; |
|
157 |
color: #1e1e1e; |
9
|
158 |
border-radius: 3px; |
|
159 |
font-size: 13px; |
|
160 |
padding: 1px 6px; |
|
161 |
margin-left: 4px; } |
|
162 |
.is-invalid .document-outline__level { |
|
163 |
background: #f0b849; } |
|
164 |
|
|
165 |
.document-outline__item-content { |
|
166 |
padding: 1px 0; } |
|
167 |
|
16
|
168 |
.components-editor-notices__dismissible { |
|
169 |
position: -webkit-sticky; |
|
170 |
position: sticky; |
|
171 |
top: 0; |
|
172 |
left: 0; |
|
173 |
color: #1e1e1e; } |
|
174 |
|
|
175 |
.components-editor-notices__pinned { |
|
176 |
position: relative; |
|
177 |
right: 0; |
|
178 |
top: 0; |
|
179 |
left: 0; |
|
180 |
color: #1e1e1e; } |
|
181 |
|
|
182 |
.components-editor-notices__dismissible .components-notice, |
|
183 |
.components-editor-notices__pinned .components-notice { |
|
184 |
box-sizing: border-box; |
|
185 |
margin: 0; |
|
186 |
border-bottom: 1px solid rgba(0, 0, 0, 0.2); |
|
187 |
padding: 0 12px; |
|
188 |
min-height: 60px; } |
|
189 |
.components-editor-notices__dismissible .components-notice .components-notice__dismiss, |
|
190 |
.components-editor-notices__pinned .components-notice .components-notice__dismiss { |
|
191 |
margin-top: 12px; } |
|
192 |
|
|
193 |
.components-editor-notices__snackbar { |
|
194 |
width: 100%; } |
|
195 |
@media (min-width: 782px) { |
|
196 |
.components-editor-notices__snackbar { |
|
197 |
width: fit-content; |
|
198 |
width: -moz-fit-content; } } |
|
199 |
|
|
200 |
.entities-saved-states__panel { |
|
201 |
box-sizing: border-box; |
|
202 |
background: #fff; |
|
203 |
position: fixed; |
|
204 |
z-index: 100001; |
|
205 |
top: 46px; |
|
206 |
bottom: 0; |
|
207 |
left: 0; |
|
208 |
right: 0; |
|
209 |
overflow: auto; |
|
210 |
box-sizing: border-box; } |
|
211 |
.entities-saved-states__panel *, |
|
212 |
.entities-saved-states__panel *::before, |
|
213 |
.entities-saved-states__panel *::after { |
|
214 |
box-sizing: inherit; } |
|
215 |
.entities-saved-states__panel .entities-saved-states__find-entity { |
|
216 |
display: none; } |
|
217 |
.entities-saved-states__panel .entities-saved-states__find-entity-small { |
|
218 |
display: block; } |
|
219 |
@media (min-width: 782px) { |
|
220 |
.entities-saved-states__panel { |
|
221 |
z-index: 99998; |
|
222 |
top: 32px; |
|
223 |
right: auto; |
|
224 |
width: 280px; |
|
225 |
border-right: 1px solid #ddd; } |
|
226 |
body.is-fullscreen-mode .entities-saved-states__panel { |
|
227 |
top: 0; } |
|
228 |
.entities-saved-states__panel .entities-saved-states__find-entity { |
|
229 |
display: block; } |
|
230 |
.entities-saved-states__panel .entities-saved-states__find-entity-small { |
|
231 |
display: none; } } |
|
232 |
.entities-saved-states__panel .entities-saved-states__panel-header { |
|
233 |
background: #fff; |
|
234 |
padding-right: 8px; |
|
235 |
padding-left: 8px; |
|
236 |
height: 61px; |
|
237 |
border-bottom: 1px solid #ddd; |
|
238 |
display: flex; |
|
239 |
align-items: center; |
|
240 |
align-content: space-between; } |
|
241 |
.entities-saved-states__panel .entities-saved-states__panel-header .editor-entities-saved-states__save-button { |
|
242 |
margin: auto; } |
|
243 |
.entities-saved-states__panel .entities-saved-states__panel-header .components-button.has-icon { |
|
244 |
position: absolute; |
|
245 |
left: 8px; } |
|
246 |
.entities-saved-states__panel .entities-saved-states__text-prompt { |
|
247 |
border-bottom: 1px solid #ddd; |
|
248 |
padding: 16px; |
|
249 |
padding-bottom: 4px; } |
|
250 |
|
9
|
251 |
.editor-error-boundary { |
|
252 |
margin: auto; |
|
253 |
max-width: 780px; |
|
254 |
padding: 20px; |
|
255 |
margin-top: 60px; |
16
|
256 |
box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2); } |
9
|
257 |
|
|
258 |
.editor-page-attributes__template { |
|
259 |
margin-bottom: 10px; } |
|
260 |
.editor-page-attributes__template label, |
|
261 |
.editor-page-attributes__template select { |
|
262 |
width: 100%; } |
|
263 |
|
|
264 |
.editor-page-attributes__order { |
|
265 |
width: 100%; } |
|
266 |
.editor-page-attributes__order .components-base-control__field { |
|
267 |
display: flex; |
|
268 |
justify-content: space-between; |
|
269 |
align-items: center; } |
|
270 |
.editor-page-attributes__order input { |
|
271 |
width: 66px; } |
|
272 |
|
|
273 |
.editor-post-excerpt__textarea { |
|
274 |
width: 100%; |
|
275 |
margin-bottom: 10px; } |
|
276 |
|
|
277 |
.editor-post-featured-image { |
|
278 |
padding: 0; } |
16
|
279 |
.editor-post-featured-image__container { |
|
280 |
margin-bottom: 1em; |
|
281 |
position: relative; } |
9
|
282 |
.editor-post-featured-image .components-spinner { |
16
|
283 |
position: absolute; |
|
284 |
top: 50%; |
|
285 |
right: 50%; |
|
286 |
margin-top: -9px; |
|
287 |
margin-right: -9px; } |
9
|
288 |
.editor-post-featured-image .components-button + .components-button { |
16
|
289 |
display: block; |
|
290 |
margin-top: 1em; } |
9
|
291 |
.editor-post-featured-image .components-responsive-wrapper__content { |
|
292 |
max-width: 100%; |
|
293 |
width: auto; } |
|
294 |
|
|
295 |
.editor-post-featured-image__toggle, |
|
296 |
.editor-post-featured-image__preview { |
|
297 |
display: block; |
|
298 |
width: 100%; |
|
299 |
padding: 0; |
|
300 |
transition: all 0.1s ease-out; |
16
|
301 |
box-shadow: 0 0 0 0 #007cba; |
|
302 |
box-shadow: 0 0 0 0 var(--wp-admin-theme-color); } |
|
303 |
@media (prefers-reduced-motion: reduce) { |
|
304 |
.editor-post-featured-image__toggle, |
|
305 |
.editor-post-featured-image__preview { |
|
306 |
transition-duration: 0s; } } |
|
307 |
|
|
308 |
.editor-post-featured-image__preview { |
|
309 |
height: auto; } |
9
|
310 |
|
|
311 |
.editor-post-featured-image__preview:not(:disabled):not([aria-disabled="true"]):focus { |
16
|
312 |
box-shadow: 0 0 0 4px #007cba; |
|
313 |
box-shadow: 0 0 0 4px var(--wp-admin-theme-color); } |
9
|
314 |
|
|
315 |
.editor-post-featured-image__toggle { |
16
|
316 |
border-radius: 2px; |
|
317 |
background-color: #f0f0f0; |
|
318 |
min-height: 90px; |
9
|
319 |
line-height: 20px; |
|
320 |
padding: 8px 0; |
|
321 |
text-align: center; } |
|
322 |
.editor-post-featured-image__toggle:hover { |
16
|
323 |
background: #ddd; |
|
324 |
color: #1e1e1e; } |
9
|
325 |
|
|
326 |
.editor-post-format { |
|
327 |
flex-direction: column; |
|
328 |
align-items: stretch; |
|
329 |
width: 100%; } |
|
330 |
|
|
331 |
.editor-post-format__content { |
|
332 |
display: inline-flex; |
|
333 |
justify-content: space-between; |
|
334 |
align-items: center; |
|
335 |
width: 100%; } |
|
336 |
|
|
337 |
.editor-post-format__suggestion { |
|
338 |
text-align: left; |
|
339 |
font-size: 13px; } |
|
340 |
|
|
341 |
.editor-post-last-revision__title { |
|
342 |
width: 100%; |
|
343 |
font-weight: 600; } |
|
344 |
.editor-post-last-revision__title .dashicon { |
|
345 |
margin-left: 5px; } |
|
346 |
|
16
|
347 |
.components-button.editor-post-last-revision__title { |
|
348 |
height: 100%; } |
|
349 |
.components-button.editor-post-last-revision__title:hover, .components-button.editor-post-last-revision__title:active { |
|
350 |
background: #f0f0f0; } |
|
351 |
.components-button.editor-post-last-revision__title:focus { |
|
352 |
box-shadow: inset 0 0 0 1.5px #007cba; |
|
353 |
box-shadow: inset 0 0 0 1.5px var(--wp-admin-theme-color); |
|
354 |
border-radius: 0; } |
9
|
355 |
|
|
356 |
.editor-post-locked-modal { |
|
357 |
height: auto; |
|
358 |
padding-left: 10px; |
|
359 |
padding-right: 10px; |
|
360 |
padding-top: 10px; |
|
361 |
max-width: 480px; } |
|
362 |
.editor-post-locked-modal .components-modal__header { |
|
363 |
height: 36px; } |
|
364 |
.editor-post-locked-modal .components-modal__content { |
|
365 |
height: auto; } |
|
366 |
|
|
367 |
.editor-post-locked-modal__buttons { |
|
368 |
margin-top: 10px; } |
|
369 |
.editor-post-locked-modal__buttons .components-button { |
|
370 |
margin-left: 5px; } |
|
371 |
|
|
372 |
.editor-post-locked-modal__avatar { |
|
373 |
float: right; |
|
374 |
margin: 5px; |
|
375 |
margin-left: 15px; } |
|
376 |
|
16
|
377 |
.editor-post-publish-button__button.has-changes-dot::before { |
|
378 |
background: currentcolor; |
9
|
379 |
border-radius: 4px; |
16
|
380 |
content: ""; |
|
381 |
height: 8px; |
|
382 |
margin: auto -3px auto 5px; |
|
383 |
width: 8px; } |
9
|
384 |
|
|
385 |
.editor-post-publish-panel { |
16
|
386 |
background: #fff; } |
9
|
387 |
|
|
388 |
.editor-post-publish-panel__content { |
16
|
389 |
min-height: calc(100% - 144px); } |
9
|
390 |
.editor-post-publish-panel__content .components-spinner { |
|
391 |
display: block; |
|
392 |
margin: 100px auto 0; } |
|
393 |
|
|
394 |
.editor-post-publish-panel__header { |
|
395 |
background: #fff; |
|
396 |
padding-right: 16px; |
16
|
397 |
padding-left: 16px; |
|
398 |
height: 61px; |
|
399 |
border-bottom: 1px solid #ddd; |
9
|
400 |
display: flex; |
|
401 |
align-items: center; |
|
402 |
align-content: space-between; } |
16
|
403 |
.editor-post-publish-panel__header .components-button { |
|
404 |
width: 100%; |
|
405 |
justify-content: center; } |
|
406 |
.editor-post-publish-panel__header .has-icon { |
|
407 |
margin-right: auto; |
|
408 |
width: auto; } |
|
409 |
|
|
410 |
.editor-post-publish-panel__header-publish-button, |
|
411 |
.editor-post-publish-panel__header-cancel-button { |
|
412 |
flex-grow: 1; } |
|
413 |
@media (min-width: 480px) { |
|
414 |
.editor-post-publish-panel__header-publish-button, |
|
415 |
.editor-post-publish-panel__header-cancel-button { |
|
416 |
max-width: 160px; } } |
9
|
417 |
|
|
418 |
.editor-post-publish-panel__header-publish-button { |
16
|
419 |
padding-left: 4px; } |
|
420 |
|
|
421 |
.editor-post-publish-panel__header-cancel-button { |
|
422 |
padding-right: 4px; } |
9
|
423 |
|
|
424 |
.editor-post-publish-panel__header-published { |
|
425 |
flex-grow: 1; } |
|
426 |
|
|
427 |
.editor-post-publish-panel__footer { |
|
428 |
padding: 16px; } |
|
429 |
|
|
430 |
.components-button.editor-post-publish-panel__toggle.is-primary { |
|
431 |
display: inline-flex; |
|
432 |
align-items: center; } |
|
433 |
.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon { |
|
434 |
display: none; } |
|
435 |
.components-button.editor-post-publish-panel__toggle.is-primary .dashicon { |
|
436 |
margin-left: -4px; } |
|
437 |
|
|
438 |
.editor-post-publish-panel__link { |
|
439 |
font-weight: 400; |
16
|
440 |
padding-right: 4px; } |
9
|
441 |
|
|
442 |
.editor-post-publish-panel__prepublish { |
|
443 |
padding: 16px; } |
|
444 |
.editor-post-publish-panel__prepublish strong { |
16
|
445 |
color: #1e1e1e; } |
9
|
446 |
.editor-post-publish-panel__prepublish .components-panel__body { |
|
447 |
background: #fff; |
|
448 |
margin-right: -16px; |
|
449 |
margin-left: -16px; } |
|
450 |
.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend { |
|
451 |
display: none; } |
|
452 |
|
|
453 |
.post-publish-panel__postpublish .components-panel__body { |
16
|
454 |
border-bottom: 1px solid #f0f0f0; |
9
|
455 |
border-top: none; } |
|
456 |
|
|
457 |
.post-publish-panel__postpublish-buttons { |
|
458 |
display: flex; |
|
459 |
align-content: space-between; |
|
460 |
flex-wrap: wrap; |
|
461 |
margin: -5px; } |
|
462 |
.post-publish-panel__postpublish-buttons > * { |
|
463 |
flex-grow: 1; |
|
464 |
margin: 5px; } |
|
465 |
.post-publish-panel__postpublish-buttons .components-button { |
|
466 |
height: auto; |
|
467 |
justify-content: center; |
|
468 |
padding: 3px 10px 4px; |
|
469 |
line-height: 1.6; |
|
470 |
text-align: center; |
|
471 |
white-space: normal; } |
|
472 |
.post-publish-panel__postpublish-buttons .components-clipboard-button { |
|
473 |
width: 100%; } |
|
474 |
|
|
475 |
.post-publish-panel__postpublish-post-address { |
|
476 |
margin-bottom: 16px; } |
|
477 |
.post-publish-panel__postpublish-post-address input[readonly] { |
|
478 |
padding: 10px; |
16
|
479 |
background: #ddd; |
9
|
480 |
overflow: hidden; |
|
481 |
text-overflow: ellipsis; } |
|
482 |
|
|
483 |
.post-publish-panel__postpublish-header { |
|
484 |
font-weight: 500; } |
|
485 |
|
|
486 |
.post-publish-panel__postpublish-subheader { |
|
487 |
margin: 0 0 8px; } |
|
488 |
|
|
489 |
.post-publish-panel__tip { |
|
490 |
color: #f0b849; } |
|
491 |
|
|
492 |
.editor-post-saved-state { |
|
493 |
display: flex; |
|
494 |
align-items: center; |
16
|
495 |
width: 28px; |
|
496 |
padding: 12px 4px; |
|
497 |
color: #757575; |
|
498 |
overflow: hidden; |
|
499 |
white-space: nowrap; } |
|
500 |
.editor-post-saved-state svg { |
9
|
501 |
display: inline-block; |
16
|
502 |
flex: 0 0 auto; |
|
503 |
fill: currentColor; |
9
|
504 |
margin-left: 8px; } |
|
505 |
@media (min-width: 600px) { |
|
506 |
.editor-post-saved-state { |
|
507 |
width: auto; |
|
508 |
padding: 8px 12px; |
|
509 |
text-indent: inherit; } |
16
|
510 |
.editor-post-saved-state svg { |
9
|
511 |
margin-left: 4px; } } |
|
512 |
|
|
513 |
.editor-post-taxonomies__hierarchical-terms-list { |
|
514 |
max-height: 14em; |
16
|
515 |
overflow: auto; |
|
516 |
margin-right: -5.5px; |
|
517 |
padding-right: 5.5px; |
|
518 |
margin-top: -5.5px; |
|
519 |
padding-top: 5.5px; } |
9
|
520 |
|
|
521 |
.editor-post-taxonomies__hierarchical-terms-choice { |
|
522 |
margin-bottom: 8px; } |
|
523 |
|
|
524 |
.editor-post-taxonomies__hierarchical-terms-subchoices { |
|
525 |
margin-top: 8px; |
|
526 |
margin-right: 16px; } |
|
527 |
|
|
528 |
.components-button.editor-post-taxonomies__hierarchical-terms-submit, |
|
529 |
.components-button.editor-post-taxonomies__hierarchical-terms-add { |
|
530 |
margin-top: 12px; } |
|
531 |
|
|
532 |
.editor-post-taxonomies__hierarchical-terms-label { |
|
533 |
display: inline-block; |
|
534 |
margin-top: 12px; } |
|
535 |
|
|
536 |
.editor-post-taxonomies__hierarchical-terms-input { |
|
537 |
margin-top: 8px; |
|
538 |
width: 100%; } |
|
539 |
|
|
540 |
.editor-post-taxonomies__hierarchical-terms-filter { |
|
541 |
margin-bottom: 8px; |
|
542 |
width: 100%; } |
|
543 |
|
16
|
544 |
.edit-post-text-editor__body textarea.editor-post-text-editor { |
|
545 |
border: 1px solid #ccc; |
9
|
546 |
display: block; |
16
|
547 |
margin: 0; |
9
|
548 |
width: 100%; |
|
549 |
box-shadow: none; |
|
550 |
resize: none; |
|
551 |
overflow: hidden; |
|
552 |
font-family: Menlo, Consolas, monaco, monospace; |
16
|
553 |
line-height: 2.4; |
|
554 |
border-radius: 0; |
|
555 |
min-height: 200px; |
|
556 |
padding: 16px; |
9
|
557 |
/* Fonts smaller than 16px causes mobile safari to zoom. */ |
16
|
558 |
font-size: 16px !important; } |
9
|
559 |
@media (min-width: 600px) { |
16
|
560 |
.edit-post-text-editor__body textarea.editor-post-text-editor { |
|
561 |
padding: 24px; } } |
|
562 |
@media (min-width: 600px) { |
|
563 |
.edit-post-text-editor__body textarea.editor-post-text-editor { |
|
564 |
font-size: 15px !important; } } |
|
565 |
.edit-post-text-editor__body textarea.editor-post-text-editor:focus { |
|
566 |
border: 1px solid #1e1e1e; |
9
|
567 |
box-shadow: none; |
16
|
568 |
position: relative; } |
9
|
569 |
|
16
|
570 |
.edit-post-post-visibility__dialog, |
|
571 |
.editor-post-visibility__dialog-fieldset { |
9
|
572 |
padding: 4px; |
|
573 |
padding-top: 0; } |
16
|
574 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend, |
|
575 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-legend { |
|
576 |
font-weight: 600; |
|
577 |
margin-bottom: 1em; |
|
578 |
margin-top: 0.5em; |
|
579 |
padding: 0; } |
|
580 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"], |
|
581 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"] { |
|
582 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
583 |
padding: 6px 8px; |
|
584 |
box-shadow: 0 0 0 transparent; |
|
585 |
transition: box-shadow 0.1s linear; |
|
586 |
border-radius: 2px; |
|
587 |
border: 1px solid #757575; |
|
588 |
/* Fonts smaller than 16px causes mobile safari to zoom. */ |
|
589 |
font-size: 16px; |
|
590 |
/* Override core line-height. To be reviewed. */ |
|
591 |
line-height: normal; |
|
592 |
border: 1px solid #1e1e1e; |
|
593 |
margin-left: 12px; |
|
594 |
transition: none; |
|
595 |
border-radius: 50%; |
|
596 |
margin-top: 2px; } |
|
597 |
@media (prefers-reduced-motion: reduce) { |
|
598 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"], |
|
599 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"] { |
|
600 |
transition-duration: 0s; } } |
|
601 |
@media (min-width: 600px) { |
|
602 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"], |
|
603 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"] { |
|
604 |
font-size: 13px; |
|
605 |
/* Override core line-height. To be reviewed. */ |
|
606 |
line-height: normal; } } |
|
607 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]:focus, |
|
608 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]:focus { |
|
609 |
border-color: #007cba; |
|
610 |
border-color: var(--wp-admin-theme-color); |
|
611 |
box-shadow: 0 0 0 0.5px #007cba; |
|
612 |
box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); |
|
613 |
outline: 2px solid transparent; } |
|
614 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]::-webkit-input-placeholder, |
|
615 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]::-webkit-input-placeholder { |
|
616 |
color: rgba(30, 30, 30, 0.62); } |
|
617 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]::-moz-placeholder, |
|
618 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]::-moz-placeholder { |
|
619 |
opacity: 1; |
|
620 |
color: rgba(30, 30, 30, 0.62); } |
|
621 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]:-ms-input-placeholder, |
|
622 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]:-ms-input-placeholder { |
|
623 |
color: rgba(30, 30, 30, 0.62); } |
|
624 |
.is-dark-theme .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]::-webkit-input-placeholder, .is-dark-theme |
|
625 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]::-webkit-input-placeholder { |
|
626 |
color: rgba(255, 255, 255, 0.65); } |
|
627 |
.is-dark-theme .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]::-moz-placeholder, .is-dark-theme |
|
628 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]::-moz-placeholder { |
|
629 |
opacity: 1; |
|
630 |
color: rgba(255, 255, 255, 0.65); } |
|
631 |
.is-dark-theme .edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]:-ms-input-placeholder, .is-dark-theme |
|
632 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]:-ms-input-placeholder { |
|
633 |
color: rgba(255, 255, 255, 0.65); } |
|
634 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]:checked::before, |
|
635 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]:checked::before { |
|
636 |
width: 7px; |
|
637 |
height: 7px; |
|
638 |
margin: 8px 8px 0 0; |
|
639 |
background-color: #fff; |
|
640 |
border: 3px solid #fff; } |
|
641 |
@media (min-width: 782px) { |
|
642 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]:checked::before, |
|
643 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]:checked::before { |
|
644 |
width: 6px; |
|
645 |
height: 6px; |
|
646 |
margin: 4px 4px 0 0; } } |
|
647 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]:focus, |
|
648 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]:focus { |
|
649 |
box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #007cba; |
|
650 |
box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--wp-admin-theme-color); |
|
651 |
outline: 2px solid transparent; } |
|
652 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio[type="radio"]:checked, |
|
653 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-radio[type="radio"]:checked { |
|
654 |
background: #007cba; |
|
655 |
background: var(--wp-admin-theme-color); |
|
656 |
border-color: #007cba; |
|
657 |
border-color: var(--wp-admin-theme-color); } |
|
658 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-label, |
|
659 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-label { |
|
660 |
font-weight: 600; } |
|
661 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-info, |
|
662 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-info { |
|
663 |
margin-top: 0; |
|
664 |
margin-right: 28px; } |
|
665 |
.edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info, |
|
666 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info { |
|
667 |
margin-bottom: 0; } |
|
668 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"], |
|
669 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"] { |
|
670 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
671 |
padding: 6px 8px; |
|
672 |
box-shadow: 0 0 0 transparent; |
|
673 |
transition: box-shadow 0.1s linear; |
|
674 |
border-radius: 2px; |
|
675 |
border: 1px solid #757575; |
|
676 |
/* Fonts smaller than 16px causes mobile safari to zoom. */ |
|
677 |
font-size: 16px; |
|
678 |
/* Override core line-height. To be reviewed. */ |
|
679 |
line-height: normal; |
|
680 |
margin-right: 28px; } |
|
681 |
@media (prefers-reduced-motion: reduce) { |
|
682 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"], |
|
683 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"] { |
|
684 |
transition-duration: 0s; } } |
|
685 |
@media (min-width: 600px) { |
|
686 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"], |
|
687 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"] { |
|
688 |
font-size: 13px; |
|
689 |
/* Override core line-height. To be reviewed. */ |
|
690 |
line-height: normal; } } |
|
691 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"]:focus, |
|
692 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"]:focus { |
|
693 |
border-color: #007cba; |
|
694 |
border-color: var(--wp-admin-theme-color); |
|
695 |
box-shadow: 0 0 0 0.5px #007cba; |
|
696 |
box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); |
|
697 |
outline: 2px solid transparent; } |
|
698 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"]::-webkit-input-placeholder, |
|
699 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"]::-webkit-input-placeholder { |
|
700 |
color: rgba(30, 30, 30, 0.62); } |
|
701 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"]::-moz-placeholder, |
|
702 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"]::-moz-placeholder { |
|
703 |
opacity: 1; |
|
704 |
color: rgba(30, 30, 30, 0.62); } |
|
705 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"]:-ms-input-placeholder, |
|
706 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"]:-ms-input-placeholder { |
|
707 |
color: rgba(30, 30, 30, 0.62); } |
|
708 |
.is-dark-theme .edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"]::-webkit-input-placeholder, .is-dark-theme |
|
709 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"]::-webkit-input-placeholder { |
|
710 |
color: rgba(255, 255, 255, 0.65); } |
|
711 |
.is-dark-theme .edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"]::-moz-placeholder, .is-dark-theme |
|
712 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"]::-moz-placeholder { |
|
713 |
opacity: 1; |
|
714 |
color: rgba(255, 255, 255, 0.65); } |
|
715 |
.is-dark-theme .edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input[type="text"]:-ms-input-placeholder, .is-dark-theme |
|
716 |
.editor-post-visibility__dialog-fieldset .editor-post-visibility__dialog-password-input[type="text"]:-ms-input-placeholder { |
|
717 |
color: rgba(255, 255, 255, 0.65); } |
9
|
718 |
|
16
|
719 |
.editor-post-title { |
|
720 |
position: relative; } |
|
721 |
.editor-post-title .editor-post-title__input { |
9
|
722 |
display: block; |
|
723 |
width: 100%; |
|
724 |
margin: 0; |
|
725 |
box-shadow: none; |
|
726 |
background: transparent; |
|
727 |
transition: border 0.1s ease-out, box-shadow 0.1s linear; |
16
|
728 |
padding: 19px 0; |
9
|
729 |
word-break: keep-all; |
16
|
730 |
font-family: inherit; |
|
731 |
color: inherit; |
9
|
732 |
border: 1px solid transparent; |
|
733 |
border-right-width: 0; |
|
734 |
border-left-width: 0; |
16
|
735 |
border-radius: 0; |
9
|
736 |
outline: 1px solid transparent; |
16
|
737 |
font-size: 2.44em; |
|
738 |
font-weight: bold; |
|
739 |
line-height: 1.4; } |
|
740 |
@media (prefers-reduced-motion: reduce) { |
|
741 |
.editor-post-title .editor-post-title__input { |
|
742 |
transition-duration: 0s; } } |
9
|
743 |
@media (min-width: 600px) { |
16
|
744 |
.editor-post-title .editor-post-title__input { |
|
745 |
border-width: 1px; } } |
|
746 |
.editor-post-title .editor-post-title__input::-webkit-input-placeholder { |
|
747 |
color: rgba(30, 30, 30, 0.55); } |
|
748 |
.editor-post-title .editor-post-title__input::-moz-placeholder { |
|
749 |
color: rgba(30, 30, 30, 0.55); } |
|
750 |
.editor-post-title .editor-post-title__input:-ms-input-placeholder { |
|
751 |
color: rgba(30, 30, 30, 0.55); } |
|
752 |
.editor-post-title .editor-post-title__input:focus { |
|
753 |
border: 1px solid transparent; |
|
754 |
outline: 1px solid transparent; |
|
755 |
box-shadow: none; } |
|
756 |
.editor-post-title.is-focus-mode .editor-post-title__input { |
9
|
757 |
opacity: 0.5; |
|
758 |
transition: opacity 0.1s linear; } |
16
|
759 |
@media (prefers-reduced-motion: reduce) { |
|
760 |
.editor-post-title.is-focus-mode .editor-post-title__input { |
|
761 |
transition-duration: 0s; } } |
|
762 |
.editor-post-title.is-focus-mode .editor-post-title__input:focus { |
9
|
763 |
opacity: 1; } |
|
764 |
|
|
765 |
.editor-post-trash.components-button { |
16
|
766 |
margin-right: -6px; } |
9
|
767 |
|
16
|
768 |
.table-of-contents__popover.components-popover .components-popover__content { |
9
|
769 |
min-width: 380px; } |
|
770 |
|
16
|
771 |
.components-popover.table-of-contents__popover { |
|
772 |
z-index: 99998; } |
|
773 |
|
|
774 |
.table-of-contents__popover .components-popover__content > div { |
9
|
775 |
padding: 16px; } |
16
|
776 |
|
|
777 |
@media (min-width: 600px) { |
|
778 |
.table-of-contents__popover .components-popover__content { |
|
779 |
max-height: calc(100vh - 120px); |
|
780 |
overflow-y: auto; } } |
9
|
781 |
|
|
782 |
.table-of-contents__popover hr { |
|
783 |
margin: 10px -16px 0; } |
|
784 |
|
16
|
785 |
.table-of-contents__wrapper:focus::before { |
|
786 |
content: ""; |
|
787 |
display: block; |
|
788 |
position: absolute; |
|
789 |
top: 0; |
|
790 |
left: 0; |
|
791 |
bottom: 0; |
|
792 |
right: 0; |
|
793 |
box-shadow: inset 0 0 0 1.5px #007cba; |
|
794 |
box-shadow: inset 0 0 0 1.5px var(--wp-admin-theme-color); } |
|
795 |
|
9
|
796 |
.table-of-contents__counts { |
|
797 |
display: flex; |
16
|
798 |
flex-wrap: wrap; |
|
799 |
margin: 0; } |
9
|
800 |
|
|
801 |
.table-of-contents__count { |
16
|
802 |
flex-basis: 25%; |
9
|
803 |
display: flex; |
|
804 |
flex-direction: column; |
|
805 |
font-size: 13px; |
16
|
806 |
color: #6c7781; |
|
807 |
padding-left: 8px; |
|
808 |
margin-bottom: 0; } |
|
809 |
.table-of-contents__count:last-child { |
|
810 |
padding-left: 0; } |
9
|
811 |
|
|
812 |
.table-of-contents__number, |
|
813 |
.table-of-contents__popover .word-count { |
|
814 |
font-size: 21px; |
|
815 |
font-weight: 400; |
|
816 |
line-height: 30px; |
|
817 |
color: #555d66; } |
|
818 |
|
|
819 |
.table-of-contents__title { |
|
820 |
display: block; |
|
821 |
margin-top: 20px; |
|
822 |
font-size: 15px; |
|
823 |
font-weight: 600; } |
|
824 |
|
|
825 |
.editor-template-validation-notice { |
|
826 |
display: flex; |
|
827 |
justify-content: space-between; |
|
828 |
align-items: center; } |
|
829 |
.editor-template-validation-notice .components-button { |
|
830 |
margin-right: 5px; } |