18
|
1 |
/** |
|
2 |
* Colors |
|
3 |
*/ |
|
4 |
/** |
|
5 |
* Breakpoints & Media Queries |
|
6 |
*/ |
|
7 |
/** |
|
8 |
* SCSS Variables. |
|
9 |
* |
|
10 |
* Please use variables from this sheet to ensure consistency across the UI. |
|
11 |
* Don't add to this sheet unless you're pretty sure the value will be reused in many places. |
|
12 |
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI. |
|
13 |
*/ |
|
14 |
/** |
|
15 |
* Colors |
|
16 |
*/ |
|
17 |
/** |
|
18 |
* Fonts & basic variables. |
|
19 |
*/ |
|
20 |
/** |
|
21 |
* Grid System. |
|
22 |
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/ |
|
23 |
*/ |
|
24 |
/** |
|
25 |
* Dimensions. |
|
26 |
*/ |
|
27 |
/** |
|
28 |
* Shadows. |
|
29 |
*/ |
|
30 |
/** |
|
31 |
* Editor widths. |
|
32 |
*/ |
|
33 |
/** |
|
34 |
* Block & Editor UI. |
|
35 |
*/ |
|
36 |
/** |
|
37 |
* Block paddings. |
|
38 |
*/ |
|
39 |
/** |
|
40 |
* React Native specific. |
|
41 |
* These variables do not appear to be used anywhere else. |
|
42 |
*/ |
|
43 |
/** |
19
|
44 |
* Converts a hex value into the rgb equivalent. |
|
45 |
* |
|
46 |
* @param {string} hex - the hexadecimal value to convert |
|
47 |
* @return {string} comma separated rgb values |
|
48 |
*/ |
|
49 |
/** |
18
|
50 |
* Breakpoint mixins |
|
51 |
*/ |
|
52 |
/** |
|
53 |
* Long content fade mixin |
|
54 |
* |
|
55 |
* Creates a fading overlay to signify that the content is longer |
|
56 |
* than the space allows. |
|
57 |
*/ |
|
58 |
/** |
|
59 |
* Focus styles. |
|
60 |
*/ |
|
61 |
/** |
|
62 |
* Applies editor left position to the selector passed as argument |
|
63 |
*/ |
|
64 |
/** |
|
65 |
* Styles that are reused verbatim in a few places |
|
66 |
*/ |
|
67 |
/** |
|
68 |
* Allows users to opt-out of animations via OS-level preferences. |
|
69 |
*/ |
|
70 |
/** |
|
71 |
* Reset default styles for JavaScript UI based pages. |
|
72 |
* This is a WP-admin agnostic reset |
|
73 |
*/ |
|
74 |
/** |
|
75 |
* Reset the WP Admin page styles for Gutenberg-like pages. |
|
76 |
*/ |
|
77 |
:root { |
|
78 |
--wp-admin-theme-color: #007cba; |
19
|
79 |
--wp-admin-theme-color--rgb: 0, 124, 186; |
18
|
80 |
--wp-admin-theme-color-darker-10: #006ba1; |
19
|
81 |
--wp-admin-theme-color-darker-10--rgb: 0, 107, 161; |
18
|
82 |
--wp-admin-theme-color-darker-20: #005a87; |
19
|
83 |
--wp-admin-theme-color-darker-20--rgb: 0, 90, 135; |
18
|
84 |
--wp-admin-border-width-focus: 2px; |
|
85 |
} |
|
86 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
87 |
:root { |
|
88 |
--wp-admin-border-width-focus: 1.5px; |
|
89 |
} |
|
90 |
} |
|
91 |
|
|
92 |
.components-panel__header.interface-complementary-area-header__small { |
|
93 |
background: #fff; |
|
94 |
padding-left: 4px; |
|
95 |
} |
|
96 |
.components-panel__header.interface-complementary-area-header__small .interface-complementary-area-header__small-title { |
|
97 |
overflow: hidden; |
|
98 |
text-overflow: ellipsis; |
|
99 |
white-space: nowrap; |
|
100 |
width: 100%; |
|
101 |
} |
|
102 |
@media (min-width: 782px) { |
|
103 |
.components-panel__header.interface-complementary-area-header__small { |
|
104 |
display: none; |
|
105 |
} |
|
106 |
} |
|
107 |
|
|
108 |
.interface-complementary-area-header { |
|
109 |
background: #fff; |
|
110 |
padding-left: 4px; |
|
111 |
} |
|
112 |
.interface-complementary-area-header .components-button.has-icon { |
|
113 |
display: none; |
|
114 |
margin-right: auto; |
|
115 |
} |
|
116 |
.interface-complementary-area-header .components-button.has-icon ~ .components-button { |
|
117 |
margin-right: 0; |
|
118 |
} |
|
119 |
@media (min-width: 782px) { |
|
120 |
.interface-complementary-area-header .components-button.has-icon { |
|
121 |
display: flex; |
|
122 |
} |
|
123 |
} |
|
124 |
|
19
|
125 |
@media (min-width: 782px) { |
|
126 |
.components-panel__header + .interface-complementary-area-header { |
|
127 |
margin-top: 0; |
|
128 |
} |
|
129 |
} |
|
130 |
|
18
|
131 |
.interface-complementary-area { |
|
132 |
background: #fff; |
|
133 |
color: #1e1e1e; |
|
134 |
} |
|
135 |
@media (min-width: 600px) { |
|
136 |
.interface-complementary-area { |
|
137 |
-webkit-overflow-scrolling: touch; |
|
138 |
} |
|
139 |
} |
|
140 |
@media (min-width: 782px) { |
|
141 |
.interface-complementary-area { |
|
142 |
width: 280px; |
|
143 |
} |
|
144 |
} |
|
145 |
.interface-complementary-area .components-panel { |
|
146 |
border: none; |
|
147 |
position: relative; |
|
148 |
z-index: 0; |
|
149 |
} |
|
150 |
.interface-complementary-area .components-panel__header { |
|
151 |
position: sticky; |
|
152 |
top: 0; |
|
153 |
z-index: 1; |
|
154 |
} |
|
155 |
.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs { |
|
156 |
top: 48px; |
|
157 |
} |
|
158 |
@media (min-width: 782px) { |
|
159 |
.interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs { |
|
160 |
top: 0; |
|
161 |
} |
|
162 |
} |
|
163 |
.interface-complementary-area p { |
|
164 |
margin-top: 0; |
|
165 |
} |
19
|
166 |
.interface-complementary-area h2 { |
|
167 |
font-size: 13px; |
|
168 |
color: #1e1e1e; |
|
169 |
margin-bottom: 1.5em; |
|
170 |
} |
18
|
171 |
.interface-complementary-area h3 { |
19
|
172 |
font-size: 11px; |
|
173 |
text-transform: uppercase; |
|
174 |
font-weight: 500; |
18
|
175 |
color: #1e1e1e; |
|
176 |
margin-bottom: 1.5em; |
|
177 |
} |
|
178 |
.interface-complementary-area hr { |
|
179 |
border-top: none; |
|
180 |
border-bottom: 1px solid #f0f0f0; |
|
181 |
margin: 1.5em 0; |
|
182 |
} |
|
183 |
.interface-complementary-area div.components-toolbar-group, |
|
184 |
.interface-complementary-area div.components-toolbar { |
|
185 |
box-shadow: none; |
|
186 |
margin-bottom: 1.5em; |
|
187 |
} |
|
188 |
.interface-complementary-area div.components-toolbar-group:last-child, |
|
189 |
.interface-complementary-area div.components-toolbar:last-child { |
|
190 |
margin-bottom: 0; |
|
191 |
} |
|
192 |
.interface-complementary-area .block-editor-skip-to-selected-block:focus { |
|
193 |
top: auto; |
|
194 |
left: 10px; |
|
195 |
bottom: 10px; |
|
196 |
right: auto; |
|
197 |
} |
|
198 |
|
|
199 |
@media (min-width: 782px) { |
|
200 |
body.js.is-fullscreen-mode { |
|
201 |
margin-top: -32px; |
|
202 |
height: calc(100% + 32px); |
|
203 |
} |
|
204 |
body.js.is-fullscreen-mode #adminmenumain, |
|
205 |
body.js.is-fullscreen-mode #wpadminbar { |
|
206 |
display: none; |
|
207 |
} |
|
208 |
body.js.is-fullscreen-mode #wpcontent, |
|
209 |
body.js.is-fullscreen-mode #wpfooter { |
|
210 |
margin-right: 0; |
|
211 |
} |
|
212 |
} |
|
213 |
|
|
214 |
html.interface-interface-skeleton__html-container { |
|
215 |
position: fixed; |
|
216 |
width: 100%; |
|
217 |
} |
|
218 |
@media (min-width: 782px) { |
|
219 |
html.interface-interface-skeleton__html-container { |
|
220 |
position: initial; |
|
221 |
width: initial; |
|
222 |
} |
|
223 |
} |
|
224 |
|
|
225 |
.interface-interface-skeleton { |
|
226 |
display: flex; |
|
227 |
flex-direction: row; |
|
228 |
height: auto; |
|
229 |
max-height: 100%; |
|
230 |
position: fixed; |
|
231 |
top: 46px; |
|
232 |
right: 0; |
|
233 |
left: 0; |
|
234 |
bottom: 0; |
|
235 |
} |
|
236 |
@media (min-width: 783px) { |
|
237 |
.interface-interface-skeleton { |
|
238 |
top: 32px; |
|
239 |
} |
|
240 |
.is-fullscreen-mode .interface-interface-skeleton { |
|
241 |
top: 0; |
|
242 |
} |
|
243 |
} |
|
244 |
|
|
245 |
.interface-interface-skeleton__editor { |
|
246 |
display: flex; |
|
247 |
flex-direction: column; |
|
248 |
flex: 0 1 100%; |
|
249 |
overflow: hidden; |
|
250 |
} |
|
251 |
|
|
252 |
.interface-interface-skeleton { |
|
253 |
/* Set left position when auto-fold is not on the body element. */ |
|
254 |
right: 0; |
|
255 |
} |
|
256 |
@media (min-width: 783px) { |
|
257 |
.interface-interface-skeleton { |
|
258 |
right: 160px; |
|
259 |
} |
|
260 |
} |
|
261 |
|
|
262 |
.auto-fold .interface-interface-skeleton { |
|
263 |
/* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ |
|
264 |
} |
|
265 |
@media (min-width: 783px) { |
|
266 |
.auto-fold .interface-interface-skeleton { |
|
267 |
right: 36px; |
|
268 |
} |
|
269 |
} |
|
270 |
@media (min-width: 961px) { |
|
271 |
.auto-fold .interface-interface-skeleton { |
|
272 |
right: 160px; |
|
273 |
} |
|
274 |
} |
|
275 |
|
|
276 |
/* Sidebar manually collapsed. */ |
|
277 |
.folded .interface-interface-skeleton { |
|
278 |
right: 0; |
|
279 |
} |
|
280 |
@media (min-width: 783px) { |
|
281 |
.folded .interface-interface-skeleton { |
|
282 |
right: 36px; |
|
283 |
} |
|
284 |
} |
|
285 |
|
|
286 |
body.is-fullscreen-mode .interface-interface-skeleton { |
|
287 |
right: 0 !important; |
|
288 |
} |
|
289 |
|
|
290 |
.interface-interface-skeleton__body { |
|
291 |
flex-grow: 1; |
|
292 |
display: flex; |
|
293 |
overflow: auto; |
|
294 |
overscroll-behavior-y: none; |
|
295 |
} |
|
296 |
@media (min-width: 782px) { |
|
297 |
.has-footer .interface-interface-skeleton__body { |
|
298 |
padding-bottom: 25px; |
|
299 |
} |
|
300 |
} |
|
301 |
|
|
302 |
.interface-interface-skeleton__content { |
|
303 |
flex-grow: 1; |
|
304 |
display: flex; |
|
305 |
flex-direction: column; |
|
306 |
overflow: auto; |
|
307 |
z-index: 20; |
|
308 |
} |
|
309 |
|
|
310 |
.interface-interface-skeleton__secondary-sidebar, |
|
311 |
.interface-interface-skeleton__sidebar { |
|
312 |
display: block; |
|
313 |
flex-shrink: 0; |
|
314 |
position: absolute; |
|
315 |
z-index: 100000; |
|
316 |
top: 0; |
|
317 |
left: 0; |
|
318 |
bottom: 0; |
|
319 |
right: 0; |
|
320 |
background: #fff; |
|
321 |
color: #1e1e1e; |
|
322 |
} |
|
323 |
@media (min-width: 782px) { |
|
324 |
.interface-interface-skeleton__secondary-sidebar, |
|
325 |
.interface-interface-skeleton__sidebar { |
|
326 |
position: relative !important; |
|
327 |
z-index: 90; |
|
328 |
width: auto; |
|
329 |
} |
|
330 |
} |
|
331 |
|
|
332 |
.interface-interface-skeleton__sidebar { |
|
333 |
overflow: auto; |
|
334 |
} |
|
335 |
@media (min-width: 782px) { |
|
336 |
.interface-interface-skeleton__sidebar { |
|
337 |
border-right: 1px solid #e0e0e0; |
|
338 |
} |
|
339 |
} |
|
340 |
|
|
341 |
@media (min-width: 782px) { |
|
342 |
.interface-interface-skeleton__secondary-sidebar { |
|
343 |
border-left: 1px solid #e0e0e0; |
|
344 |
} |
|
345 |
} |
|
346 |
|
|
347 |
.interface-interface-skeleton__header { |
|
348 |
flex-shrink: 0; |
|
349 |
height: auto; |
|
350 |
border-bottom: 1px solid #e0e0e0; |
|
351 |
z-index: 30; |
|
352 |
color: #1e1e1e; |
|
353 |
} |
|
354 |
|
|
355 |
.interface-interface-skeleton__footer { |
|
356 |
height: auto; |
|
357 |
flex-shrink: 0; |
|
358 |
border-top: 1px solid #e0e0e0; |
|
359 |
color: #1e1e1e; |
|
360 |
position: absolute; |
|
361 |
bottom: 0; |
|
362 |
right: 0; |
|
363 |
width: 100%; |
|
364 |
background-color: #fff; |
|
365 |
z-index: 90; |
|
366 |
display: none; |
|
367 |
} |
|
368 |
@media (min-width: 782px) { |
|
369 |
.interface-interface-skeleton__footer { |
|
370 |
display: flex; |
|
371 |
} |
|
372 |
} |
|
373 |
.interface-interface-skeleton__footer .block-editor-block-breadcrumb { |
|
374 |
z-index: 30; |
|
375 |
display: flex; |
|
376 |
background: #fff; |
|
377 |
height: 24px; |
|
378 |
align-items: center; |
|
379 |
font-size: 13px; |
|
380 |
padding: 0 18px; |
|
381 |
} |
|
382 |
|
|
383 |
.interface-interface-skeleton__actions { |
|
384 |
z-index: 100000; |
|
385 |
position: fixed !important; |
|
386 |
top: -9999em; |
|
387 |
bottom: auto; |
|
388 |
right: auto; |
|
389 |
left: 0; |
|
390 |
width: 280px; |
|
391 |
color: #1e1e1e; |
|
392 |
} |
|
393 |
.interface-interface-skeleton__actions:focus { |
|
394 |
top: auto; |
|
395 |
bottom: 0; |
|
396 |
} |
|
397 |
|
19
|
398 |
.interface-more-menu-dropdown { |
|
399 |
margin-right: -4px; |
|
400 |
} |
|
401 |
.interface-more-menu-dropdown .components-button { |
|
402 |
width: auto; |
|
403 |
padding: 0 2px; |
|
404 |
} |
|
405 |
@media (min-width: 600px) { |
|
406 |
.interface-more-menu-dropdown { |
|
407 |
margin-right: 0; |
|
408 |
} |
|
409 |
.interface-more-menu-dropdown .components-button { |
|
410 |
padding: 0 4px; |
|
411 |
} |
|
412 |
} |
|
413 |
|
|
414 |
.interface-more-menu-dropdown__content .components-popover__content { |
|
415 |
min-width: 280px; |
|
416 |
} |
|
417 |
@media (min-width: 480px) { |
|
418 |
.interface-more-menu-dropdown__content .components-popover__content { |
|
419 |
width: auto; |
|
420 |
max-width: 480px; |
|
421 |
} |
|
422 |
} |
|
423 |
.interface-more-menu-dropdown__content .components-popover__content .components-dropdown-menu__menu { |
|
424 |
padding: 0; |
|
425 |
} |
|
426 |
|
|
427 |
.components-popover.interface-more-menu-dropdown__content { |
|
428 |
z-index: 99998; |
|
429 |
} |
|
430 |
|
18
|
431 |
.interface-pinned-items { |
|
432 |
display: flex; |
|
433 |
} |
|
434 |
.interface-pinned-items .components-button:not(:first-child) { |
|
435 |
display: none; |
|
436 |
} |
|
437 |
@media (min-width: 600px) { |
|
438 |
.interface-pinned-items .components-button:not(:first-child) { |
|
439 |
display: flex; |
|
440 |
} |
|
441 |
} |
|
442 |
.interface-pinned-items .components-button { |
|
443 |
margin-right: 4px; |
|
444 |
} |
|
445 |
.interface-pinned-items .components-button svg { |
|
446 |
max-width: 24px; |
|
447 |
max-height: 24px; |
|
448 |
} |
|
449 |
|
19
|
450 |
@media (min-width: 600px) { |
|
451 |
.interface-preferences-modal { |
|
452 |
width: calc(100% - 32px); |
|
453 |
height: calc(100% - 120px); |
|
454 |
} |
|
455 |
} |
|
456 |
@media (min-width: 782px) { |
|
457 |
.interface-preferences-modal { |
|
458 |
width: 750px; |
|
459 |
} |
|
460 |
} |
|
461 |
@media (min-width: 960px) { |
|
462 |
.interface-preferences-modal { |
|
463 |
height: 70%; |
|
464 |
} |
|
465 |
} |
|
466 |
@media (max-width: 781px) { |
|
467 |
.interface-preferences-modal .components-modal__content { |
|
468 |
padding: 0; |
|
469 |
} |
|
470 |
.interface-preferences-modal .components-modal__content::before { |
|
471 |
content: none; |
|
472 |
} |
|
473 |
} |
|
474 |
|
|
475 |
.interface-preferences__tabs .components-tab-panel__tabs { |
|
476 |
position: absolute; |
|
477 |
top: 84px; |
|
478 |
right: 16px; |
|
479 |
width: 160px; |
|
480 |
} |
|
481 |
.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item { |
|
482 |
border-radius: 2px; |
|
483 |
font-weight: 400; |
|
484 |
} |
|
485 |
.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active { |
|
486 |
background: #f0f0f0; |
|
487 |
box-shadow: none; |
|
488 |
font-weight: 500; |
|
489 |
} |
|
490 |
.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) { |
|
491 |
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); |
|
492 |
} |
|
493 |
.interface-preferences__tabs .components-tab-panel__tab-content { |
|
494 |
padding-right: 24px; |
|
495 |
margin-right: 160px; |
|
496 |
} |
|
497 |
|
|
498 |
@media (max-width: 781px) { |
|
499 |
.interface-preferences__provider { |
|
500 |
height: 100%; |
|
501 |
} |
|
502 |
} |
|
503 |
.interface-preferences-modal__section { |
|
504 |
margin: 0 0 2.5rem 0; |
|
505 |
} |
|
506 |
.interface-preferences-modal__section:last-child { |
|
507 |
margin: 0; |
|
508 |
} |
|
509 |
|
|
510 |
.interface-preferences-modal__section-title { |
|
511 |
font-size: 0.9rem; |
|
512 |
font-weight: 600; |
|
513 |
margin-top: 0; |
|
514 |
} |
|
515 |
|
|
516 |
.interface-preferences-modal__section-description { |
|
517 |
margin: -8px 0 8px 0; |
|
518 |
font-size: 12px; |
|
519 |
font-style: normal; |
|
520 |
color: #757575; |
|
521 |
} |
|
522 |
|
|
523 |
.interface-preferences-modal__option .components-base-control .components-base-control__field { |
|
524 |
align-items: center; |
|
525 |
display: flex; |
|
526 |
margin-bottom: 0; |
|
527 |
} |
|
528 |
.interface-preferences-modal__option .components-base-control .components-base-control__field > label { |
|
529 |
flex-grow: 1; |
|
530 |
padding: 0.6rem 10px 0.6rem 0; |
|
531 |
} |
|
532 |
.interface-preferences-modal__option .components-base-control__help { |
|
533 |
margin: -8px 58px 8px 0; |
|
534 |
font-size: 12px; |
|
535 |
font-style: normal; |
|
536 |
color: #757575; |
|
537 |
} |
|
538 |
|
18
|
539 |
.wp-block[data-type="core/widget-area"] { |
|
540 |
max-width: 700px; |
|
541 |
margin-right: auto; |
|
542 |
margin-left: auto; |
|
543 |
} |
|
544 |
.wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title { |
|
545 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
546 |
margin: 0; |
|
547 |
height: 48px; |
|
548 |
position: relative; |
|
549 |
z-index: 1; |
|
550 |
background: #fff; |
|
551 |
transform: translateZ(0); |
|
552 |
} |
|
553 |
.wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title:hover { |
|
554 |
background: #fff; |
|
555 |
} |
|
556 |
.wp-block[data-type="core/widget-area"] .block-list-appender.wp-block { |
|
557 |
width: initial; |
19
|
558 |
position: relative; |
18
|
559 |
} |
|
560 |
.wp-block[data-type="core/widget-area"] .editor-styles-wrapper .wp-block.wp-block.wp-block.wp-block.wp-block { |
|
561 |
max-width: 100%; |
|
562 |
} |
|
563 |
.wp-block[data-type="core/widget-area"] .components-panel__body.is-opened { |
|
564 |
padding: 0; |
|
565 |
} |
|
566 |
|
|
567 |
.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper { |
|
568 |
margin: 0; |
|
569 |
padding: 0; |
|
570 |
} |
|
571 |
.blocks-widgets-container .wp-block-widget-area__inner-blocks.editor-styles-wrapper > .block-editor-block-list__layout { |
|
572 |
margin-top: -48px; |
|
573 |
padding: 72px 16px 16px; |
|
574 |
min-height: 32px; |
|
575 |
} |
|
576 |
|
|
577 |
.wp-block-widget-area__highlight-drop-zone { |
|
578 |
outline: var(--wp-admin-border-width-focus) solid var(--wp-admin-theme-color); |
|
579 |
} |
|
580 |
|
|
581 |
body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title, |
|
582 |
body.is-dragging-components-draggable .wp-block[data-type="core/widget-area"] .components-panel__body > .components-panel__body-title * { |
|
583 |
pointer-events: none; |
|
584 |
} |
|
585 |
|
|
586 |
.edit-widgets-error-boundary { |
|
587 |
margin: auto; |
|
588 |
max-width: 780px; |
|
589 |
padding: 20px; |
|
590 |
margin-top: 60px; |
|
591 |
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25); |
|
592 |
} |
|
593 |
|
|
594 |
.edit-widgets-header { |
|
595 |
display: flex; |
|
596 |
align-items: center; |
|
597 |
justify-content: space-between; |
|
598 |
height: 60px; |
|
599 |
padding: 0 16px; |
|
600 |
overflow: auto; |
|
601 |
} |
|
602 |
@media (min-width: 600px) { |
|
603 |
.edit-widgets-header { |
|
604 |
overflow: visible; |
|
605 |
} |
|
606 |
} |
|
607 |
|
|
608 |
.edit-widgets-header__navigable-toolbar-wrapper { |
|
609 |
display: flex; |
|
610 |
align-items: center; |
|
611 |
justify-content: center; |
|
612 |
} |
|
613 |
|
|
614 |
.edit-widgets-header__title { |
|
615 |
font-size: 20px; |
|
616 |
padding: 0; |
|
617 |
margin: 0 0 0 20px; |
|
618 |
} |
|
619 |
|
|
620 |
.edit-widgets-header__actions { |
|
621 |
display: flex; |
|
622 |
} |
|
623 |
.edit-widgets-header__actions .components-button { |
|
624 |
margin-left: 4px; |
|
625 |
} |
|
626 |
@media (min-width: 600px) { |
|
627 |
.edit-widgets-header__actions .components-button { |
|
628 |
margin-left: 12px; |
|
629 |
} |
|
630 |
} |
|
631 |
.edit-widgets-header__actions .edit-widgets-more-menu .components-button, |
|
632 |
.edit-widgets-header__actions .interface-pinned-items .components-button { |
|
633 |
margin-left: 0; |
|
634 |
} |
|
635 |
|
|
636 |
.edit-widgets-header-toolbar { |
|
637 |
border: none; |
|
638 |
} |
19
|
639 |
.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon, |
|
640 |
.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon { |
18
|
641 |
height: 36px; |
|
642 |
min-width: 36px; |
|
643 |
padding: 6px; |
|
644 |
} |
19
|
645 |
.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon.is-pressed, |
|
646 |
.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon.is-pressed { |
18
|
647 |
background: #1e1e1e; |
|
648 |
} |
19
|
649 |
.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon:focus:not(:disabled), |
|
650 |
.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon:focus:not(:disabled) { |
18
|
651 |
box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 1px #fff; |
|
652 |
outline: 1px solid transparent; |
|
653 |
} |
19
|
654 |
.edit-widgets-header-toolbar > .components-button.has-icon.has-icon.has-icon::before, |
|
655 |
.edit-widgets-header-toolbar > .components-dropdown > .components-button.has-icon.has-icon::before { |
18
|
656 |
display: none; |
|
657 |
} |
|
658 |
|
|
659 |
.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle { |
|
660 |
padding-right: 8px; |
|
661 |
padding-left: 8px; |
|
662 |
} |
|
663 |
@media (min-width: 600px) { |
|
664 |
.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle { |
|
665 |
padding-right: 12px; |
|
666 |
padding-left: 12px; |
|
667 |
} |
|
668 |
} |
|
669 |
.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle::after { |
|
670 |
content: none; |
|
671 |
} |
19
|
672 |
.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg { |
|
673 |
transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s; |
|
674 |
} |
|
675 |
@media (prefers-reduced-motion: reduce) { |
|
676 |
.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle svg { |
|
677 |
transition-duration: 0s; |
|
678 |
transition-delay: 0s; |
|
679 |
} |
|
680 |
} |
|
681 |
.edit-widgets-header-toolbar__inserter-toggle.edit-widgets-header-toolbar__inserter-toggle.is-pressed svg { |
|
682 |
transform: rotate(-45deg); |
|
683 |
} |
18
|
684 |
|
|
685 |
.edit-widgets-keyboard-shortcut-help-modal__section { |
|
686 |
margin: 0 0 2rem 0; |
|
687 |
} |
|
688 |
.edit-widgets-keyboard-shortcut-help-modal__main-shortcuts .edit-widgets-keyboard-shortcut-help-modal__shortcut-list { |
|
689 |
margin-top: -25px; |
|
690 |
} |
|
691 |
.edit-widgets-keyboard-shortcut-help-modal__section-title { |
|
692 |
font-size: 0.9rem; |
|
693 |
font-weight: 600; |
|
694 |
} |
|
695 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut { |
|
696 |
display: flex; |
|
697 |
align-items: baseline; |
|
698 |
padding: 0.6rem 0; |
|
699 |
border-top: 1px solid #ddd; |
|
700 |
margin-bottom: 0; |
|
701 |
} |
|
702 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut:last-child { |
|
703 |
border-bottom: 1px solid #ddd; |
|
704 |
} |
|
705 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut:empty { |
|
706 |
display: none; |
|
707 |
} |
|
708 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut-term { |
|
709 |
font-weight: 600; |
|
710 |
margin: 0 1rem 0 0; |
|
711 |
text-align: left; |
|
712 |
} |
|
713 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut-description { |
|
714 |
flex: 1; |
|
715 |
margin: 0; |
|
716 |
flex-basis: auto; |
|
717 |
} |
|
718 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination { |
|
719 |
display: block; |
|
720 |
background: none; |
|
721 |
margin: 0; |
|
722 |
padding: 0; |
|
723 |
} |
|
724 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-widgets-keyboard-shortcut-help-modal__shortcut-key-combination { |
|
725 |
margin-top: 10px; |
|
726 |
} |
|
727 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut-key { |
|
728 |
padding: 0.25rem 0.5rem; |
|
729 |
border-radius: 8%; |
|
730 |
margin: 0 0.2rem 0 0.2rem; |
|
731 |
} |
|
732 |
.edit-widgets-keyboard-shortcut-help-modal__shortcut-key:last-child { |
|
733 |
margin: 0 0.2rem 0 0; |
|
734 |
} |
|
735 |
|
|
736 |
.components-panel__header.edit-widgets-sidebar__panel-tabs { |
|
737 |
justify-content: flex-start; |
|
738 |
padding-right: 0; |
|
739 |
padding-left: 4px; |
|
740 |
border-top: 0; |
|
741 |
margin-top: 0; |
|
742 |
} |
|
743 |
.components-panel__header.edit-widgets-sidebar__panel-tabs ul { |
|
744 |
display: flex; |
|
745 |
} |
|
746 |
.components-panel__header.edit-widgets-sidebar__panel-tabs li { |
|
747 |
margin: 0; |
|
748 |
} |
|
749 |
.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon { |
|
750 |
display: none; |
|
751 |
margin-right: auto; |
|
752 |
} |
|
753 |
@media (min-width: 782px) { |
|
754 |
.components-panel__header.edit-widgets-sidebar__panel-tabs .components-button.has-icon { |
|
755 |
display: flex; |
|
756 |
} |
|
757 |
} |
|
758 |
|
|
759 |
.components-button.edit-widgets-sidebar__panel-tab { |
|
760 |
border-radius: 0; |
|
761 |
height: 49px; |
|
762 |
background: transparent; |
|
763 |
border: none; |
|
764 |
box-shadow: none; |
|
765 |
cursor: pointer; |
|
766 |
display: inline-block; |
|
767 |
padding: 3px 15px; |
|
768 |
margin-right: 0; |
|
769 |
font-weight: 400; |
|
770 |
color: #1e1e1e; |
|
771 |
} |
|
772 |
.components-button.edit-widgets-sidebar__panel-tab::after { |
|
773 |
content: attr(data-label); |
|
774 |
display: block; |
|
775 |
font-weight: 600; |
|
776 |
height: 0; |
|
777 |
overflow: hidden; |
|
778 |
speak: none; |
|
779 |
visibility: hidden; |
|
780 |
} |
|
781 |
.components-button.edit-widgets-sidebar__panel-tab.is-active { |
|
782 |
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color); |
|
783 |
font-weight: 600; |
|
784 |
position: relative; |
|
785 |
} |
|
786 |
.components-button.edit-widgets-sidebar__panel-tab.is-active::before { |
|
787 |
content: ""; |
|
788 |
position: absolute; |
|
789 |
top: 0; |
|
790 |
bottom: 1px; |
|
791 |
left: 0; |
|
792 |
right: 0; |
|
793 |
border-bottom: 4px solid transparent; |
|
794 |
} |
|
795 |
.components-button.edit-widgets-sidebar__panel-tab:focus { |
|
796 |
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); |
|
797 |
} |
|
798 |
.components-button.edit-widgets-sidebar__panel-tab.is-active:focus { |
|
799 |
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color); |
|
800 |
} |
|
801 |
|
|
802 |
.edit-widgets-widget-areas__top-container { |
|
803 |
display: flex; |
|
804 |
padding: 16px; |
|
805 |
} |
|
806 |
.edit-widgets-widget-areas__top-container .block-editor-block-icon { |
|
807 |
margin-left: 16px; |
|
808 |
} |
|
809 |
|
|
810 |
.edit-widgets-notices__snackbar { |
|
811 |
position: fixed; |
|
812 |
left: 0; |
|
813 |
bottom: 20px; |
|
814 |
padding-right: 16px; |
|
815 |
padding-left: 16px; |
|
816 |
} |
|
817 |
|
|
818 |
.edit-widgets-notices__snackbar { |
|
819 |
/* Set left position when auto-fold is not on the body element. */ |
|
820 |
right: 0; |
|
821 |
} |
|
822 |
@media (min-width: 783px) { |
|
823 |
.edit-widgets-notices__snackbar { |
|
824 |
right: 160px; |
|
825 |
} |
|
826 |
} |
|
827 |
|
|
828 |
.auto-fold .edit-widgets-notices__snackbar { |
|
829 |
/* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ |
|
830 |
} |
|
831 |
@media (min-width: 783px) { |
|
832 |
.auto-fold .edit-widgets-notices__snackbar { |
|
833 |
right: 36px; |
|
834 |
} |
|
835 |
} |
|
836 |
@media (min-width: 961px) { |
|
837 |
.auto-fold .edit-widgets-notices__snackbar { |
|
838 |
right: 160px; |
|
839 |
} |
|
840 |
} |
|
841 |
|
|
842 |
/* Sidebar manually collapsed. */ |
|
843 |
.folded .edit-widgets-notices__snackbar { |
|
844 |
right: 0; |
|
845 |
} |
|
846 |
@media (min-width: 783px) { |
|
847 |
.folded .edit-widgets-notices__snackbar { |
|
848 |
right: 36px; |
|
849 |
} |
|
850 |
} |
|
851 |
|
|
852 |
body.is-fullscreen-mode .edit-widgets-notices__snackbar { |
|
853 |
right: 0 !important; |
|
854 |
} |
|
855 |
|
|
856 |
.edit-widgets-notices__dismissible .components-notice, |
|
857 |
.edit-widgets-notices__pinned .components-notice { |
|
858 |
box-sizing: border-box; |
|
859 |
margin: 0; |
|
860 |
border-bottom: 1px solid rgba(0, 0, 0, 0.2); |
|
861 |
padding: 0 12px; |
|
862 |
min-height: 60px; |
|
863 |
} |
|
864 |
.edit-widgets-notices__dismissible .components-notice .components-notice__dismiss, |
|
865 |
.edit-widgets-notices__pinned .components-notice .components-notice__dismiss { |
|
866 |
margin-top: 12px; |
|
867 |
} |
|
868 |
|
|
869 |
.edit-widgets-layout__inserter-panel { |
|
870 |
height: 100%; |
|
871 |
display: flex; |
|
872 |
flex-direction: column; |
|
873 |
} |
|
874 |
.edit-widgets-layout__inserter-panel .block-editor-inserter__menu { |
|
875 |
overflow: hidden; |
|
876 |
} |
|
877 |
|
|
878 |
.edit-widgets-layout__inserter-panel-header { |
|
879 |
padding-top: 8px; |
|
880 |
padding-left: 8px; |
|
881 |
display: flex; |
|
882 |
justify-content: flex-end; |
|
883 |
} |
|
884 |
|
|
885 |
.edit-widgets-layout__inserter-panel-content { |
|
886 |
height: calc(100% - 36px - 8px); |
|
887 |
} |
|
888 |
@media (min-width: 782px) { |
|
889 |
.edit-widgets-layout__inserter-panel-content { |
|
890 |
height: 100%; |
|
891 |
} |
|
892 |
} |
|
893 |
|
|
894 |
.edit-widgets-welcome-guide { |
|
895 |
width: 312px; |
|
896 |
} |
|
897 |
.edit-widgets-welcome-guide__image { |
|
898 |
background: #00a0d2; |
|
899 |
margin: 0 0 16px; |
|
900 |
} |
19
|
901 |
.edit-widgets-welcome-guide__image > img { |
|
902 |
display: block; |
|
903 |
max-width: 100%; |
|
904 |
-o-object-fit: cover; |
|
905 |
object-fit: cover; |
|
906 |
} |
18
|
907 |
.edit-widgets-welcome-guide__heading { |
|
908 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
909 |
font-size: 24px; |
|
910 |
line-height: 1.4; |
|
911 |
margin: 16px 0 16px 0; |
|
912 |
padding: 0 32px; |
|
913 |
} |
|
914 |
.edit-widgets-welcome-guide__text { |
|
915 |
font-size: 13px; |
|
916 |
line-height: 1.4; |
|
917 |
margin: 0 0 24px 0; |
|
918 |
padding: 0 32px; |
|
919 |
} |
|
920 |
.edit-widgets-welcome-guide__inserter-icon { |
|
921 |
margin: 0 4px; |
|
922 |
vertical-align: text-top; |
|
923 |
} |
|
924 |
|
|
925 |
.edit-widgets-block-editor { |
|
926 |
position: relative; |
|
927 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
928 |
display: flex; |
|
929 |
flex-direction: column; |
|
930 |
flex-grow: 1; |
|
931 |
} |
|
932 |
.edit-widgets-block-editor > div:last-of-type, |
|
933 |
.edit-widgets-block-editor .block-editor-writing-flow, |
|
934 |
.edit-widgets-block-editor .block-editor-writing-flow > div { |
|
935 |
display: flex; |
|
936 |
flex-direction: column; |
|
937 |
flex-grow: 1; |
|
938 |
} |
|
939 |
.edit-widgets-block-editor .edit-widgets-main-block-list { |
|
940 |
height: 100%; |
|
941 |
} |
|
942 |
.edit-widgets-block-editor .components-button { |
|
943 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
944 |
font-size: 13px; |
|
945 |
} |
|
946 |
.edit-widgets-block-editor .components-button.is-tertiary, .edit-widgets-block-editor .components-button.has-icon { |
|
947 |
padding: 6px; |
|
948 |
} |
|
949 |
|
19
|
950 |
.edit-widgets-editor__list-view-panel { |
|
951 |
height: 100%; |
|
952 |
display: flex; |
|
953 |
flex-direction: column; |
|
954 |
min-width: 350px; |
|
955 |
} |
|
956 |
|
|
957 |
.edit-widgets-editor__list-view-panel-content { |
|
958 |
height: calc(100% - 36px - 8px); |
|
959 |
overflow-y: auto; |
|
960 |
padding: 8px; |
|
961 |
} |
|
962 |
|
|
963 |
.edit-widgets-editor__list-view-panel-header { |
|
964 |
align-items: center; |
|
965 |
border-bottom: 1px solid #ddd; |
|
966 |
display: flex; |
|
967 |
justify-content: space-between; |
|
968 |
height: 48px; |
|
969 |
padding-right: 16px; |
|
970 |
padding-left: 4px; |
|
971 |
} |
|
972 |
|
18
|
973 |
html.wp-toolbar { |
|
974 |
background: #fff; |
|
975 |
} |
|
976 |
|
|
977 |
body.appearance_page_gutenberg-widgets, |
|
978 |
body.widgets-php { |
|
979 |
background: #fff; |
|
980 |
/* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well. |
|
981 |
Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */ |
|
982 |
} |
|
983 |
body.appearance_page_gutenberg-widgets #wpcontent, |
|
984 |
body.widgets-php #wpcontent { |
|
985 |
padding-right: 0; |
|
986 |
} |
|
987 |
body.appearance_page_gutenberg-widgets #wpbody-content, |
|
988 |
body.widgets-php #wpbody-content { |
|
989 |
padding-bottom: 0; |
|
990 |
} |
|
991 |
body.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta), |
|
992 |
body.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) { |
|
993 |
display: none; |
|
994 |
} |
|
995 |
body.appearance_page_gutenberg-widgets #wpfooter, |
|
996 |
body.widgets-php #wpfooter { |
|
997 |
display: none; |
|
998 |
} |
|
999 |
body.appearance_page_gutenberg-widgets .a11y-speak-region, |
|
1000 |
body.widgets-php .a11y-speak-region { |
|
1001 |
right: -1px; |
|
1002 |
top: -1px; |
|
1003 |
} |
|
1004 |
body.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu::after, |
|
1005 |
body.appearance_page_gutenberg-widgets ul#adminmenu > li.current > a.current::after, |
|
1006 |
body.widgets-php ul#adminmenu a.wp-has-current-submenu::after, |
|
1007 |
body.widgets-php ul#adminmenu > li.current > a.current::after { |
|
1008 |
border-left-color: #fff; |
|
1009 |
} |
|
1010 |
body.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type, |
|
1011 |
body.widgets-php .media-frame select.attachment-filters:last-of-type { |
|
1012 |
width: auto; |
|
1013 |
max-width: 100%; |
|
1014 |
} |
|
1015 |
|
|
1016 |
.blocks-widgets-container, |
|
1017 |
.components-modal__frame { |
|
1018 |
box-sizing: border-box; |
|
1019 |
} |
|
1020 |
.blocks-widgets-container *, |
|
1021 |
.blocks-widgets-container *::before, |
|
1022 |
.blocks-widgets-container *::after, |
|
1023 |
.components-modal__frame *, |
|
1024 |
.components-modal__frame *::before, |
|
1025 |
.components-modal__frame *::after { |
|
1026 |
box-sizing: inherit; |
|
1027 |
} |
|
1028 |
|
|
1029 |
@media (min-width: 600px) { |
|
1030 |
.blocks-widgets-container { |
|
1031 |
position: absolute; |
|
1032 |
top: 0; |
|
1033 |
left: 0; |
|
1034 |
bottom: 0; |
|
1035 |
right: 0; |
|
1036 |
min-height: calc(100vh - 46px); |
|
1037 |
} |
|
1038 |
} |
|
1039 |
@media (min-width: 782px) { |
|
1040 |
.blocks-widgets-container { |
|
1041 |
min-height: calc(100vh - 32px); |
|
1042 |
} |
|
1043 |
} |
|
1044 |
.blocks-widgets-container .interface-interface-skeleton__content { |
|
1045 |
background-color: #f0f0f0; |
|
1046 |
} |
|
1047 |
|
|
1048 |
.blocks-widgets-container .editor-styles-wrapper { |
|
1049 |
max-width: 700px; |
|
1050 |
margin: auto; |
|
1051 |
} |
|
1052 |
|
|
1053 |
.edit-widgets-sidebar .components-button.interface-complementary-area__pin-unpin-item { |
|
1054 |
display: none; |
|
1055 |
} |
|
1056 |
|
|
1057 |
.widgets-php .notice { |
|
1058 |
display: none !important; |
|
1059 |
} |
|
1060 |
|
|
1061 |
body.admin-color-light { |
|
1062 |
--wp-admin-theme-color: #0085ba; |
19
|
1063 |
--wp-admin-theme-color--rgb: 0, 133, 186; |
18
|
1064 |
--wp-admin-theme-color-darker-10: #0073a1; |
19
|
1065 |
--wp-admin-theme-color-darker-10--rgb: 0, 115, 161; |
18
|
1066 |
--wp-admin-theme-color-darker-20: #006187; |
19
|
1067 |
--wp-admin-theme-color-darker-20--rgb: 0, 97, 135; |
18
|
1068 |
--wp-admin-border-width-focus: 2px; |
|
1069 |
} |
|
1070 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1071 |
body.admin-color-light { |
|
1072 |
--wp-admin-border-width-focus: 1.5px; |
|
1073 |
} |
|
1074 |
} |
|
1075 |
|
|
1076 |
body.admin-color-modern { |
|
1077 |
--wp-admin-theme-color: #3858e9; |
19
|
1078 |
--wp-admin-theme-color--rgb: 56, 88, 233; |
18
|
1079 |
--wp-admin-theme-color-darker-10: #2145e6; |
19
|
1080 |
--wp-admin-theme-color-darker-10--rgb: 33, 69, 230; |
18
|
1081 |
--wp-admin-theme-color-darker-20: #183ad6; |
19
|
1082 |
--wp-admin-theme-color-darker-20--rgb: 24, 58, 214; |
18
|
1083 |
--wp-admin-border-width-focus: 2px; |
|
1084 |
} |
|
1085 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1086 |
body.admin-color-modern { |
|
1087 |
--wp-admin-border-width-focus: 1.5px; |
|
1088 |
} |
|
1089 |
} |
|
1090 |
|
|
1091 |
body.admin-color-blue { |
|
1092 |
--wp-admin-theme-color: #096484; |
19
|
1093 |
--wp-admin-theme-color--rgb: 9, 100, 132; |
18
|
1094 |
--wp-admin-theme-color-darker-10: #07526c; |
19
|
1095 |
--wp-admin-theme-color-darker-10--rgb: 7, 82, 108; |
18
|
1096 |
--wp-admin-theme-color-darker-20: #064054; |
19
|
1097 |
--wp-admin-theme-color-darker-20--rgb: 6, 64, 84; |
18
|
1098 |
--wp-admin-border-width-focus: 2px; |
|
1099 |
} |
|
1100 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1101 |
body.admin-color-blue { |
|
1102 |
--wp-admin-border-width-focus: 1.5px; |
|
1103 |
} |
|
1104 |
} |
|
1105 |
|
|
1106 |
body.admin-color-coffee { |
|
1107 |
--wp-admin-theme-color: #46403c; |
19
|
1108 |
--wp-admin-theme-color--rgb: 70, 64, 60; |
18
|
1109 |
--wp-admin-theme-color-darker-10: #383330; |
19
|
1110 |
--wp-admin-theme-color-darker-10--rgb: 56, 51, 48; |
18
|
1111 |
--wp-admin-theme-color-darker-20: #2b2724; |
19
|
1112 |
--wp-admin-theme-color-darker-20--rgb: 43, 39, 36; |
18
|
1113 |
--wp-admin-border-width-focus: 2px; |
|
1114 |
} |
|
1115 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1116 |
body.admin-color-coffee { |
|
1117 |
--wp-admin-border-width-focus: 1.5px; |
|
1118 |
} |
|
1119 |
} |
|
1120 |
|
|
1121 |
body.admin-color-ectoplasm { |
|
1122 |
--wp-admin-theme-color: #523f6d; |
19
|
1123 |
--wp-admin-theme-color--rgb: 82, 63, 109; |
18
|
1124 |
--wp-admin-theme-color-darker-10: #46365d; |
19
|
1125 |
--wp-admin-theme-color-darker-10--rgb: 70, 54, 93; |
18
|
1126 |
--wp-admin-theme-color-darker-20: #3a2c4d; |
19
|
1127 |
--wp-admin-theme-color-darker-20--rgb: 58, 44, 77; |
18
|
1128 |
--wp-admin-border-width-focus: 2px; |
|
1129 |
} |
|
1130 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1131 |
body.admin-color-ectoplasm { |
|
1132 |
--wp-admin-border-width-focus: 1.5px; |
|
1133 |
} |
|
1134 |
} |
|
1135 |
|
|
1136 |
body.admin-color-midnight { |
|
1137 |
--wp-admin-theme-color: #e14d43; |
19
|
1138 |
--wp-admin-theme-color--rgb: 225, 77, 67; |
18
|
1139 |
--wp-admin-theme-color-darker-10: #dd382d; |
19
|
1140 |
--wp-admin-theme-color-darker-10--rgb: 221, 56, 45; |
18
|
1141 |
--wp-admin-theme-color-darker-20: #d02c21; |
19
|
1142 |
--wp-admin-theme-color-darker-20--rgb: 208, 44, 33; |
18
|
1143 |
--wp-admin-border-width-focus: 2px; |
|
1144 |
} |
|
1145 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1146 |
body.admin-color-midnight { |
|
1147 |
--wp-admin-border-width-focus: 1.5px; |
|
1148 |
} |
|
1149 |
} |
|
1150 |
|
|
1151 |
body.admin-color-ocean { |
|
1152 |
--wp-admin-theme-color: #627c83; |
19
|
1153 |
--wp-admin-theme-color--rgb: 98, 124, 131; |
18
|
1154 |
--wp-admin-theme-color-darker-10: #576e74; |
19
|
1155 |
--wp-admin-theme-color-darker-10--rgb: 87, 110, 116; |
18
|
1156 |
--wp-admin-theme-color-darker-20: #4c6066; |
19
|
1157 |
--wp-admin-theme-color-darker-20--rgb: 76, 96, 102; |
18
|
1158 |
--wp-admin-border-width-focus: 2px; |
|
1159 |
} |
|
1160 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1161 |
body.admin-color-ocean { |
|
1162 |
--wp-admin-border-width-focus: 1.5px; |
|
1163 |
} |
|
1164 |
} |
|
1165 |
|
|
1166 |
body.admin-color-sunrise { |
|
1167 |
--wp-admin-theme-color: #dd823b; |
19
|
1168 |
--wp-admin-theme-color--rgb: 221, 130, 59; |
18
|
1169 |
--wp-admin-theme-color-darker-10: #d97426; |
19
|
1170 |
--wp-admin-theme-color-darker-10--rgb: 217, 116, 38; |
18
|
1171 |
--wp-admin-theme-color-darker-20: #c36922; |
19
|
1172 |
--wp-admin-theme-color-darker-20--rgb: 195, 105, 34; |
18
|
1173 |
--wp-admin-border-width-focus: 2px; |
|
1174 |
} |
|
1175 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { |
|
1176 |
body.admin-color-sunrise { |
|
1177 |
--wp-admin-border-width-focus: 1.5px; |
|
1178 |
} |
|
1179 |
} |