9
|
1 |
@charset "UTF-8"; |
|
2 |
/** |
|
3 |
* Colors |
|
4 |
*/ |
|
5 |
/** |
|
6 |
* Breakpoints & Media Queries |
|
7 |
*/ |
|
8 |
/** |
|
9 |
* Often re-used variables |
|
10 |
*/ |
|
11 |
/** |
|
12 |
* Breakpoint mixins |
|
13 |
*/ |
|
14 |
/** |
|
15 |
* Long content fade mixin |
|
16 |
* |
|
17 |
* Creates a fading overlay to signify that the content is longer |
|
18 |
* than the space allows. |
|
19 |
*/ |
|
20 |
/** |
|
21 |
* Button states and focus styles |
|
22 |
*/ |
|
23 |
/** |
|
24 |
* Applies editor left position to the selector passed as argument |
|
25 |
*/ |
|
26 |
/** |
|
27 |
* Applies editor right position to the selector passed as argument |
|
28 |
*/ |
|
29 |
/** |
|
30 |
* Styles that are reused verbatim in a few places |
|
31 |
*/ |
|
32 |
/** |
|
33 |
* Allows users to opt-out of animations via OS-level preferences. |
|
34 |
*/ |
|
35 |
.editor-autocompleters__block .editor-block-icon { |
|
36 |
margin-right: 8px; } |
|
37 |
|
|
38 |
.editor-autocompleters__user .editor-autocompleters__user-avatar { |
|
39 |
margin-right: 8px; |
|
40 |
flex-grow: 0; |
|
41 |
flex-shrink: 0; |
|
42 |
max-width: none; |
|
43 |
width: 24px; |
|
44 |
height: 24px; } |
|
45 |
|
|
46 |
.editor-autocompleters__user .editor-autocompleters__user-name { |
|
47 |
white-space: nowrap; |
|
48 |
text-overflow: ellipsis; |
|
49 |
overflow: hidden; |
|
50 |
max-width: 200px; |
|
51 |
flex-shrink: 0; |
|
52 |
flex-grow: 1; } |
|
53 |
|
|
54 |
.editor-autocompleters__user .editor-autocompleters__user-slug { |
|
55 |
margin-left: 8px; |
|
56 |
color: #8f98a1; |
|
57 |
white-space: nowrap; |
|
58 |
text-overflow: ellipsis; |
|
59 |
overflow: none; |
|
60 |
max-width: 100px; |
|
61 |
flex-grow: 0; |
|
62 |
flex-shrink: 0; } |
|
63 |
|
|
64 |
.editor-autocompleters__user:hover .editor-autocompleters__user-slug { |
|
65 |
color: #66c6e4; } |
|
66 |
|
|
67 |
.document-outline { |
|
68 |
margin: 20px 0; } |
|
69 |
.document-outline ul { |
|
70 |
margin: 0; |
|
71 |
padding: 0; } |
|
72 |
|
|
73 |
.document-outline__item { |
|
74 |
display: flex; |
|
75 |
margin: 4px 0; } |
|
76 |
.document-outline__item a { |
|
77 |
text-decoration: none; } |
|
78 |
.document-outline__item .document-outline__emdash::before { |
|
79 |
color: #e2e4e7; |
|
80 |
margin-right: 4px; } |
|
81 |
.document-outline__item.is-h2 .document-outline__emdash::before { |
|
82 |
content: "—"; } |
|
83 |
.document-outline__item.is-h3 .document-outline__emdash::before { |
|
84 |
content: "——"; } |
|
85 |
.document-outline__item.is-h4 .document-outline__emdash::before { |
|
86 |
content: "———"; } |
|
87 |
.document-outline__item.is-h5 .document-outline__emdash::before { |
|
88 |
content: "————"; } |
|
89 |
.document-outline__item.is-h6 .document-outline__emdash::before { |
|
90 |
content: "—————"; } |
|
91 |
|
|
92 |
.document-outline__button { |
|
93 |
cursor: pointer; |
|
94 |
background: none; |
|
95 |
border: none; |
|
96 |
display: flex; |
|
97 |
align-items: flex-start; |
|
98 |
margin: 0 0 0 -1px; |
|
99 |
padding: 2px 5px 2px 1px; |
|
100 |
color: #23282d; |
|
101 |
text-align: left; } |
|
102 |
.document-outline__button:disabled { |
|
103 |
cursor: default; } |
|
104 |
.document-outline__button:focus { |
|
105 |
background-color: #fff; |
|
106 |
color: #191e23; |
|
107 |
box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff; |
|
108 |
outline: 2px solid transparent; |
|
109 |
outline-offset: -2px; } |
|
110 |
|
|
111 |
.document-outline__level { |
|
112 |
background: #e2e4e7; |
|
113 |
color: #23282d; |
|
114 |
border-radius: 3px; |
|
115 |
font-size: 13px; |
|
116 |
padding: 1px 6px; |
|
117 |
margin-right: 4px; } |
|
118 |
.is-invalid .document-outline__level { |
|
119 |
background: #f0b849; } |
|
120 |
|
|
121 |
.document-outline__item-content { |
|
122 |
padding: 1px 0; } |
|
123 |
|
|
124 |
.editor-error-boundary { |
|
125 |
max-width: 610px; |
|
126 |
margin: auto; |
|
127 |
max-width: 780px; |
|
128 |
padding: 20px; |
|
129 |
margin-top: 60px; |
|
130 |
box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2); } |
|
131 |
|
|
132 |
.editor-page-attributes__template { |
|
133 |
margin-bottom: 10px; } |
|
134 |
.editor-page-attributes__template label, |
|
135 |
.editor-page-attributes__template select { |
|
136 |
width: 100%; } |
|
137 |
|
|
138 |
.editor-page-attributes__order { |
|
139 |
width: 100%; } |
|
140 |
.editor-page-attributes__order .components-base-control__field { |
|
141 |
display: flex; |
|
142 |
justify-content: space-between; |
|
143 |
align-items: center; } |
|
144 |
.editor-page-attributes__order input { |
|
145 |
width: 66px; } |
|
146 |
|
|
147 |
.editor-post-excerpt__textarea { |
|
148 |
width: 100%; |
|
149 |
margin-bottom: 10px; } |
|
150 |
|
|
151 |
.editor-post-featured-image { |
|
152 |
padding: 0; } |
|
153 |
.editor-post-featured-image .components-spinner { |
|
154 |
margin: 0; } |
|
155 |
.editor-post-featured-image .components-button + .components-button { |
|
156 |
margin-top: 1em; |
|
157 |
margin-right: 8px; } |
|
158 |
.editor-post-featured-image .components-responsive-wrapper__content { |
|
159 |
max-width: 100%; |
|
160 |
width: auto; } |
|
161 |
|
|
162 |
.editor-post-featured-image__toggle, |
|
163 |
.editor-post-featured-image__preview { |
|
164 |
display: block; |
|
165 |
width: 100%; |
|
166 |
padding: 0; |
|
167 |
transition: all 0.1s ease-out; |
|
168 |
box-shadow: 0 0 0 0 #00a0d2; } |
|
169 |
|
|
170 |
.editor-post-featured-image__preview:not(:disabled):not([aria-disabled="true"]):focus { |
|
171 |
box-shadow: 0 0 0 4px #00a0d2; } |
|
172 |
|
|
173 |
.editor-post-featured-image__toggle { |
|
174 |
border: 1px dashed #a2aab2; |
|
175 |
background-color: #edeff0; |
|
176 |
line-height: 20px; |
|
177 |
padding: 8px 0; |
|
178 |
text-align: center; } |
|
179 |
.editor-post-featured-image__toggle:hover { |
|
180 |
background-color: #f8f9f9; } |
|
181 |
|
|
182 |
.editor-post-format { |
|
183 |
flex-direction: column; |
|
184 |
align-items: stretch; |
|
185 |
width: 100%; } |
|
186 |
|
|
187 |
.editor-post-format__content { |
|
188 |
display: inline-flex; |
|
189 |
justify-content: space-between; |
|
190 |
align-items: center; |
|
191 |
width: 100%; } |
|
192 |
|
|
193 |
.editor-post-format__suggestion { |
|
194 |
text-align: right; |
|
195 |
font-size: 13px; } |
|
196 |
|
|
197 |
.editor-post-last-revision__title { |
|
198 |
width: 100%; |
|
199 |
font-weight: 600; } |
|
200 |
.editor-post-last-revision__title .dashicon { |
|
201 |
margin-right: 5px; } |
|
202 |
|
|
203 |
.components-icon-button:not(:disabled):not([aria-disabled="true"]).editor-post-last-revision__title:hover, .components-icon-button:not(:disabled):not([aria-disabled="true"]).editor-post-last-revision__title:active { |
|
204 |
border: none; |
|
205 |
box-shadow: none; } |
|
206 |
|
|
207 |
.components-icon-button:not(:disabled):not([aria-disabled="true"]).editor-post-last-revision__title:focus { |
|
208 |
color: #191e23; |
|
209 |
border: none; |
|
210 |
box-shadow: none; |
|
211 |
outline-offset: -2px; |
|
212 |
outline: 1px dotted #555d66; } |
|
213 |
|
|
214 |
.editor-post-locked-modal { |
|
215 |
height: auto; |
|
216 |
padding-right: 10px; |
|
217 |
padding-left: 10px; |
|
218 |
padding-top: 10px; |
|
219 |
max-width: 480px; } |
|
220 |
.editor-post-locked-modal .components-modal__header { |
|
221 |
height: 36px; } |
|
222 |
.editor-post-locked-modal .components-modal__content { |
|
223 |
height: auto; } |
|
224 |
|
|
225 |
.editor-post-locked-modal__buttons { |
|
226 |
margin-top: 10px; } |
|
227 |
.editor-post-locked-modal__buttons .components-button { |
|
228 |
margin-right: 5px; } |
|
229 |
|
|
230 |
.editor-post-locked-modal__avatar { |
|
231 |
float: left; |
|
232 |
margin: 5px; |
|
233 |
margin-right: 15px; } |
|
234 |
|
|
235 |
.editor-post-permalink { |
|
236 |
display: inline-flex; |
|
237 |
align-items: center; |
|
238 |
background: #fff; |
|
239 |
padding: 5px; |
|
240 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
241 |
font-size: 13px; |
|
242 |
height: 40px; |
|
243 |
white-space: nowrap; |
|
244 |
border: 1px solid #b5bcc2; |
|
245 |
background-clip: padding-box; |
|
246 |
border-left: 0; |
|
247 |
box-shadow: -3px 0 0 0 #555d66; |
|
248 |
outline: 1px solid transparent; |
|
249 |
margin-left: -15px; |
|
250 |
margin-right: -15px; } |
|
251 |
.is-dark-theme .editor-post-permalink { |
|
252 |
box-shadow: -3px 0 0 0 #d7dade; } |
|
253 |
@media (min-width: 600px) { |
|
254 |
.editor-post-permalink { |
|
255 |
margin-left: -1px; |
|
256 |
margin-right: -1px; } } |
|
257 |
.editor-post-permalink button { |
|
258 |
flex-shrink: 0; } |
|
259 |
|
|
260 |
.editor-post-permalink__copy { |
|
261 |
border-radius: 4px; |
|
262 |
padding: 6px; } |
|
263 |
|
|
264 |
.editor-post-permalink__copy.is-copied { |
|
265 |
opacity: 0.3; } |
|
266 |
|
|
267 |
.editor-post-permalink__label { |
|
268 |
margin: 0 10px 0 5px; |
|
269 |
font-weight: 600; } |
|
270 |
|
|
271 |
.editor-post-permalink__link { |
|
272 |
color: #7e8993; |
|
273 |
text-decoration: underline; |
|
274 |
margin-right: 10px; |
|
275 |
width: 100%; |
|
276 |
overflow: hidden; |
|
277 |
position: relative; |
|
278 |
white-space: nowrap; } |
|
279 |
.editor-post-permalink__link::after { |
|
280 |
content: ""; |
|
281 |
display: block; |
|
282 |
position: absolute; |
|
283 |
-webkit-touch-callout: none; |
|
284 |
-webkit-user-select: none; |
|
285 |
-moz-user-select: none; |
|
286 |
-ms-user-select: none; |
|
287 |
user-select: none; |
|
288 |
pointer-events: none; |
|
289 |
background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 90%); |
|
290 |
top: 1px; |
|
291 |
bottom: 1px; |
|
292 |
right: 1px; |
|
293 |
left: auto; |
|
294 |
width: 20%; |
|
295 |
height: auto; } |
|
296 |
|
|
297 |
.editor-post-permalink-editor { |
|
298 |
width: 100%; |
|
299 |
min-width: 20%; |
|
300 |
display: inline-flex; |
|
301 |
align-items: center; } |
|
302 |
.editor-post-permalink-editor .editor-post-permalink__editor-container { |
|
303 |
flex: 0 1 100%; |
|
304 |
display: flex; |
|
305 |
overflow: hidden; |
|
306 |
padding: 1px 0; } |
|
307 |
.editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__prefix { |
|
308 |
flex: 1 1 auto; } |
|
309 |
@media (min-width: 600px) { |
|
310 |
.editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__prefix { |
|
311 |
flex: 1 0 auto; } } |
|
312 |
.editor-post-permalink-editor .editor-post-permalink__editor-container .editor-post-permalink-editor__edit { |
|
313 |
flex: 1 1 100%; } |
|
314 |
.editor-post-permalink-editor .editor-post-permalink-editor__save { |
|
315 |
margin-left: auto; } |
|
316 |
|
|
317 |
.editor-post-permalink-editor__prefix { |
|
318 |
color: #6c7781; |
|
319 |
min-width: 20%; |
|
320 |
overflow: hidden; |
|
321 |
position: relative; |
|
322 |
white-space: nowrap; |
|
323 |
text-overflow: ellipsis; } |
|
324 |
|
|
325 |
.editor-post-permalink input[type="text"].editor-post-permalink-editor__edit { |
|
326 |
min-width: 10%; |
|
327 |
width: 100%; |
|
328 |
margin: 0 3px; |
|
329 |
padding: 2px 4px; } |
|
330 |
|
|
331 |
.editor-post-permalink-editor__suffix { |
|
332 |
color: #6c7781; |
|
333 |
margin-right: 6px; |
|
334 |
flex: 0 0 0%; } |
|
335 |
|
|
336 |
.editor-post-publish-panel { |
|
337 |
background: #fff; |
|
338 |
color: #555d66; } |
|
339 |
|
|
340 |
.editor-post-publish-panel__content { |
|
341 |
min-height: calc(100% - 140px); } |
|
342 |
.editor-post-publish-panel__content .components-spinner { |
|
343 |
display: block; |
|
344 |
float: none; |
|
345 |
margin: 100px auto 0; } |
|
346 |
|
|
347 |
.editor-post-publish-panel__header { |
|
348 |
background: #fff; |
|
349 |
padding-left: 16px; |
|
350 |
height: 56px; |
|
351 |
border-bottom: 1px solid #e2e4e7; |
|
352 |
display: flex; |
|
353 |
align-items: center; |
|
354 |
align-content: space-between; } |
|
355 |
|
|
356 |
.editor-post-publish-panel__header-publish-button { |
|
357 |
display: flex; |
|
358 |
justify-content: flex-end; |
|
359 |
flex-grow: 1; |
|
360 |
text-align: right; |
|
361 |
flex-wrap: nowrap; } |
|
362 |
|
|
363 |
.editor-post-publish-panel__header-published { |
|
364 |
flex-grow: 1; } |
|
365 |
|
|
366 |
.editor-post-publish-panel__footer { |
|
367 |
padding: 16px; } |
|
368 |
|
|
369 |
.components-button.editor-post-publish-panel__toggle.is-primary { |
|
370 |
display: inline-flex; |
|
371 |
align-items: center; } |
|
372 |
.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon { |
|
373 |
display: none; } |
|
374 |
.components-button.editor-post-publish-panel__toggle.is-primary .dashicon { |
|
375 |
margin-right: -4px; } |
|
376 |
|
|
377 |
.editor-post-publish-panel__link { |
|
378 |
color: #007fac; |
|
379 |
font-weight: 400; |
|
380 |
padding-left: 4px; |
|
381 |
text-decoration: underline; } |
|
382 |
|
|
383 |
.editor-post-publish-panel__prepublish { |
|
384 |
padding: 16px; } |
|
385 |
.editor-post-publish-panel__prepublish strong { |
|
386 |
color: #191e23; } |
|
387 |
.editor-post-publish-panel__prepublish .components-panel__body { |
|
388 |
background: #fff; |
|
389 |
margin-left: -16px; |
|
390 |
margin-right: -16px; } |
|
391 |
.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend { |
|
392 |
display: none; } |
|
393 |
|
|
394 |
.post-publish-panel__postpublish .components-panel__body { |
|
395 |
border-bottom: 1px solid #e2e4e7; |
|
396 |
border-top: none; } |
|
397 |
|
|
398 |
.post-publish-panel__postpublish-buttons { |
|
399 |
display: flex; |
|
400 |
align-content: space-between; |
|
401 |
flex-wrap: wrap; |
|
402 |
margin: -5px; } |
|
403 |
.post-publish-panel__postpublish-buttons > * { |
|
404 |
flex-grow: 1; |
|
405 |
margin: 5px; } |
|
406 |
.post-publish-panel__postpublish-buttons .components-button { |
|
407 |
height: auto; |
|
408 |
justify-content: center; |
|
409 |
padding: 3px 10px 4px; |
|
410 |
line-height: 1.6; |
|
411 |
text-align: center; |
|
412 |
white-space: normal; } |
|
413 |
.post-publish-panel__postpublish-buttons .components-clipboard-button { |
|
414 |
width: 100%; } |
|
415 |
|
|
416 |
.post-publish-panel__postpublish-post-address { |
|
417 |
margin-bottom: 16px; } |
|
418 |
.post-publish-panel__postpublish-post-address input[readonly] { |
|
419 |
padding: 10px; |
|
420 |
background: #e8eaeb; |
|
421 |
overflow: hidden; |
|
422 |
text-overflow: ellipsis; } |
|
423 |
|
|
424 |
.post-publish-panel__postpublish-header { |
|
425 |
font-weight: 500; } |
|
426 |
|
|
427 |
.post-publish-panel__postpublish-subheader { |
|
428 |
margin: 0 0 8px; } |
|
429 |
|
|
430 |
.post-publish-panel__tip { |
|
431 |
color: #f0b849; } |
|
432 |
|
|
433 |
.editor-post-saved-state { |
|
434 |
display: flex; |
|
435 |
align-items: center; |
|
436 |
color: #a2aab2; |
|
437 |
overflow: hidden; } |
|
438 |
.editor-post-saved-state.is-saving { |
|
439 |
animation: edit-post__loading-fade-animation 0.5s infinite; } |
|
440 |
.editor-post-saved-state .dashicon { |
|
441 |
display: inline-block; |
|
442 |
flex: 0 0 auto; } |
|
443 |
|
|
444 |
.editor-post-saved-state { |
|
445 |
width: 28px; |
|
446 |
white-space: nowrap; |
|
447 |
padding: 12px 4px; } |
|
448 |
.editor-post-saved-state .dashicon { |
|
449 |
margin-right: 8px; } |
|
450 |
@media (min-width: 600px) { |
|
451 |
.editor-post-saved-state { |
|
452 |
width: auto; |
|
453 |
padding: 8px 12px; |
|
454 |
text-indent: inherit; } |
|
455 |
.editor-post-saved-state .dashicon { |
|
456 |
margin-right: 4px; } } |
|
457 |
|
|
458 |
.edit-post-header .edit-post-header__settings .components-button.editor-post-save-draft { |
|
459 |
margin: 0; } |
|
460 |
@media (min-width: 600px) { |
|
461 |
.edit-post-header .edit-post-header__settings .components-button.editor-post-save-draft .dashicon { |
|
462 |
display: none; } } |
|
463 |
|
|
464 |
.editor-post-taxonomies__hierarchical-terms-list { |
|
465 |
max-height: 14em; |
|
466 |
overflow: auto; } |
|
467 |
|
|
468 |
.editor-post-taxonomies__hierarchical-terms-choice { |
|
469 |
margin-bottom: 8px; } |
|
470 |
|
|
471 |
.editor-post-taxonomies__hierarchical-terms-input[type="checkbox"] { |
|
472 |
margin-top: 0; } |
|
473 |
|
|
474 |
.editor-post-taxonomies__hierarchical-terms-subchoices { |
|
475 |
margin-top: 8px; |
|
476 |
margin-left: 16px; } |
|
477 |
|
|
478 |
.components-button.editor-post-taxonomies__hierarchical-terms-submit, |
|
479 |
.components-button.editor-post-taxonomies__hierarchical-terms-add { |
|
480 |
margin-top: 12px; } |
|
481 |
|
|
482 |
.editor-post-taxonomies__hierarchical-terms-label { |
|
483 |
display: inline-block; |
|
484 |
margin-top: 12px; } |
|
485 |
|
|
486 |
.editor-post-taxonomies__hierarchical-terms-input { |
|
487 |
margin-top: 8px; |
|
488 |
width: 100%; } |
|
489 |
|
|
490 |
.editor-post-taxonomies__hierarchical-terms-filter { |
|
491 |
margin-bottom: 8px; |
|
492 |
width: 100%; } |
|
493 |
|
|
494 |
.editor-post-text-editor { |
|
495 |
border: 1px solid #e2e4e7; |
|
496 |
display: block; |
|
497 |
margin: 0 0 2em; |
|
498 |
width: 100%; |
|
499 |
box-shadow: none; |
|
500 |
resize: none; |
|
501 |
overflow: hidden; |
|
502 |
font-family: Menlo, Consolas, monaco, monospace; |
|
503 |
line-height: 150%; |
|
504 |
/* Fonts smaller than 16px causes mobile safari to zoom. */ |
|
505 |
font-size: 16px; } |
|
506 |
@media (min-width: 600px) { |
|
507 |
.editor-post-text-editor { |
|
508 |
font-size: 14px; } } |
|
509 |
.editor-post-text-editor:hover, .editor-post-text-editor:focus { |
|
510 |
border: 1px solid #e2e4e7; |
|
511 |
box-shadow: none; |
|
512 |
outline: 1px solid #e2e4e7; |
|
513 |
outline-offset: -2px; } |
|
514 |
|
|
515 |
.editor-post-text-editor__toolbar { |
|
516 |
display: flex; |
|
517 |
flex-direction: row; |
|
518 |
flex-wrap: wrap; } |
|
519 |
.editor-post-text-editor__toolbar button { |
|
520 |
height: 30px; |
|
521 |
background: none; |
|
522 |
padding: 0 8px; |
|
523 |
margin: 3px 4px; |
|
524 |
text-align: center; |
|
525 |
cursor: pointer; |
|
526 |
font-family: Menlo, Consolas, monaco, monospace; |
|
527 |
color: #555d66; |
|
528 |
border: 1px solid transparent; } |
|
529 |
.editor-post-text-editor__toolbar button:first-child { |
|
530 |
margin-left: 0; } |
|
531 |
.editor-post-text-editor__toolbar button:hover, .editor-post-text-editor__toolbar button:focus { |
|
532 |
outline: none; |
|
533 |
border: 1px solid #555d66; } |
|
534 |
|
|
535 |
.editor-post-text-editor__bold { |
|
536 |
font-weight: 600; } |
|
537 |
|
|
538 |
.editor-post-text-editor__italic { |
|
539 |
font-style: italic; } |
|
540 |
|
|
541 |
.editor-post-text-editor__link { |
|
542 |
text-decoration: underline; |
|
543 |
color: #0085ba; } |
|
544 |
|
|
545 |
body.admin-color-sunrise .editor-post-text-editor__link{ |
|
546 |
color: #d1864a; } |
|
547 |
|
|
548 |
body.admin-color-ocean .editor-post-text-editor__link{ |
|
549 |
color: #a3b9a2; } |
|
550 |
|
|
551 |
body.admin-color-midnight .editor-post-text-editor__link{ |
|
552 |
color: #e14d43; } |
|
553 |
|
|
554 |
body.admin-color-ectoplasm .editor-post-text-editor__link{ |
|
555 |
color: #a7b656; } |
|
556 |
|
|
557 |
body.admin-color-coffee .editor-post-text-editor__link{ |
|
558 |
color: #c2a68c; } |
|
559 |
|
|
560 |
body.admin-color-blue .editor-post-text-editor__link{ |
|
561 |
color: #82b4cb; } |
|
562 |
|
|
563 |
body.admin-color-light .editor-post-text-editor__link{ |
|
564 |
color: #0085ba; } |
|
565 |
|
|
566 |
.editor-post-text-editor__del { |
|
567 |
text-decoration: line-through; } |
|
568 |
|
|
569 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-fieldset { |
|
570 |
padding: 4px; |
|
571 |
padding-top: 0; } |
|
572 |
|
|
573 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-legend { |
|
574 |
font-weight: 600; |
|
575 |
margin-bottom: 1em; |
|
576 |
margin-top: 0.5em; |
|
577 |
padding: 0; } |
|
578 |
|
|
579 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-radio { |
|
580 |
margin-top: 2px; } |
|
581 |
|
|
582 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-label { |
|
583 |
font-weight: 600; } |
|
584 |
|
|
585 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-info { |
|
586 |
margin-top: 0; |
|
587 |
margin-left: 28px; } |
|
588 |
|
|
589 |
.edit-post-post-visibility__dialog .editor-post-visibility__choice:last-child .editor-post-visibility__dialog-info { |
|
590 |
margin-bottom: 0; } |
|
591 |
|
|
592 |
.edit-post-post-visibility__dialog .editor-post-visibility__dialog-password-input { |
|
593 |
margin-left: 28px; } |
|
594 |
|
|
595 |
.edit-post-post-visibility__dialog.components-popover.is-bottom { |
|
596 |
z-index: 100001; } |
|
597 |
|
|
598 |
.editor-post-title__block { |
|
599 |
position: relative; |
|
600 |
padding: 5px 0; |
|
601 |
font-size: 16px; } |
|
602 |
@media (min-width: 600px) { |
|
603 |
.editor-post-title__block { |
|
604 |
padding: 5px 2px; } } |
|
605 |
.editor-post-title__block .editor-post-title__input { |
|
606 |
display: block; |
|
607 |
width: 100%; |
|
608 |
margin: 0; |
|
609 |
box-shadow: none; |
|
610 |
background: transparent; |
|
611 |
font-family: "Noto Serif", serif; |
|
612 |
line-height: 1.4; |
|
613 |
color: #191e23; |
|
614 |
transition: border 0.1s ease-out, box-shadow 0.1s linear; |
|
615 |
padding: 19px 14px; |
|
616 |
word-break: keep-all; |
|
617 |
border: 1px solid transparent; |
|
618 |
border-left-width: 0; |
|
619 |
border-right-width: 0; |
|
620 |
outline: 1px solid transparent; |
|
621 |
font-size: 2.441em; |
|
622 |
font-weight: 600; } |
|
623 |
@media (min-width: 600px) { |
|
624 |
.editor-post-title__block .editor-post-title__input { |
|
625 |
border-width: 1px; |
|
626 |
border-left-width: 0; } } |
|
627 |
.editor-post-title__block .editor-post-title__input::-webkit-input-placeholder { |
|
628 |
color: rgba(22, 36, 53, 0.55); } |
|
629 |
.editor-post-title__block .editor-post-title__input::-moz-placeholder { |
|
630 |
color: rgba(22, 36, 53, 0.55); } |
|
631 |
.editor-post-title__block .editor-post-title__input:-ms-input-placeholder { |
|
632 |
color: rgba(22, 36, 53, 0.55); } |
|
633 |
.editor-post-title__block:not(.is-focus-mode).is-selected .editor-post-title__input { |
|
634 |
border-color: rgba(66, 88, 99, 0.4); |
|
635 |
box-shadow: inset 3px 0 0 0 #555d66; } |
|
636 |
.is-dark-theme .editor-post-title__block:not(.is-focus-mode).is-selected .editor-post-title__input { |
|
637 |
border-color: rgba(255, 255, 255, 0.45); |
|
638 |
box-shadow: inset 3px 0 0 0 #d7dade; } |
|
639 |
@media (min-width: 600px) { |
|
640 |
.editor-post-title__block:not(.is-focus-mode).is-selected .editor-post-title__input { |
|
641 |
box-shadow: -3px 0 0 0 #555d66; } |
|
642 |
.is-dark-theme .editor-post-title__block:not(.is-focus-mode).is-selected .editor-post-title__input { |
|
643 |
box-shadow: -3px 0 0 0 #d7dade; } } |
|
644 |
.editor-post-title__block:not(.is-focus-mode):not(.has-fixed-toolbar):not(.is-selected) .editor-post-title__input:hover { |
|
645 |
box-shadow: -3px 0 0 0 #e2e4e7; } |
|
646 |
.editor-post-title__block.is-focus-mode .editor-post-title__input { |
|
647 |
opacity: 0.5; |
|
648 |
transition: opacity 0.1s linear; } |
|
649 |
.editor-post-title__block.is-focus-mode .editor-post-title__input:focus { |
|
650 |
opacity: 1; } |
|
651 |
|
|
652 |
.editor-post-title .editor-post-permalink { |
|
653 |
font-size: 13px; |
|
654 |
color: #191e23; |
|
655 |
position: absolute; |
|
656 |
top: -34px; |
|
657 |
left: 0; |
|
658 |
right: 0; } |
|
659 |
@media (min-width: 600px) { |
|
660 |
.editor-post-title .editor-post-permalink { |
|
661 |
left: 2px; |
|
662 |
right: 2px; } } |
|
663 |
|
|
664 |
.editor-post-trash.components-button { |
|
665 |
width: 100%; |
|
666 |
color: #c92c2c; |
|
667 |
justify-content: center; } |
|
668 |
.editor-post-trash.components-button:hover, .editor-post-trash.components-button:focus { |
|
669 |
color: #b52727; } |
|
670 |
|
|
671 |
.table-of-contents__popover.components-popover:not(.is-mobile) .components-popover__content { |
|
672 |
min-width: 380px; } |
|
673 |
|
|
674 |
.table-of-contents__popover .components-popover__content { |
|
675 |
padding: 16px; } |
|
676 |
@media (min-width: 600px) { |
|
677 |
.table-of-contents__popover .components-popover__content { |
|
678 |
max-height: calc(100vh - 120px); |
|
679 |
overflow-y: auto; } } |
|
680 |
|
|
681 |
.table-of-contents__popover hr { |
|
682 |
margin: 10px -16px 0; } |
|
683 |
|
|
684 |
.table-of-contents__counts { |
|
685 |
display: flex; |
|
686 |
flex-wrap: wrap; } |
|
687 |
|
|
688 |
.table-of-contents__count { |
|
689 |
width: 25%; |
|
690 |
display: flex; |
|
691 |
flex-direction: column; |
|
692 |
font-size: 13px; |
|
693 |
color: #6c7781; } |
|
694 |
|
|
695 |
.table-of-contents__number, |
|
696 |
.table-of-contents__popover .word-count { |
|
697 |
font-size: 21px; |
|
698 |
font-weight: 400; |
|
699 |
line-height: 30px; |
|
700 |
color: #555d66; } |
|
701 |
|
|
702 |
.table-of-contents__title { |
|
703 |
display: block; |
|
704 |
margin-top: 20px; |
|
705 |
font-size: 15px; |
|
706 |
font-weight: 600; } |
|
707 |
|
|
708 |
.editor-template-validation-notice { |
|
709 |
display: flex; |
|
710 |
justify-content: space-between; |
|
711 |
align-items: center; } |
|
712 |
.editor-template-validation-notice .components-button { |
|
713 |
margin-left: 5px; } |