PluginProbe
Plugin Groups / 1.2.2
Plugin Groups v1.2.2
trunk 1.0.3 1.1.0 1.2.1 1.2.2 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.9 3.0.0
plugin-groups / assets / css / select2.css

select2.css in Plugin Groups 1.2.2, at assets/css/select2.css

704 lines 19.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 Version: 3.5.2 Timestamp: Sat Nov 1 14:43:36 EDT 2014
3 */
4 .ccselect2-container {
5 margin: 0;
6 position: relative;
7 display: inline-block;
8 /* inline-block for ie7 */
9 zoom: 1;
10 *display: inline;
11 vertical-align: middle;
12 }
13
14 .ccselect2-container,
15 .ccselect2-drop,
16 .ccselect2-search,
17 .ccselect2-search input {
18 /*
19 Force border-box so that % widths fit the parent
20 container without overlap because of margin/padding.
21 More Info : http://www.quirksmode.org/css/box.html
22 */
23 -webkit-box-sizing: border-box; /* webkit */
24 -moz-box-sizing: border-box; /* firefox */
25 box-sizing: border-box; /* css3 */
26 }
27
28 .ccselect2-container .ccselect2-choice {
29 display: block;
30 height: 26px;
31 padding: 0 0 0 8px;
32 overflow: hidden;
33 position: relative;
34
35 border: 1px solid #aaa;
36 white-space: nowrap;
37 line-height: 26px;
38 color: #444;
39 text-decoration: none;
40
41 border-radius: 4px;
42
43 background-clip: padding-box;
44
45 -webkit-touch-callout: none;
46 -webkit-user-select: none;
47 -moz-user-select: none;
48 -ms-user-select: none;
49 user-select: none;
50
51 background-color: #fff;
52 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
53 background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
54 background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
55 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
56 background-image: linear-gradient(to top, #eee 0%, #fff 50%);
57 }
58
59 html[dir="rtl"] .ccselect2-container .ccselect2-choice {
60 padding: 0 8px 0 0;
61 }
62
63 .ccselect2-container.ccselect2-drop-above .ccselect2-choice {
64 border-bottom-color: #aaa;
65
66 border-radius: 0 0 4px 4px;
67
68 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
69 background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
70 background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
71 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
72 background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
73 }
74
75 .ccselect2-container.ccselect2-allowclear .ccselect2-choice .ccselect2-chosen {
76 margin-right: 42px;
77 }
78
79 .ccselect2-container .ccselect2-choice > .ccselect2-chosen {
80 margin-right: 26px;
81 display: block;
82 overflow: hidden;
83
84 white-space: nowrap;
85
86 text-overflow: ellipsis;
87 float: none;
88 width: auto;
89 }
90
91 html[dir="rtl"] .ccselect2-container .ccselect2-choice > .ccselect2-chosen {
92 margin-left: 26px;
93 margin-right: 0;
94 }
95
96 .ccselect2-container .ccselect2-choice abbr {
97 display: none;
98 width: 12px;
99 height: 12px;
100 position: absolute;
101 right: 24px;
102 top: 8px;
103
104 font-size: 1px;
105 text-decoration: none;
106
107 border: 0;
108 background: url('ccselect2.png') right top no-repeat;
109 cursor: pointer;
110 outline: 0;
111 }
112
113 .ccselect2-container.ccselect2-allowclear .ccselect2-choice abbr {
114 display: inline-block;
115 }
116
117 .ccselect2-container .ccselect2-choice abbr:hover {
118 background-position: right -11px;
119 cursor: pointer;
120 }
121
122 .ccselect2-drop-mask {
123 border: 0;
124 margin: 0;
125 padding: 0;
126 position: fixed;
127 left: 0;
128 top: 0;
129 min-height: 100%;
130 min-width: 100%;
131 height: auto;
132 width: auto;
133 opacity: 0;
134 z-index: 9998;
135 /* styles required for IE to work */
136 background-color: #fff;
137 filter: alpha(opacity=0);
138 }
139
140 .ccselect2-drop {
141 width: 100%;
142 margin-top: -1px;
143 position: absolute;
144 z-index: 9999;
145 top: 100%;
146
147 background: #fff;
148 color: #000;
149 border: 1px solid #aaa;
150 border-top: 0;
151
152 border-radius: 0 0 4px 4px;
153
154 -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
155 box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
156 }
157
158 .ccselect2-drop.ccselect2-drop-above {
159 margin-top: 1px;
160 border-top: 1px solid #aaa;
161 border-bottom: 0;
162
163 border-radius: 4px 4px 0 0;
164
165 -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
166 box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
167 }
168
169 .ccselect2-drop-active {
170 border: 1px solid rgb(175, 175, 0);
171 border-top: none;
172 }
173
174 .ccselect2-drop.ccselect2-drop-above.ccselect2-drop-active {
175 border-top: 1px solid rgb(175, 175, 0);
176 }
177
178 .ccselect2-drop-auto-width {
179 border-top: 1px solid #aaa;
180 width: auto;
181 }
182
183 .ccselect2-drop-auto-width .ccselect2-search {
184 padding-top: 4px;
185 }
186
187 .ccselect2-container .ccselect2-choice .ccselect2-arrow {
188 display: inline-block;
189 width: 18px;
190 height: 100%;
191 position: absolute;
192 right: 0;
193 top: 0;
194
195 border-left: 1px solid #aaa;
196 border-radius: 0 4px 4px 0;
197
198 background-clip: padding-box;
199
200 background: #ccc;
201 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
202 background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
203 background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
204 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
205 background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
206 }
207
208 html[dir="rtl"] .ccselect2-container .ccselect2-choice .ccselect2-arrow {
209 left: 0;
210 right: auto;
211
212 border-left: none;
213 border-right: 1px solid #aaa;
214 border-radius: 4px 0 0 4px;
215 }
216
217 .ccselect2-container .ccselect2-choice .ccselect2-arrow b {
218 display: block;
219 width: 100%;
220 height: 100%;
221 background: url('ccselect2.png') no-repeat 0 1px;
222 }
223
224 html[dir="rtl"] .ccselect2-container .ccselect2-choice .ccselect2-arrow b {
225 background-position: 2px 1px;
226 }
227
228 .ccselect2-search {
229 display: inline-block;
230 width: 100%;
231 min-height: 26px;
232 margin: 0;
233 padding-left: 4px;
234 padding-right: 4px;
235
236 position: relative;
237 z-index: 10000;
238
239 white-space: nowrap;
240 }
241
242 .ccselect2-search input {
243 width: 100%;
244 height: auto !important;
245 min-height: 26px;
246 padding: 4px 20px 4px 5px;
247 margin: 0;
248
249 outline: 0;
250 font-family: sans-serif;
251 font-size: 1em;
252
253 border: 1px solid #aaa;
254 border-radius: 0;
255
256 -webkit-box-shadow: none;
257 box-shadow: none;
258
259 background: #fff url('ccselect2.png') no-repeat 100% -22px;
260 background: url('ccselect2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
261 background: url('ccselect2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
262 background: url('ccselect2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
263 background: url('ccselect2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
264 }
265
266 html[dir="rtl"] .ccselect2-search input {
267 padding: 4px 5px 4px 20px;
268
269 background: #fff url('ccselect2.png') no-repeat -37px -22px;
270 background: url('ccselect2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
271 background: url('ccselect2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
272 background: url('ccselect2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
273 background: url('ccselect2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
274 }
275
276 .ccselect2-drop.ccselect2-drop-above .ccselect2-search input {
277 margin-top: 4px;
278 }
279
280 .ccselect2-search input.ccselect2-active {
281 background: #fff url('ccselect2-spinner.gif') no-repeat 100%;
282 background: url('ccselect2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
283 background: url('ccselect2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
284 background: url('ccselect2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
285 background: url('ccselect2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
286 }
287
288 .ccselect2-container-active .ccselect2-choice,
289 .ccselect2-container-active .ccselect2-choices {
290 border: 1px solid rgb(175, 175, 0);
291 outline: none;
292
293 -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
294 box-shadow: 0 0 5px rgba(0, 0, 0, .3);
295 }
296
297 .ccselect2-dropdown-open .ccselect2-choice {
298 border-bottom-color: transparent;
299 -webkit-box-shadow: 0 1px 0 #fff inset;
300 box-shadow: 0 1px 0 #fff inset;
301
302 border-bottom-left-radius: 0;
303 border-bottom-right-radius: 0;
304
305 background-color: #eee;
306 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
307 background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
308 background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
309 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
310 background-image: linear-gradient(to top, #fff 0%, #eee 50%);
311 }
312
313 .ccselect2-dropdown-open.ccselect2-drop-above .ccselect2-choice,
314 .ccselect2-dropdown-open.ccselect2-drop-above .ccselect2-choices {
315 border: 1px solid rgb(175, 175, 0);
316 border-top-color: transparent;
317
318 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
319 background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
320 background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
321 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
322 background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
323 }
324
325 .ccselect2-dropdown-open .ccselect2-choice .ccselect2-arrow {
326 background: transparent;
327 border-left: none;
328 filter: none;
329 }
330 html[dir="rtl"] .ccselect2-dropdown-open .ccselect2-choice .ccselect2-arrow {
331 border-right: none;
332 }
333
334 .ccselect2-dropdown-open .ccselect2-choice .ccselect2-arrow b {
335 background-position: -18px 1px;
336 }
337
338 html[dir="rtl"] .ccselect2-dropdown-open .ccselect2-choice .ccselect2-arrow b {
339 background-position: -16px 1px;
340 }
341
342 .ccselect2-hidden-accessible {
343 border: 0;
344 clip: rect(0 0 0 0);
345 height: 1px;
346 margin: -1px;
347 overflow: hidden;
348 padding: 0;
349 position: absolute;
350 width: 1px;
351 }
352
353 /* results */
354 .ccselect2-results {
355 max-height: 200px;
356 padding: 0 0 0 4px;
357 margin: 4px 4px 4px 0;
358 position: relative;
359 overflow-x: hidden;
360 overflow-y: auto;
361 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
362 }
363
364 html[dir="rtl"] .ccselect2-results {
365 padding: 0 4px 0 0;
366 margin: 4px 0 4px 4px;
367 }
368
369 .ccselect2-results ul.ccselect2-result-sub {
370 margin: 0;
371 padding-left: 0;
372 }
373
374 .ccselect2-results li {
375 list-style: none;
376 display: list-item;
377 background-image: none;
378 }
379
380 .ccselect2-results li.ccselect2-result-with-children > .ccselect2-result-label {
381 font-weight: bold;
382 }
383
384 .ccselect2-results .ccselect2-result-label {
385 padding: 3px 7px 4px;
386 margin: 0;
387 cursor: pointer;
388
389 min-height: 1em;
390
391 -webkit-touch-callout: none;
392 -webkit-user-select: none;
393 -moz-user-select: none;
394 -ms-user-select: none;
395 user-select: none;
396 }
397
398 .ccselect2-results-dept-1 .ccselect2-result-label { padding-left: 20px }
399 .ccselect2-results-dept-2 .ccselect2-result-label { padding-left: 40px }
400 .ccselect2-results-dept-3 .ccselect2-result-label { padding-left: 60px }
401 .ccselect2-results-dept-4 .ccselect2-result-label { padding-left: 80px }
402 .ccselect2-results-dept-5 .ccselect2-result-label { padding-left: 100px }
403 .ccselect2-results-dept-6 .ccselect2-result-label { padding-left: 110px }
404 .ccselect2-results-dept-7 .ccselect2-result-label { padding-left: 120px }
405
406 .ccselect2-results .ccselect2-highlighted {
407 background: rgb(175, 175, 0);
408 color: #fff;
409 }
410
411 .ccselect2-results li em {
412 background: #feffde;
413 font-style: normal;
414 }
415
416 .ccselect2-results .ccselect2-highlighted em {
417 background: transparent;
418 }
419
420 .ccselect2-results .ccselect2-highlighted ul {
421 background: #fff;
422 color: #000;
423 }
424
425 .ccselect2-results .ccselect2-no-results,
426 .ccselect2-results .ccselect2-searching,
427 .ccselect2-results .ccselect2-ajax-error,
428 .ccselect2-results .ccselect2-selection-limit {
429 background: #f4f4f4;
430 display: list-item;
431 padding-left: 5px;
432 }
433
434 /*
435 disabled look for disabled choices in the results dropdown
436 */
437 .ccselect2-results .ccselect2-disabled.ccselect2-highlighted {
438 color: #666;
439 background: #f4f4f4;
440 display: list-item;
441 cursor: default;
442 }
443 .ccselect2-results .ccselect2-disabled {
444 background: #f4f4f4;
445 display: list-item;
446 cursor: default;
447 }
448
449 .ccselect2-results .ccselect2-selected {
450 display: none;
451 }
452
453 .ccselect2-more-results.ccselect2-active {
454 background: #f4f4f4 url('ccselect2-spinner.gif') no-repeat 100%;
455 }
456
457 .ccselect2-results .ccselect2-ajax-error {
458 background: rgba(255, 50, 50, .2);
459 }
460
461 .ccselect2-more-results {
462 background: #f4f4f4;
463 display: list-item;
464 }
465
466 /* disabled styles */
467
468 .ccselect2-container.ccselect2-container-disabled .ccselect2-choice {
469 background-color: #f4f4f4;
470 background-image: none;
471 border: 1px solid #ddd;
472 cursor: default;
473 }
474
475 .ccselect2-container.ccselect2-container-disabled .ccselect2-choice .ccselect2-arrow {
476 background-color: #f4f4f4;
477 background-image: none;
478 border-left: 0;
479 }
480
481 .ccselect2-container.ccselect2-container-disabled .ccselect2-choice abbr {
482 display: none;
483 }
484
485
486 /* multiselect */
487
488 .ccselect2-container-multi .ccselect2-choices {
489 height: auto !important;
490 height: 1%;
491 margin: 0;
492 padding: 0 5px 0 0;
493 position: relative;
494
495 border: 1px solid #ddd;
496 cursor: text;
497 overflow: hidden;
498
499 background-color: #fff;
500 }
501
502 html[dir="rtl"] .ccselect2-container-multi .ccselect2-choices {
503 padding: 0 0 0 5px;
504 }
505
506 .ccselect2-locked {
507 padding: 3px 5px 3px 5px !important;
508 }
509
510 .ccselect2-container-multi .ccselect2-choices {
511 min-height: 26px;
512 }
513
514 .ccselect2-container-multi.ccselect2-container-active .ccselect2-choices {
515 border: 1px solid rgb(175, 175, 0);
516 outline: none;
517
518 -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
519 box-shadow: 0 0 5px rgba(0, 0, 0, .3);
520 }
521 .ccselect2-container-multi .ccselect2-choices li {
522 float: left;
523 list-style: none;
524 }
525 html[dir="rtl"] .ccselect2-container-multi .ccselect2-choices li
526 {
527 float: right;
528 }
529 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-field {
530 margin: 0;
531 padding: 0;
532 white-space: nowrap;
533 }
534
535 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-field input {
536 padding: 5px;
537 margin: 1px 0;
538
539 font-family: sans-serif;
540 font-size: 100%;
541 color: #666;
542 outline: 0;
543 border: 0;
544 -webkit-box-shadow: none;
545 box-shadow: none;
546 background: transparent !important;
547 }
548
549 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-field input.ccselect2-active {
550 background: #fff url('ccselect2-spinner.gif') no-repeat 100% !important;
551 }
552
553 .ccselect2-default {
554 color: #999 !important;
555 }
556
557 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-choice {
558 padding: 3px 5px 3px 18px;
559 margin: 3px 0 3px 5px;
560 position: relative;
561
562 line-height: 13px;
563 color: #333;
564 cursor: default;
565 border: 1px solid #bababa;
566
567 border-radius: 3px;
568
569 background-clip: padding-box;
570
571 -webkit-touch-callout: none;
572 -webkit-user-select: none;
573 -moz-user-select: none;
574 -ms-user-select: none;
575 user-select: none;
576
577 background-color: #ededed;
578
579 }
580 html[dir="rtl"] .ccselect2-container-multi .ccselect2-choices .ccselect2-search-choice
581 {
582 margin: 3px 5px 3px 0;
583 padding: 3px 18px 3px 5px;
584 }
585 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-choice .ccselect2-chosen {
586 cursor: default;
587 }
588 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-choice-focus {
589 background: rgb(175, 175, 0);
590 color: #fff;
591 border-color: rgb(155, 155, 0);
592 }
593
594 .ccselect2-search-choice-close {
595 display: block;
596 width: 12px;
597 height: 13px;
598 position: absolute;
599 right: 3px;
600 top: 4px;
601
602 font-size: 1px;
603 outline: none;
604 }
605 .ccselect2-search-choice-close.dashicons {
606 background-image: none !important;
607 }
608 html[dir="rtl"] .ccselect2-search-choice-close {
609 right: auto;
610 left: 3px;
611 }
612
613 .ccselect2-container-multi .ccselect2-search-choice-close {
614 left: 3px;
615 font-size: 12px;
616 color: #333;
617 }
618
619 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-choice-focus .ccselect2-search-choice-close{
620 color: #fff;
621 }
622
623 html[dir="rtl"] .ccselect2-container-multi .ccselect2-search-choice-close {
624 left: auto;
625 right: 2px;
626 }
627
628 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-choice .ccselect2-search-choice-close:hover {
629 background-position: right -11px;
630 }
631 .ccselect2-container-multi .ccselect2-choices .ccselect2-search-choice-focus .ccselect2-search-choice-close {
632 background-position: right -11px;
633 }
634
635 /* disabled styles */
636 .ccselect2-container-multi.ccselect2-container-disabled .ccselect2-choices {
637 background-color: #f4f4f4;
638 background-image: none;
639 border: 1px solid #ddd;
640 cursor: default;
641 }
642
643 .ccselect2-container-multi.ccselect2-container-disabled .ccselect2-choices .ccselect2-search-choice {
644 padding: 3px 5px 3px 5px;
645 border: 1px solid #ddd;
646 background-image: none;
647 background-color: #f4f4f4;
648 }
649
650 .ccselect2-container-multi.ccselect2-container-disabled .ccselect2-choices .ccselect2-search-choice .ccselect2-search-choice-close { display: none;
651 background: none;
652 }
653 /* end multiselect */
654
655
656 .ccselect2-result-selectable .ccselect2-match,
657 .ccselect2-result-unselectable .ccselect2-match {
658 text-decoration: underline;
659 }
660
661 .ccselect2-offscreen, .ccselect2-offscreen:focus {
662 clip: rect(0 0 0 0) !important;
663 width: 1px !important;
664 height: 1px !important;
665 border: 0 !important;
666 margin: 0 !important;
667 padding: 0 !important;
668 overflow: hidden !important;
669 position: absolute !important;
670 outline: 0 !important;
671 left: 0px !important;
672 top: 0px !important;
673 }
674
675 .ccselect2-display-none {
676 display: none;
677 }
678
679 .ccselect2-measure-scrollbar {
680 position: absolute;
681 top: -10000px;
682 left: -10000px;
683 width: 100px;
684 height: 100px;
685 overflow: scroll;
686 }
687
688 /* Retina-ize icons */
689
690 @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
691 .ccselect2-search input,
692 .ccselect2-search-choice-close,
693 .ccselect2-container .ccselect2-choice abbr,
694 .ccselect2-container .ccselect2-choice .ccselect2-arrow b {
695 background-image: url('ccselect2x2.png') !important;
696 background-repeat: no-repeat !important;
697 background-size: 60px 40px !important;
698 }
699
700 .ccselect2-search input {
701 background-position: 100% -21px !important;
702 }
703 }
704