PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.0.2
WP Coder – Insert & Manage Code Snippets v3.0.2
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / assets / css / admin.css

admin.css in WP Coder – Insert & Manage Code Snippets 3.0.2, at assets/css/admin.css

702 lines 13.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 :root {
2 --wowp-blue: #005BBF;
3 --wowp-yellow: #FFD500;
4 --wowp-border: #cccccc;
5 --wowp-dark: #14102C;
6 --wowp-orange: #E86E2C;
7 --wowp-bg: #EEF3EB;
8 --wowp-success: #00BF04;
9 --wowp-danger: #BF0400;
10 }
11
12 .wowp-box {
13 padding: 1.5rem 1.25rem;
14 margin-top: 50px;
15 position: relative;
16 box-sizing: border-box;
17 background: #ffffff;
18 background-clip: padding-box;
19 border: solid 2px transparent;
20 border-radius: 4px;
21 }
22 .wowp-box::before {
23 content: "";
24 position: absolute;
25 top: 0;
26 right: 0;
27 bottom: 0;
28 left: 0;
29 z-index: -1;
30 margin: -2px;
31 border-radius: inherit;
32 background: linear-gradient(to bottom, var(--wowp-blue), var(--wowp-yellow));
33 }
34
35 .wowp-header-border {
36 height: 5px;
37 background: linear-gradient(to right, var(--wowp-blue), var(--wowp-yellow));
38 margin-left: -20px;
39 }
40
41 .wowp-header {
42 position: relative;
43 padding: 32px 20px;
44 margin-left: -20px;
45 background: #ffffff;
46 display: flex;
47 align-items: center;
48 gap: 1rem;
49 flex-wrap: wrap;
50 }
51
52 .wowp-logo {
53 display: flex;
54 align-items: center;
55 }
56
57 .wowp-logo img {
58 width: 40px;
59 }
60
61 .wowp-header h1 {
62 position: relative;
63 margin: 0 35px 0 0;
64 }
65
66 .wowp-version {
67 position: absolute;
68 transform: translateY(-50%) translateX(50%);
69 font-size: 12px;
70 font-weight: normal;
71 }
72
73 .wowp-links {
74 position: absolute;
75 top: 0;
76 right: 20px;
77 display: flex;
78 border-radius: 0 0 4px 4px;
79 border: 2px solid;
80 border-top: none;
81 background-color: #DFE2FC;
82 border-image: linear-gradient(to right, #14102C, #E86E2C);
83 border-image-slice: 1;
84 }
85 @media screen and (max-width: 850px) {
86 .wowp-links {
87 display: none;
88 }
89 }
90 .wowp-links img {
91 width: 15px;
92 height: 15px;
93 }
94
95 .wowp-links a {
96 text-decoration: none;
97 color: #14102C;
98 display: flex;
99 flex-direction: column;
100 font-size: 12px;
101 align-items: center;
102 padding: 5px;
103 transition: all 0.15s linear;
104 }
105
106 .wowp-links a:hover {
107 background-color: #F6C8AF;
108 }
109
110 .wowp-links .dashicons {
111 width: 15px;
112 height: 15px;
113 font-size: 15px;
114 color: #596FF9;
115 }
116
117 .wowp-wrap .nav-tab-wrapper .nav-tab-active {
118 color: var(--wowp-blue);
119 }
120
121 .wowp-list {
122 padding: 50px 0;
123 }
124
125 @media screen and (max-width: 782px) {
126 .wowp-list td.column-mode span:first-child {
127 margin-left: 0;
128 }
129 }
130 .wowp-list .row-actions .duplicate a {
131 color: green;
132 }
133 .wowp-list .row-actions .export a {
134 color: orange;
135 }
136
137 .wowp-status-on,
138 .wowp-status-off {
139 display: inline-block;
140 width: 14px;
141 height: 14px;
142 border-radius: 50%;
143 }
144
145 .wowp-status-on {
146 background-color: green;
147 }
148
149 .wowp-status-off {
150 background-color: red;
151 }
152
153 .wowp-wrap fieldset {
154 border: 2px solid var(--wowp-border);
155 padding: 20px;
156 display: flex;
157 flex-wrap: wrap;
158 gap: 15px;
159 margin-bottom: 24px;
160 }
161 .wowp-wrap legend {
162 font-weight: bold;
163 color: var(--wowp-dark);
164 padding: 0 8px;
165 font-size: 15px;
166 }
167
168 .wowp-field {
169 position: relative;
170 box-sizing: border-box;
171 }
172 .wowp-field > input:not([type=checkbox], [type=radio]), .wowp-field > select {
173 height: 40px;
174 line-height: 40px;
175 width: 100%;
176 border: 1px solid var(--wowp-blue);
177 max-width: 100%;
178 }
179 .wowp-field .label {
180 position: absolute;
181 top: 0;
182 left: 10px;
183 transform: translateY(-50%);
184 font-size: 12px;
185 font-weight: 700;
186 padding: 0 5px;
187 color: #004A9B;
188 }
189 .wowp-field .label:after {
190 position: absolute;
191 content: " ";
192 height: 3px;
193 background: #fff;
194 width: 100%;
195 top: 50%;
196 left: 0;
197 z-index: -1;
198 transform: translateY(-50%);
199 }
200
201 .wowp-field {
202 width: calc(100%/3 - 15px/2 - 2.5px);
203 }
204 @media screen and (max-width: 1024px) {
205 .wowp-field {
206 width: 100%;
207 }
208 }
209
210 .wowp-field.has-chackbox {
211 display: flex;
212 padding: 0 8px;
213 align-items: center;
214 border: 1px solid var(--wowp-blue);
215 border-radius: 3px;
216 height: 40px;
217 line-height: 40px;
218 gap: 8px;
219 width: calc(100%/3 - 15px/2 - 2.5px - 2.5px);
220 }
221 @media screen and (max-width: 1024px) {
222 .wowp-field.has-chackbox {
223 width: 100%;
224 }
225 }
226 .wowp-field.has-chackbox input[type=checkbox] {
227 margin: 0;
228 }
229 .wowp-field.has-chackbox .label {
230 line-height: initial;
231 }
232
233 .wowp-field.has-addon {
234 display: flex;
235 align-items: center;
236 }
237 .wowp-field.has-addon .is-addon {
238 box-sizing: inherit;
239 height: 40px;
240 line-height: 40px;
241 padding: 0 8px;
242 background-color: #DFE2FC;
243 color: var(--wowp-dark);
244 border: 1px solid var(--wowp-blue);
245 border-radius: 3px 0 0 3px;
246 border-right: none;
247 margin-right: -2px;
248 }
249 .wowp-field.has-addon input:not([type=checkbox], [type=radio]) {
250 border-radius: 0 3px 3px 0;
251 }
252
253 .wowp-field.has-addon .is-addon .dashicons {
254 line-height: 40px;
255 }
256
257 .wowp-field.border-default .is-addon {
258 background-color: #dcdcde;
259 color: #50575e;
260 border-color: #8c8f94;
261 }
262 .wowp-field.border-default input:not([type=checkbox], [type=radio]) {
263 border: 1px solid #8c8f94;
264 }
265
266 .wowp-field.is-full {
267 width: 100%;
268 }
269
270 .wowp-fields-group {
271 display: flex;
272 gap: 15px;
273 flex-wrap: wrap;
274 width: 100%;
275 }
276
277 .wowp-notice {
278 padding: 0.75rem 1.25rem;
279 }
280
281 .wowp-error {
282 background: #FAD0D0;
283 color: #14102C;
284 border-left: 6px solid #E82C2C;
285 }
286
287 .wowp-success {
288 padding: 1.25rem;
289 background: #D0FAD0;
290 color: #14102C;
291 border-left: 6px solid #109610;
292 }
293
294 .wowp-file input::file-selector-button {
295 color: #14102C;
296 padding: 0.5em;
297 border: thin solid var(--wowp-yellow);
298 border-radius: 4px;
299 }
300
301 .wowp-file input[type=file]:valid {
302 color: var(--wowp-orange);
303 }
304
305 .wowp-settings h4 {
306 display: flex;
307 width: max-content;
308 gap: 8px;
309 align-items: center;
310 margin: 0 0 1.5rem 0;
311 font-weight: 800;
312 box-sizing: border-box;
313 color: var(--wowp-blue);
314 font-size: 16px;
315 letter-spacing: -1.08px;
316 line-height: 18px;
317 text-align: left;
318 -webkit-font-smoothing: antialiased;
319 background-color: var(--wowp-bg);
320 padding: 4px 8px;
321 border-radius: 25px;
322 }
323
324 .wowp-icon {
325 color: var(--wowp-orange);
326 }
327
328 .nav-tab-wrapper.wowp-tab {
329 cursor: pointer;
330 }
331
332 .wowp-tab .nav-tab-active {
333 background-color: #ffffff;
334 border-bottom: 1px solid #ffffff;
335 }
336
337 .wowp-tab-content {
338 padding: 1.5rem 1.25rem;
339 background-color: #ffffff;
340 border-width: 1px;
341 border-style: solid;
342 border-image: linear-gradient(to bottom, var(--wowp-blue), var(--wowp-yellow)) 1 100%;
343 }
344 .wowp-tab-content .tab-content {
345 display: none;
346 }
347 .wowp-tab-content .tab-content.tab-content-active {
348 display: block;
349 }
350
351 .wowp-text-helper {
352 width: 100%;
353 }
354
355 .CodeMirror {
356 border: 1px solid var(--wowp-border);
357 font-size: 13px;
358 resize: vertical;
359 overflow: auto;
360 }
361
362 .wowp-sidebar-pub-section {
363 display: flex;
364 flex-direction: column;
365 gap: 15px;
366 }
367
368 .wowp-sidebar-pub-section .wowp-field {
369 width: 100%;
370 }
371
372 .wowp-sidebar-pub-section .wowp-field .is-addon {
373 height: 32px;
374 line-height: 32px;
375 }
376 .wowp-sidebar-pub-section .wowp-field .is-addon .dashicons {
377 line-height: 32px;
378 }
379 .wowp-sidebar-pub-section .wowp-field .is-addon a {
380 text-decoration: none;
381 }
382 .wowp-sidebar-pub-section .wowp-field input:not([type=checkbox], [type=radio]) {
383 height: 32px;
384 }
385
386 .wowp-sidebar-pub-section [list]::-webkit-calendar-picker-indicator {
387 display: none !important;
388 }
389
390 .wowp-sidebar #major-publishing-actions {
391 margin: 0 -12px -12px -12px;
392 padding: 12px 24px;
393 }
394
395 .wowp-sidebar #minor-publishing-actions {
396 padding: 0;
397 }
398
399 .button._is-success {
400 background-color: var(--wowp-success);
401 border-color: var(--wowp-success);
402 color: #ffffff;
403 }
404 .button._is-success:focus, .button._is-success:hover {
405 background-color: #007602;
406 border-color: #007602;
407 color: #ffffff;
408 }
409
410 .button._is-danger {
411 background-color: var(--wowp-danger);
412 border-color: var(--wowp-danger);
413 color: #ffffff;
414 }
415 .button._is-danger:focus, .button._is-danger:hover {
416 background-color: #760200;
417 border-color: #760200;
418 color: #ffffff;
419 }
420
421 .has-tooltip {
422 position: relative;
423 cursor: help;
424 }
425 .has-tooltip::before, .has-tooltip::after {
426 color: #efefef;
427 font-family: monospace;
428 font-size: 12px;
429 opacity: 0;
430 pointer-events: none;
431 text-align: center;
432 }
433 .has-tooltip::before {
434 position: absolute;
435 top: 0;
436 left: 50%;
437 background-color: #2B222A;
438 border-radius: 5px;
439 color: #fff;
440 content: attr(data-tooltip);
441 padding: 5px 10px;
442 text-transform: none;
443 transition: all 0.5s ease;
444 width: 160px;
445 transform: translateY(calc(-100% - 7px)) translateX(-50%);
446 word-wrap: break-word;
447 white-space: break-spaces;
448 line-height: 1.1;
449 }
450 .has-tooltip::after {
451 position: absolute;
452 top: -7px;
453 left: 50%;
454 border-left: 5px solid transparent;
455 border-right: 5px solid transparent;
456 border-top: 5px solid #2B222A;
457 content: " ";
458 font-size: 0;
459 line-height: 0;
460 margin-left: -5px;
461 width: 0;
462 transform: translateX(-50%);
463 }
464 .has-tooltip:focus::before, .has-tooltip:focus::after, .has-tooltip:hover::before, .has-tooltip:hover::after {
465 opacity: 1;
466 transition: all 0.75s ease;
467 }
468 .has-tooltip.on-right::before {
469 top: 50%;
470 left: 100%;
471 transform: translateY(-50%) translateX(4px);
472 }
473 .has-tooltip.on-right::after {
474 top: 50%;
475 left: calc(100% + 2px);
476 rotate: 90deg;
477 transform: translateX(calc(-50% + 2.5px));
478 }
479 .has-tooltip.on-left::before {
480 top: 50%;
481 left: -2px;
482 transform: translateY(-50%) translateX(-100%);
483 }
484 .has-tooltip.on-left::after {
485 top: 50%;
486 left: 0;
487 rotate: -90deg;
488 transform: translateX(calc(-50% + 7px));
489 }
490
491 .wowp-toogle {
492 display: flex;
493 align-items: center;
494 position: relative;
495 text-decoration: none;
496 color: #ffffff;
497 width: 40px;
498 height: 28px;
499 border-radius: 50px;
500 padding: 0 4px;
501 }
502 .wowp-toogle:focus, .wowp-toogle:hover {
503 color: #ffffff;
504 }
505
506 .wowp-toogle span {
507 height: 20px;
508 width: 20px;
509 display: flex;
510 align-items: center;
511 justify-content: center;
512 border-radius: 50%;
513 font-size: 8px;
514 }
515
516 .wowp-toogle.is-on {
517 background-color: #BFFFC0;
518 }
519
520 .wowp-toogle.is-on span {
521 background-color: #00BF04;
522 }
523 .wowp-toogle.is-on:focus span, .wowp-toogle.is-on:hover span {
524 background-color: #007602;
525 }
526
527 .wowp-toogle.is-off {
528 flex-direction: row-reverse;
529 background-color: #FFC0BF;
530 }
531
532 .wowp-toogle.is-off span {
533 background-color: #BF0400;
534 }
535 .wowp-toogle.is-off:focus span, .wowp-toogle.is-off:hover span {
536 background-color: #760200;
537 }
538
539 .wowp-wrap .has-shadow {
540 box-shadow: 0 0 10px 3px rgba(0, 91, 191, 0.1);
541 }
542 .wowp-wrap .has-padding {
543 padding: 10px;
544 margin: 0 -10px;
545 }
546 .wowp-wrap .is-hidden {
547 display: none;
548 }
549 .wowp-wrap .has-radius {
550 border-radius: 4px;
551 }
552 .wowp-wrap .w_has-border {
553 border: 2px solid;
554 border-image: linear-gradient(to bottom, var(--wowp-blue), var(--wowp-yellow)) 1;
555 }
556 .wowp-wrap .w_width-750 {
557 max-width: 750px;
558 }
559 .wowp-wrap .has-mt {
560 margin-top: 24px;
561 }
562
563 .w_block {
564 background-color: #ebf3ff;
565 padding: 50px 32px;
566 max-width: 1200px;
567 margin: 50px auto;
568 }
569 .w_block-titles {
570 position: relative;
571 width: max-content;
572 margin: 0 auto;
573 display: flex;
574 flex-direction: column;
575 gap: 15px;
576 }
577 .w_block-subtitle {
578 color: #f16046;
579 font-size: 16px;
580 font-weight: 700;
581 line-height: 20px;
582 margin: 0;
583 }
584 .w_block-title {
585 position: relative;
586 font-size: 40px;
587 font-weight: 600;
588 line-height: 45px;
589 margin: 0;
590 background: linear-gradient(to right, #14102C 0%, #14102C 30%, #E86E2C 81%, #14102C 100%);
591 -webkit-background-clip: text;
592 -webkit-text-fill-color: transparent;
593 color: #14102C;
594 }
595 .w_block-btns {
596 width: max-content;
597 margin: 48px auto 68px;
598 display: flex;
599 gap: 25px;
600 }
601 @media screen and (max-width: 768px) {
602 .w_block-btns {
603 flex-direction: column;
604 }
605 }
606 .w_block-btns [class^=w_btn] {
607 display: inline-block;
608 width: 220px;
609 height: 50px;
610 margin: 0 15px;
611 line-height: 50px;
612 font-size: 20px;
613 text-decoration: none;
614 color: #fff;
615 border-width: 1px;
616 border-style: solid;
617 text-align: center;
618 border-radius: 8px;
619 text-transform: uppercase;
620 transition: 0.5s;
621 background-size: 200% auto;
622 }
623 .w_block-btns [class^=w_btn]:hover {
624 background-position: right center;
625 }
626 .w_block-btns .w_btn-pro {
627 background-image: linear-gradient(to right, #FFD500 0%, #E86E2C 51%, #FFD500 100%);
628 }
629 .w_block-btns .w_btn-demo {
630 background-image: linear-gradient(to right, #005BBF 0%, #800080 51%, #005BBF 100%);
631 }
632
633 h4.wowp-title {
634 font-size: 32px;
635 font-weight: 600;
636 line-height: 1.125;
637 margin: 0 0 48px;
638 padding: 0;
639 color: var(--wowp-dark);
640 }
641
642 .w_card {
643 position: relative;
644 background-color: #fff;
645 border-radius: 6px;
646 box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
647 padding: 15px;
648 text-decoration: none;
649 color: #363636;
650 }
651 .w_card-media {
652 position: absolute;
653 top: -6px;
654 left: -12px;
655 background-color: #fdf2ed;
656 width: 56px;
657 height: 56px;
658 border-radius: 6px;
659 display: flex;
660 align-items: center;
661 color: orange;
662 font-size: 32px;
663 justify-content: center;
664 margin: 0;
665 }
666 .w_card-content {
667 display: flex;
668 gap: 28px;
669 flex-direction: column;
670 }
671 .w_card-title {
672 font-size: 22px;
673 font-weight: 700;
674 margin: 0 0 0 44px;
675 }
676 .w_card-description {
677 font-size: 16px;
678 display: -webkit-box;
679 -webkit-line-clamp: 2;
680 -webkit-box-orient: vertical;
681 overflow: hidden;
682 text-overflow: ellipsis;
683 cursor: pointer;
684 margin: 0;
685 }
686 .w_card-description.is-open {
687 overflow: visible;
688 display: block;
689 -webkit-line-clamp: unset;
690 }
691
692 [class^=w_boxes] {
693 display: grid;
694 gap: 22px;
695 }
696
697 .w_boxes__3-col {
698 grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
699 }
700
701 /*# sourceMappingURL=admin.css.map */
702