PluginProbe ʕ •ᴥ•ʔ
Slider Ultimate / 2.0.8
Slider Ultimate v2.0.8
trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9
ultimate-slider / lib / simple-admin-pages / css / admin-settings.css
ultimate-slider / lib / simple-admin-pages / css Last commit date
admin-settings-blue.css 4 years ago admin-settings.css 4 years ago admin.css 4 years ago infinite_table.css 4 years ago ordering.css 4 years ago spectrum.css 4 years ago
admin-settings.css
663 lines
1 .sap-hidden {
2 display: none;
3 }
4
5 /************************/
6 /***** OPTIONS PAGE *****/
7 /************************/
8
9 .wrap.sap-settings-page h1 {
10 width: 100%;
11 }
12
13 /* Side Menu */
14 .wrap.sap-settings-page h2.nav-tab-wrapper {
15 position: relative;
16 float: left;
17 border: none;
18 width: 180px;
19 box-shadow: -1px 1px 8px #ccc;
20 overflow: hidden;
21 padding-top: 0;
22 margin-top: 20px;
23 }
24 .wrap.sap-settings-page h2.nav-tab-wrapper a {
25 clear: both;
26 display: block;
27 position: relative;
28 float: left;
29 background-color: #e2e2e2;
30 border: none;
31 border-bottom: 1px solid #f1f1f1;
32 color: #555;
33 font-weight: bold;
34 padding-left: 20px;
35 width: calc(100% - 20px);
36 text-align: left;
37 margin: 0;
38 height: 34px;
39 line-height: 34px;
40 font-size: 13px;
41 }
42 .wrap.sap-settings-page h2.nav-tab-wrapper a:last-of-type {
43 border-bottom: none;
44 }
45 .wrap.sap-settings-page h2.nav-tab-wrapper a.nav-tab-active {
46 box-shadow: none;
47 background-color: #fff !important;
48 color: var(--main-color);
49 border-left: 4px solid var(--main-color-border);
50 }
51 .wrap.sap-settings-page h2.nav-tab-wrapper a:hover {
52 color: var(--main-color);
53 background-color: rgba(199,199,199, 0.5);
54 box-shadow: none;
55 border-left: 4px solid var(--main-color-border);
56 }
57 .wrap.sap-settings-page h2.nav-tab-wrapper a.nav-tab-active:hover {
58 color: var(--main-color);
59 background-color: #fff;
60 border-left: 4px solid var(--main-color-border);
61 }
62
63 /* Right side */
64 .wrap.sap-settings-page form {
65 display: block;
66 position: relative;
67 float: left;
68 width: calc(100% - 276px);
69 padding: 32px 48px;
70 z-index: 999;
71 background:#fff;
72 margin: 20px 0 0 !important;
73 min-height: 400px;
74 border: none;
75 }
76
77 .wrap.sap-settings-page form h2:first-of-type {
78 font-size: 18px;
79 color: var(--main-color);
80 margin: 0 0 32px !important;
81 }
82
83 .wrap.sap-settings-page form h2:nth-of-type(1n+2) {
84 position: relative;
85 float: left;
86 background: var(--main-color);
87 margin: 8px 0 0;
88 font-size: 15px;
89 font-weight: bold;
90 color: #fff;
91 padding: 12px 2%;
92 width: 96%;
93 text-transform: uppercase;
94 z-index: 2;
95 }
96 .wrap.sap-settings-page form .form-table {
97 width: 100%;
98 box-sizing: border-box;
99 margin: 0 auto 16px;
100 box-shadow: 0 1px 12px #ddd;
101 display: block;
102 padding: 11px 5%;
103 }
104 .wrap.sap-settings-page form .form-table tr {
105 width: 20%;
106 }
107 .wrap.sap-settings-page form .form-table td {
108 width: 80%;
109 }
110
111 .wrap.sap-settings-page form p.description {
112 display: none;
113 }
114 .wrap.sap-settings-page form .form-table p.description {
115 display: block;
116 }
117 .wrap.sap-settings-page form .form-table p.description.disabled {
118 color: #b5b5b5;
119 }
120
121
122 .ulb-premium-options-table-overlay + table th,
123 .ulb-premium-options-table-overlay + table td {
124 color: #b5b5b5;
125 }
126
127
128
129 /************************
130 TOGGLE SWITCHES
131 ************************/
132 .sap-admin-hide-radios {
133 display: none;
134 }
135
136 /* The switch - the box around the slider */
137 .sap-admin-switch {
138 position: relative;
139 display: inline-block;
140 width: 40px;
141 height: 22px;
142 }
143
144 /* Hide default HTML checkbox */
145 .sap-admin-switch input {
146 display: none;
147 }
148
149 /* The slider */
150 .sap-admin-switch-slider {
151 position: absolute;
152 cursor: pointer;
153 top: 0;
154 left: 0;
155 right: 0;
156 bottom: 0;
157 background-color: #ccc;
158 -webkit-transition: .4s;
159 transition: .4s;
160 }
161
162 .sap-admin-switch-slider:before {
163 position: absolute;
164 content: "";
165 height: 14px;
166 width: 14px;
167 left: 4px;
168 bottom: 4px;
169 background-color: white;
170 -webkit-transition: .4s;
171 transition: .4s;
172 }
173
174 input:checked + .sap-admin-switch-slider {
175 background-color: var(--main-color);
176 }
177
178 input:focus + .sap-admin-switch-slider {
179 box-shadow: 0 0 1px var(--main-color);
180 }
181
182 input:checked + .sap-admin-switch-slider:before {
183 -webkit-transform: translateX(18px);
184 -ms-transform: translateX(18px);
185 transform: translateX(18px);
186 }
187
188 /* Rounded sliders */
189 .sap-admin-switch-slider.round {
190 border-radius: 34px;
191 }
192
193 .sap-admin-switch-slider.round:before {
194 border-radius: 50%;
195 }
196
197
198 /* RADIO BUTTON AND CHECKBOX */
199 .wrap.sap-settings-page form .form-table fieldset label {
200 line-height: 1.4em;
201 margin: .25em 0 .5em;
202 display: inline-block;
203 font-size: 14px;
204 }
205
206 .sap-admin-input-container input, .sap-admin-input-container input:disabled {
207 position: absolute;
208 opacity: 0;
209 }
210 .sap-admin-radio-button {
211 position: relative;
212 float: left;
213 height: 14px;
214 width: 14px;
215 top: 1px;
216 margin-right: 12px;
217 background-color: #fff;
218 border: 2px solid #aaa;
219 border-radius: 50%;
220 }
221 .sap-admin-input-container:hover input ~ .sap-admin-radio-button {
222 background-color: #E6FFFB;
223 border-color: var(--main-color-border);
224 }
225 .sap-admin-input-container input:checked ~ .sap-admin-radio-button {
226 border-color: var(--main-color-border);
227 background-color: #fff;
228 }
229 .sap-admin-radio-button:after {
230 content: "";
231 position: absolute;
232 display: none;
233 }
234 .sap-admin-input-container input:checked ~ .sap-admin-radio-button:after {
235 display: block;
236 }
237 .sap-admin-input-container .sap-admin-radio-button:after {
238 top: 3px;
239 left: 3px;
240 width: 8px;
241 height: 8px;
242 border-radius: 50%;
243 background: var(--main-color);
244 }
245
246 .sap-admin-checkbox {
247 position: relative;
248 float: left;
249 height: 14px;
250 width: 14px;
251 top: 1px;
252 margin-right: 12px;
253 background-color: #fff;
254 border: 2px solid #aaa;
255 }
256 .sap-admin-input-container:hover input ~ .sap-admin-checkbox {
257 background-color: #E6FFFB;
258 border-color: var(--main-color-border);
259 }
260 .sap-admin-input-container input:checked ~ .sap-admin-checkbox {
261 border-color: var(--main-color-border);
262 background-color: #fff;
263 }
264 .sap-admin-checkbox:after {
265 content: "";
266 position: absolute;
267 display: none;
268 }
269 .sap-admin-input-container input:checked ~ .sap-admin-checkbox:after {
270 display: block;
271 }
272 .sap-admin-input-container .sap-admin-checkbox:after {
273 left: 4px;
274 top: 1px;
275 width: 4px;
276 height: 8px;
277 border: solid var(--main-color-border);
278 border-width: 0 2px 2px 0;
279 -webkit-transform: rotate(45deg);
280 -ms-transform: rotate(45deg);
281 transform: rotate(45deg);
282 }
283
284 /* Textbox and Text Area and Select boxes */
285 .wrap.sap-settings-page form .form-table input[type=text],
286 .wrap.sap-settings-page form .form-table input[type=search],
287 .wrap.sap-settings-page form .form-table input[type=tel],
288 .wrap.sap-settings-page form .form-table input[type=url],
289 .wrap.sap-settings-page form .form-table input[type=week],
290 .wrap.sap-settings-page form .form-table input[type=password],
291 .wrap.sap-settings-page form .form-table input[type=color],
292 .wrap.sap-settings-page form .form-table input[type=email],
293 .wrap.sap-settings-page form .form-table input[type=number],
294 .wrap.sap-settings-page form .form-table textarea,
295 .wrap.sap-settings-page form .form-table select {
296 border: 2px solid #ccc;
297 border-radius: 5px;
298 box-shadow: none;
299 }
300 .wrap.sap-settings-page form .form-table select,
301 .wrap.sap-settings-page form .form-table textarea {
302 width: auto !important;
303 min-width: 50%;
304 max-width: 100% !important;
305 }
306 #sap-dining-block-length_count,
307 #sap-dining-block-length_unit {
308 min-width: 0;
309 }
310
311 .wrap.sap-settings-page form .form-table textarea {
312 min-width: 300px;
313 min-height: 200px;
314 }
315 .wrap.sap-settings-page form .form-table .wp-editor-wrap textarea {
316 border: none;
317 border-radius: 0;
318 min-width: 0;
319 max-width: 100%;
320 min-height: 0;
321 }
322
323
324 /*SMALL TEXT INPUTS*/
325 .sap-small-text-input {
326 border-radius: 2px !important;
327 width: 100px;
328 }
329
330
331 /*SETTINGS COLUMNS*/
332 .sap-admin-input-container {
333 position: relative;
334 float: left;
335 width: 100%;
336 }
337 .sap-setting-columns-2 .sap-admin-input-container {
338 width: 50%;
339 }
340 .sap-setting-columns-3 .sap-admin-input-container {
341 width: 33.33333%;
342 width: calc(100% / 3);
343 }
344 .sap-setting-columns-8 .sap-admin-input-container {
345 width: 12.5%;
346 }
347
348
349 /*COLOUR PICKERS*/
350 fieldset.sap-colorpicker {
351 position: relative;
352 }
353 .sap-colorpicker input.sap-spectrum {
354 position: absolute;
355 right: 0;
356 bottom: 0;
357 border: none !important;
358 margin: 0 !important;
359 width: calc(100% - 42px);
360 border-radius: 0;
361 background: transparent !important;
362 color: #888 !important;
363 padding: 0;
364 font-size: 12px;
365 }
366 .sap-colorpicker .sp-replacer {
367 padding: 0 !important;
368 margin-right: 8px !important;
369 border-radius: 2px;
370 }
371 .sap-colorpicker .sp-preview {
372 width: 32px !important;
373 height: 32px !important;
374 margin: 0 !important;
375 border: none !important
376 }
377 .sap-colorpicker .sp-dd {
378 display: none !important;
379 }
380
381
382 /**************************
383 OTHER OPTION PAGE STYLING
384 **************************/
385
386 /*LOCK PREMIUM CONTENT*/
387 .sap-premium-options-table {
388 position: relative;
389 min-height: 240px;
390 }
391 .sap-premium-options-table.Yes {
392 min-height: 0;
393 }
394 .sap-premium-options-table-overlay {
395 position: absolute;
396 top: 0;
397 left: 0;
398 width: 1000px;
399 height: 500px;
400 background: rgba(0,0,0,.45);
401 z-index: 2;
402 }
403 .section-disabled {
404 position: absolute;
405 margin-top: 16px;
406 width: 200px;
407 height: 200px;
408 padding: 16px;
409 background: #fff;
410 left: calc(50% - 116px);
411 }
412 .section-disabled img {
413 position: relative;
414 float: left;
415 width: 40px;
416 height: auto;
417 margin: 16px 80px 24px;
418 }
419 .section-disabled p {
420 margin: 16px 0;
421 text-align: center;
422 color: #888;
423 }
424 .section-disabled .sap-dashboard-get-premium-widget-button {
425 clear: both;
426 position: relative;
427 float: left;
428 width: calc(100% - 20px);
429 margin: 16px 8px;
430 border: 2px solid var(--main-color-border);
431 background-color: var(--main-color);
432 color: #fff;
433 padding: 6px 0;
434 font-size: 12px;
435 text-decoration: none;
436 text-align: center;
437 font-weight: bold;
438 border-radius: 2px;
439 }
440 .section-disabled .sap-dashboard-get-premium-widget-button:hover {
441 background-color: #5477b7;
442 border-color: #5477b7;
443 color: #fff;
444 }
445
446
447 /*************
448 RESPONSIVE
449 *************/
450 @media screen and (max-width: 1099px) {
451 .wrap.sap-settings-page h2.nav-tab-wrapper {
452 clear: both;
453 width: 100%;
454 }
455 .wrap.sap-settings-page form {
456 clear: both;
457 width: calc(100% - 96px);
458 }
459 }
460 @media screen and (max-width: 782px) {
461 .wrap.sap-settings-page h2.nav-tab-wrapper {
462 margin: 0 0 20px 0;
463 }
464 .wrap.sap-settings-page form {
465 width: calc(100% - 96px);
466 }
467 .sap-admin-section-heading {
468 text-align: center;
469 }
470 .wrap.sap-settings-page form .form-table {
471 box-shadow: none;
472 }
473 .wrap.sap-settings-page form .form-table,
474 .wrap.sap-settings-page form .form-table tbody,
475 .wrap.sap-settings-page form .form-table tr,
476 .wrap.sap-settings-page form .form-table th,
477 .wrap.sap-settings-page form .form-table td {
478 clear: both;
479 float: left;
480 width: 100%;
481 }
482 .wrap.sap-settings-page form .form-table {
483 padding: 11px 0;
484 }
485 .wrap.sap-settings-page form .form-table th {
486 padding: 20px 5% 8px;
487 width: 90%;
488 height: auto;
489 margin: 0;
490 background-image: url(../images/options-asset-info.png);
491 background-position: 95% 20px;
492 background-size: 18px 18px;
493 background-repeat: no-repeat;
494 cursor: pointer;
495 }
496 .wrap.sap-settings-page form .form-table td {
497 padding-top: 4px;
498 }
499 .wrap.sap-settings-page form .form-table td fieldset {
500 position: relative;
501 }
502 .wrap.sap-settings-page form .form-table td label {
503 position: relative;
504 clear: both;
505 float: left;
506 width: 90%;
507 margin-left: 5% !important;
508 }
509 .wrap.sap-settings-page form .form-table td label.sap-admin-switch {
510 position: absolute;
511 width: 40px;
512 top: -35px;
513 right: 5%;
514 }
515 .wrap.sap-settings-page form .form-table td p {
516 display: none;
517 position: relative;
518 float: left;
519 width: 90%;
520 padding: 10px 5% 24px;
521 background: #f3f3f3;
522 border-bottom: 1px solid #ccc;
523 font-size: 13px;
524 }
525 .wrap.sap-settings-page form .form-table td input[type="button"] {
526 display: block;
527 margin: 10px auto 4px;
528 }
529 .sap-admin-input-container {
530 width: calc(100% - 16px);
531 padding-left: 16px;
532 }
533 }
534
535
536
537 /******************************************************************
538 NEW STYLING FOR ADD/DELETE AREAS LIKE CUSTOM FIELDS
539 ******************************************************************/
540 .sap-infinite-table table th {
541 padding: 0 10px !important;
542 }
543 .sap-new-admin-add-button {
544 position: relative;
545 float: left;
546 width: calc(100% - 4px);
547 border: 2px dotted #bbb;
548 text-align: center;
549 padding: 12px 0;
550 color: #999;
551 }
552 .sap-new-admin-add-button:hover {
553 background: #f5f5f5;
554 color: #888;
555 }
556 .sap-infinite-table-row-delete,
557 .sap-custom-fields-add-nutrional-information {
558 cursor: pointer;
559 color: var(--main-color);
560 }
561 .sap-infinite-table-row-delete:hover,
562 .sap-custom-fields-add-nutrional-information:hover {
563 color: #4366A6;
564 }
565
566
567 /******************************************************************
568 EXPORT BUTTON
569 ******************************************************************/
570 .sap-export-button {
571 position: relative;
572 width: 150px;
573 padding: 0 !important;
574 }
575 .sap-export-button span {
576 position: absolute;
577 top: 4px;
578 left: 8px;
579 }
580 input[name="sap_export"] {
581 position: absolute;
582 top: 0;
583 left: 0;
584 width: 100%;
585 height: 100%;
586 box-sizing: border-box;
587 background: none;
588 border: none;
589 cursor: pointer;
590 color: #0071a1;
591 padding: 0 0 0 32px;
592 text-align: left;
593 }
594
595
596
597 /******************************************************************
598 CONTROLS AND ICONS SCREENS
599 ******************************************************************/
600
601 /*
602 Lightbox control element selection
603 */
604 .ulb-admin-one-third,
605 .ulb-admin-one-sixth {
606 float: left;
607 margin-bottom: 18px;
608 }
609 .ulb-admin-one-third {
610 width: 30%;
611 }
612 .ulb-admin-one-sixth {
613 width: auto;
614 }
615
616 .ulb-toolbar-control {
617 width: 40px;
618 float: left;
619 cursor: pointer;
620 }
621 .ewd-ulb-selected-control {
622 background: #333333;
623 color: #FFFFFF;
624 }
625
626 .ulb-add-button,
627 .ulb-remove-button {
628 width: 96px;
629 padding: 6px 0;
630 margin: 0 auto;
631 margin-bottom: 8px;
632 background: #111;
633 color: #fff;
634 border: 2px solid #111;
635 border-radius: 2px;
636 text-align: center;
637 cursor: pointer;
638 transition: background .3s, color .3s;
639 }
640 .ulb-add-button:hover,
641 .ulb-remove-button:hover {
642 background: transparent;
643 color: #111;
644 }
645
646 /*
647 Lightbox Icon Selection
648 */
649
650 .ewd-ulb-control-icons span {
651 font-size: 1.8em;
652 letter-spacing: 3px;
653 }
654
655 /*TOOLBAR SELECT ITEMS*/
656 .ulb-toolbar-controls {
657 background: #f4f4f4;
658 padding: 8px;
659 margin-right: 8px;
660 margin-left: 8px;
661 height: 60px;
662 }
663