PluginProbe ʕ •ᴥ•ʔ
Advanced Custom Fields: Extended / trunk
Advanced Custom Fields: Extended vtrunk
0.9.2.6 0.9.2.5 0.8.6 0.8.6.1 0.8.6.3 0.8.6.5 0.8.6.6 0.8.6.7 0.8.6.8 0.8.6.9 0.8.7 0.8.7.1 0.8.7.2 0.8.7.3 0.8.7.4 0.8.7.5 0.8.7.6 0.8.8 0.8.8.1 0.8.8.10 0.8.8.11 0.8.8.2 0.8.8.3 0.8.8.4 0.8.8.5 0.8.8.6 0.8.8.7 0.8.8.8 0.8.8.9 0.8.9 0.8.9.1 0.8.9.2 0.8.9.3 0.8.9.4 0.8.9.5 0.9 0.9.0.1 0.9.0.2 0.9.0.3 0.9.0.4 0.9.0.5 0.9.0.6 0.9.0.7 0.9.0.8 0.9.0.9 0.9.1 0.9.1.1 0.9.2 0.9.2.1 0.9.2.2 0.9.2.3 0.9.2.4 trunk 0.5 0.5.1 0.5.2 0.5.2.1 0.5.2.3 0.5.5 0.5.5.1 0.5.8 0.5.8.1 0.6 0.6.0.1 0.6.0.2 0.6.1 0.6.3 0.6.5 0.6.7 0.6.7.2 0.7 0.7.0.3 0.7.5 0.7.5.5 0.7.8 0.7.9 0.7.9.3 0.7.9.4 0.7.9.9.8 0.7.9.9.9 0.8 0.8.1 0.8.2 0.8.3 0.8.3.1 0.8.4 0.8.4.1 0.8.4.5 0.8.4.6 0.8.5 0.8.5.5
acf-extended / assets / css / acfe.css
acf-extended / assets / css Last commit date
acfe-admin-input.css 1 month ago acfe-admin-input.min.css 1 month ago acfe-admin.css 2 months ago acfe-admin.min.css 2 months ago acfe-field-group.css 1 month ago acfe-field-group.min.css 1 month ago acfe-input.css 2 months ago acfe-input.min.css 2 months ago acfe-ui.css 2 months ago acfe-ui.min.css 2 months ago acfe.css 2 months ago acfe.min.css 2 months ago
acfe.css
564 lines
1 .acfe-grid,
2 .acfe-grid * {
3 -webkit-box-sizing: border-box;
4 box-sizing: border-box
5 }
6
7 .acfe-grid {
8 margin: 0;
9 display: grid;
10 grid-template-columns: repeat(12, minmax(0, 1fr));
11 gap: 14px
12 }
13
14 .acfe-grid>* {
15 margin: 0;
16 grid-column: span 12/span 12
17 }
18
19 body.acfe-modal-opened {
20 overflow: hidden
21 }
22
23 .acfe-modal-overlay {
24 background: rgba(0, 0, 0, .7);
25 position: fixed;
26 top: 0;
27 left: 0;
28 right: 0;
29 bottom: 0;
30 height: 100%;
31 width: 100%;
32 z-index: 100000
33 }
34
35 .acfe-modal.-open {
36 display: -webkit-box;
37 display: -ms-flexbox;
38 display: flex
39 }
40
41 .acfe-modal {
42 display: none;
43 position: fixed;
44 -webkit-transition: all .3s ease-in-out;
45 -o-transition: all .3s ease-in-out;
46 transition: all .3s ease-in-out;
47 z-index: 100001;
48 height: 100%;
49 width: 100%;
50 top: 0;
51 left: 0;
52 bottom: 0;
53 right: 0;
54 -webkit-font-smoothing: subpixel-antialiased;
55 -webkit-box-orient: vertical;
56 -webkit-box-direction: normal;
57 -ms-flex-direction: column;
58 flex-direction: column;
59 -webkit-box-pack: center;
60 -ms-flex-pack: center;
61 justify-content: center;
62 -webkit-box-align: center;
63 -ms-flex-align: center;
64 align-items: center;
65 pointer-events: none
66 }
67
68 .acfe-modal .acfe-modal-footer,
69 .acfe-modal .acfe-modal-footer *,
70 .acfe-modal .acfe-modal-title,
71 .acfe-modal .acfe-modal-title * {
72 -webkit-box-sizing: border-box;
73 box-sizing: border-box
74 }
75
76 .acfe-modal>.acfe-modal-wrapper {
77 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .7);
78 box-shadow: 0 5px 15px rgba(0, 0, 0, .7);
79 display: -webkit-box;
80 display: -ms-flexbox;
81 display: flex;
82 -webkit-box-orient: vertical;
83 -webkit-box-direction: normal;
84 -ms-flex-direction: column;
85 flex-direction: column;
86 width: calc(100vw - 60px);
87 max-width: 1100px;
88 max-height: calc(100vh - 60px);
89 position: relative
90 }
91
92 .acfe-modal.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-content,
93 .acfe-modal.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-footer,
94 .acfe-modal.acfe-modal-sub>.acfe-modal-wrapper>.acfe-modal-title {
95 pointer-events: none
96 }
97
98 .acfe-modal.acfe-modal-sub>.acfe-modal-wrapper::before {
99 content: '';
100 position: absolute;
101 z-index: 10;
102 background: rgba(0, 0, 0, .4);
103 height: 100%;
104 width: 100%;
105 pointer-events: none
106 }
107
108 .acfe-modal .acfe-modal-title {
109 display: block;
110 height: 50px;
111 line-height: 50px;
112 font-size: 22px;
113 color: #23282d;
114 border-bottom: 1px solid #ccd0d4;
115 -o-text-overflow: ellipsis;
116 text-overflow: ellipsis;
117 background: #fcfcfc;
118 padding: 0 0 0 16px;
119 position: relative;
120 text-align: left;
121 pointer-events: auto
122 }
123
124 .acfe-modal .acfe-modal-title>span.title {
125 line-height: 50px;
126 color: #23282d;
127 font-weight: 600
128 }
129
130 .acfe-modal .acfe-modal-title>span.title .acf-fc-layout-order {
131 width: 30px;
132 height: 30px;
133 border-radius: 30px;
134 display: inline-block;
135 text-align: center;
136 line-height: 30px;
137 margin: 0 8px 0 0;
138 background: #f1f1f1;
139 font-size: 14px;
140 color: #666;
141 vertical-align: 2px
142 }
143
144 .acfe-modal .acfe-modal-title>button.close {
145 height: 50px;
146 width: 50px;
147 color: #666;
148 border: 0;
149 border-left: 0;
150 margin: 0;
151 padding: 0;
152 border-radius: 0;
153 position: absolute;
154 top: 0;
155 right: 0;
156 -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
157 -o-transition: color .1s ease-in-out, background .1s ease-in-out;
158 transition: color .1s ease-in-out, background .1s ease-in-out;
159 background: 0 0;
160 cursor: pointer
161 }
162
163 .acfe-modal .acfe-modal-title>button.close:hover {
164 color: var(--wp-admin-theme-color, #00a0d2)
165 }
166
167 .acfe-modal .acfe-modal-title>button.close::before {
168 height: 50px;
169 width: 50px;
170 line-height: 50px !important;
171 font: normal 20px/1 dashicons;
172 content: "\f158";
173 margin: 0;
174 padding: 0
175 }
176
177 .acfe-modal .acfe-modal-content {
178 height: 100%;
179 background: #fff;
180 display: block;
181 position: relative;
182 pointer-events: auto;
183 overflow: auto
184 }
185
186 .acfe-modal.-iframe .acfe-modal-content {
187 overflow: hidden;
188 max-height: 100%;
189 height: 850px
190 }
191
192 .acfe-modal.-iframe .acfe-modal-content>iframe {
193 width: 100%;
194 height: 100%;
195 border: 0
196 }
197
198 .acfe-modal .acfe-modal-footer {
199 display: block;
200 color: #23282d;
201 background: #fcfcfc;
202 padding: 10px 16px;
203 position: relative;
204 text-align: right;
205 border-top: 1px solid #ddd;
206 pointer-events: auto
207 }
208
209 .acfe-modal.-small>.acfe-modal-wrapper {
210 max-width: 450px
211 }
212
213 .acfe-modal.-medium>.acfe-modal-wrapper {
214 max-width: 700px
215 }
216
217 .acfe-modal.-large>.acfe-modal-wrapper {
218 max-width: 1100px
219 }
220
221 .acfe-modal.-xlarge>.acfe-modal-wrapper {
222 max-width: 1400px
223 }
224
225 .acfe-modal:not(.-full)>.acfe-modal-wrapper {
226 border-radius: 3px;
227 overflow: hidden
228 }
229
230 .acfe-modal.-full>.acfe-modal-wrapper {
231 max-width: 100%;
232 -webkit-box-flex: 1;
233 -ms-flex: 1;
234 flex: 1
235 }
236
237 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields,
238 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone,
239 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input,
240 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input>.acf-clone-fields.acf-fields.-left {
241 height: 100%
242 }
243
244 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone {
245 padding: 0
246 }
247
248 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input {
249 margin: 0
250 }
251
252 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left::before,
253 .acfe-modal.-full>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields>.acf-field-clone>.acf-input>.acf-clone-fields.acf-fields.-left::before {
254 content: "";
255 display: block;
256 position: absolute;
257 z-index: 0;
258 background: #f9f9f9;
259 border-color: #e1e1e1;
260 border-style: solid;
261 border-width: 0 1px 0 0;
262 top: 0;
263 bottom: 0;
264 left: 0;
265 width: 20%
266 }
267
268 .acfe-modal .acfe-modal-spacer {
269 padding: 15px
270 }
271
272 .pac-container {
273 z-index: 100001
274 }
275
276 body.acfe-modal-opened.wp-admin.upload-php>div:not([style*="display: none;"])>.media-modal.wp-core-ui:not(.acf-media-modal)::before {
277 content: "";
278 display: block;
279 position: absolute;
280 background: rgba(0, 0, 0, .7);
281 top: 0;
282 left: 0;
283 width: 100%;
284 height: 100%;
285 z-index: 10000
286 }
287
288 #side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field::before {
289 display: block
290 }
291
292 #side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field>.acf-label {
293 width: 20%;
294 margin: 0
295 }
296
297 #side-sortables .acf-fields.-left .acfe-modal .acf-fields.-left>.acf-field>.acf-input {
298 width: 80%
299 }
300
301 .acfe-modal-fc-copy-layout .acfe-modal-spacer,
302 .acfe-modal-fc-paste-layout .acfe-modal-spacer {
303 padding: 16px
304 }
305
306 .acfe-modal-fc-copy-layout .acfe-modal-spacer>div,
307 .acfe-modal-fc-paste-layout .acfe-modal-spacer>div {
308 font-size: 14px;
309 line-height: 21px
310 }
311
312 .acfe-modal-fc-copy-layout textarea,
313 .acfe-modal-fc-paste-layout textarea {
314 width: 100%;
315 height: 80px;
316 margin-top: 25px
317 }
318
319 .acfe-modal-fc-copy-layout .close.cancel,
320 .acfe-modal-fc-paste-layout .close.cancel {
321 background: 0 0 !important;
322 border: none !important
323 }
324
325 .acfe-modal-fc-copy-layout .close.cancel:hover,
326 .acfe-modal-fc-paste-layout .close.cancel:hover {
327 text-decoration: underline
328 }
329
330 body.block-editor-page.acfe-modal-opened .edit-post-sidebar__panel-tabs {
331 visibility: hidden
332 }
333
334 body.block-editor-page .edit-post-layout .acfe-modal.-open {
335 -webkit-box-pack: start;
336 -ms-flex-pack: start;
337 justify-content: start;
338 -webkit-box-align: start;
339 -ms-flex-align: start;
340 align-items: start;
341 background: rgba(0, 0, 0, .7)
342 }
343
344 body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper {
345 height: 100%;
346 width: 100%;
347 max-height: calc(100vh - 70px);
348 max-width: calc(100vw - 340px);
349 margin-left: 170px;
350 margin-top: 50px
351 }
352
353 body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left {
354 height: 100%
355 }
356
357 body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper>.acfe-modal-content>.acf-fields.-left::before {
358 content: "";
359 display: block;
360 position: absolute;
361 z-index: 0;
362 background: #f9f9f9;
363 border-color: #e1e1e1;
364 border-style: solid;
365 border-width: 0 1px 0 0;
366 top: 0;
367 bottom: 0;
368 left: 0;
369 width: 20%
370 }
371
372 body.block-editor-page .edit-post-sidebar .acfe-modal .acf-fields>.acf-field .acf-label label {
373 font-weight: 600
374 }
375
376 body.block-editor-page .edit-post-sidebar .acfe-modal .acf-fields.-left>.acf-field {
377 margin: 0;
378 padding: 15px 0;
379 border-width: 1px;
380 border-color: #eee
381 }
382
383 body.block-editor-page .edit-post-sidebar .acfe-modal .acf-fields.-left>.acf-field::before {
384 border-width: 0;
385 background: 0 0
386 }
387
388 body.block-editor-page .acfe-modal-overlay {
389 display: none
390 }
391
392 body.block-editor-page .acfe-modal.-open.acfe-modal-sub {
393 background: 0 0
394 }
395
396 body.block-editor-page .acfe-modal.-open.acfe-modal-sub>.acfe-modal-wrapper::before {
397 background: 0 0
398 }
399
400 body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper {
401 margin-top: 103px;
402 margin-left: 170px;
403 max-height: calc(100vh - 139px);
404 max-width: calc(100vw - 181px)
405 }
406
407 body.block-editor-page.folded .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper {
408 margin-top: 103px;
409 margin-left: 46px;
410 max-height: calc(100vh - 139px);
411 max-width: calc(100vw - 57px)
412 }
413
414 body.block-editor-page.is-fullscreen-mode .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper {
415 margin-top: 69px;
416 margin-left: 9px;
417 max-height: calc(100vh - 104px);
418 max-width: calc(100vw - 18px)
419 }
420
421 body.block-editor-page .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper {
422 max-width: calc(100vw - 461px)
423 }
424
425 body.block-editor-page.folded .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper {
426 max-width: calc(100vw - 337px)
427 }
428
429 body.block-editor-page.is-fullscreen-mode .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper {
430 max-width: calc(100vw - 298px)
431 }
432
433 @media only screen and (max-width:960px) {
434 body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper {
435 margin-top: 103px;
436 margin-left: 170px;
437 max-height: calc(100vh - 139px);
438 max-width: calc(100vw - 181px)
439 }
440
441 body.block-editor-page .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper {
442 max-width: calc(100vw - 461px)
443 }
444
445 body.block-editor-page.auto-fold .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper {
446 margin-top: 103px;
447 margin-left: 46px;
448 max-height: calc(100vh - 139px);
449 max-width: calc(100vw - 57px)
450 }
451
452 body.block-editor-page.auto-fold .edit-post-layout.is-sidebar-opened .acfe-modal.-open>.acfe-modal-wrapper {
453 max-width: calc(100vw - 337px)
454 }
455 }
456
457 @media only screen and (max-width:782px) {
458 body.block-editor-page .edit-post-layout .acfe-modal.-open>.acfe-modal-wrapper {
459 max-width: calc(100vw - 20px) !important;
460 margin-left: 10px !important;
461 max-height: calc(100vh - 127px) !important;
462 margin-top: 117px !important
463 }
464 }
465
466 .acfe-nav-tabs,
467 .acfe-nav-tabs * {
468 -webkit-box-sizing: border-box;
469 box-sizing: border-box
470 }
471
472 .acfe-nav-tabs {
473 display: -webkit-box;
474 display: -ms-flexbox;
475 display: flex;
476 -webkit-box-align: center;
477 -ms-flex-align: center;
478 align-items: center;
479 -ms-flex-flow: wrap;
480 flex-flow: wrap;
481 padding: 0;
482 margin: 0;
483 border-bottom: 1px solid #ddd;
484 background: #f7f7f7;
485 min-height: 39px
486 }
487
488 .acfe-nav-tabs .acfe-nav-tab {
489 -ms-flex-item-align: start;
490 align-self: flex-start;
491 height: 100%;
492 line-height: 38px;
493 -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
494 -o-transition: color .1s ease-in-out, background .1s ease-in-out;
495 transition: color .1s ease-in-out, background .1s ease-in-out;
496 padding: 0 15px;
497 text-decoration: none;
498 font-size: 14px;
499 font-weight: 600;
500 white-space: nowrap;
501 color: #50575e;
502 border-right: 1px solid #ddd;
503 background: #fcfcfc
504 }
505
506 .acfe-nav-tabs .acfe-nav-tab:focus {
507 outline: 0;
508 -webkit-box-shadow: none;
509 box-shadow: none
510 }
511
512 .acfe-nav-tabs .acfe-nav-tab:hover {
513 background: #f9f9f9;
514 color: #23282d
515 }
516
517 .acfe-nav-tabs .acfe-nav-tab.-active,
518 .acfe-nav-tabs .acfe-nav-tab.-active:hover {
519 background: #fff;
520 color: #23282d;
521 height: 39px;
522 margin-bottom: -1px;
523 line-height: 38px
524 }
525
526 .acfe-nav-tabs .acfe-nav-tab.-disabled,
527 .acfe-nav-tabs .acfe-nav-tab.-disabled:hover {
528 pointer-events: none;
529 opacity: .67
530 }
531
532 .acfe-nav-tabs .acfe-nav-tab .dashicons {
533 line-height: 40px
534 }
535
536 .acfe-nav-tabs.-left {
537 -webkit-box-orient: vertical;
538 -webkit-box-direction: normal;
539 -ms-flex-direction: column;
540 flex-direction: column;
541 border-right: 1px solid #ddd;
542 width: 250px
543 }
544
545 .acfe-nav-tabs.-left .acfe-nav-tab {
546 border-right: 0;
547 border-top: 1px solid #ddd;
548 width: 100%;
549 position: relative
550 }
551
552 .acfe-nav-tabs.-left .acfe-nav-tab.-active,
553 .acfe-nav-tabs.-left .acfe-nav-tab.-active:hover {
554 background: #fff;
555 color: #23282d;
556 margin-bottom: 0;
557 right: -1px;
558 padding-left: 14px;
559 height: 38px
560 }
561
562 .acfe-nav-tabs.-left .acfe-nav-tab:first-child {
563 border-top: none
564 }