Merge pull request #21895 from kartik1000/Test#18196
[civicrm-core.git] / css / civicrm.css
1 /**
2 * @file: CiviCRM Stylesheet
3 *
4 * NOTE: The main civicrm container has both class and id of crm-container
5 * Other civi blocks outside the main container also have the class crm-container (but not the id)
6 * All styles should start with .crm-container unless they are specific to the main div only
7 */
8
9 /* Use this class to hide text that should only be there for screen readers */
10 .sr-only {
11 border: 0;
12 clip: rect(1px, 1px, 1px, 1px);
13 clip-path: inset(50%);
14 height: 1px;
15 width: 1px;
16 margin: -1px;
17 overflow: hidden;
18 padding: 0;
19 position: absolute;
20 }
21
22 .crm-container .crm-flex-box {
23 display: flex;
24 flex-wrap: wrap;
25 box-sizing: border-box;
26 }
27 .crm-flex-box > * {
28 flex: 1;
29 box-sizing: border-box;
30 min-width: 0; /* prevents getting squashed by whitespace:nowrap content */
31 }
32 .crm-container .crm-flex-1 {
33 flex: 1;
34 }
35 .crm-container .crm-flex-2 {
36 flex: 2;
37 }
38 .crm-container .crm-flex-3 {
39 flex: 3;
40 }
41 .crm-container .crm-flex-4 {
42 flex: 4;
43 }
44 .crm-container .crm-flex-5 {
45 flex: 5;
46 }
47
48 .crm-container .crm-draggable {
49 cursor: move;
50 }
51
52 .crm-container input {
53 box-sizing: content-box;
54 }
55
56 .crm-container .crm-inline-block {
57 display: inline-block;
58 }
59
60 div.crm-container label {
61 font-weight: normal;
62 display: inline;
63 }
64
65 div.crm-container fieldset label {
66 float: none;
67 }
68
69 input.crm-form-radio + label,
70 input.crm-form-checkbox + label {
71 margin-left: 7px;
72 }
73
74 .crm-container .crm-quickSearchField {
75 font-weight: normal;
76 }
77
78 #crm-container .hiddenElement,
79 .crm-container .hiddenElement {
80 display: none;
81 }
82
83 #crm-container .clear,
84 .crm-container .clear {
85 clear: both;
86 }
87
88 .crm-container a,
89 .crm-container a:link,
90 .crm-container a:visited {
91 color: #2786c2;
92 text-decoration: none;
93 }
94
95 #crm-container .crm-content-block {
96 padding: 0;
97 }
98
99 /* TABLE STYLING */
100
101 .crm-container table {
102 margin: 0 0 1em;
103 border-collapse: collapse;
104 width: 100%;
105 font-size: 13px;
106 }
107
108 .crm-container tr {
109 background: none transparent;
110 }
111
112 .crm-container th,
113 .crm-container table.display thead th,
114 .crm-container table thead.sticky th,
115 .crm-container table.caseSelector tr.columnheader th {
116 background-color: #ffffff;
117 border-color: #ffffff #ffffff #cfcec3;
118 border-style: solid;
119 border-width: 1px 1px 2px;
120 color: #a7a7a7;
121 font-size: 13px;
122 font-weight: bold;
123 padding: 4px;
124 text-align: left;
125 vertical-align: top;
126 }
127 /* Styles for Sticky Header */
128 .crm-container table thead.sticky {
129 background-color: #fff;
130 }
131
132 .crm-container thead div.sticky-header {
133 height: 15px;
134 border-bottom: 2px solid #cfcec3;
135 background-color: #fff;
136 z-index: 10;
137 }
138
139 /* Styles for Sorting Header */
140 .crm-container table thead th.sorting_asc,
141 .crm-container table thead th.sorting_desc,
142 .crm-container table .sticky th a.sort-ascending,
143 .crm-container table .sticky th a.sort-descending,
144 .crm-container table.caseSelector tr.columnheader th a.sort-ascending,
145 .crm-container table.caseSelector tr.columnheader th a.sort-descending {
146 color: #3e3e3e;
147 background-color: #fff;
148 }
149
150 /* Set background back to normal gray for form labels which use <th>. Temporary fix until we standardize form layout markup. */
151 .crm-container table.form-layout-compressed tbody th.label {
152 background-color: #f7f7f7;
153 }
154
155 .crm-container tbody {
156 border-top: none;
157 }
158
159 .crm-container td {
160 padding: 4px;
161 vertical-align: top;
162 }
163
164 .crm-container .crm-row-child {
165 margin: 0;
166 padding: 3px 0 3px 0;
167 clear: none;
168 background-color: #f1f8eb;
169 }
170
171 /*
172 ** Size input fields in crm-container by class. Classes are assigned by the
173 ** module in relation to the data object max size.
174 */
175 .crm-container .crm-select2 {
176 width: 15em;
177 }
178 .crm-container .two {
179 width: 2em;
180 }
181 .crm-container .four {
182 width: 4em;
183 }
184 .crm-container .six {
185 width: 6em;
186 }
187 .crm-container .eight {
188 width: 8em;
189 }
190 .crm-container .twelve {
191 width: 12em;
192 }
193 .crm-container .twenty {
194 width: 20em;
195 }
196 .crm-container .medium {
197 width: 12em;
198 }
199 .crm-container .big {
200 width: 15em;
201 }
202 .crm-container .huge,
203 input.crm-form-entityref {
204 width: 25em;
205 }
206 .crm-container .huge40 {
207 width: 40em;
208 }
209 .crm-container textarea.big {
210 width: 35em;
211 height: 4em;
212 }
213 .crm-container textarea.huge {
214 width: 45em;
215 height: 16em;
216 }
217 .crm-container textarea.huge12 {
218 width: 40em;
219 height: 12em;
220 }
221 .crm-container textarea.huge40 {
222 width: 40em;
223 height: 16em;
224 }
225 .crm-container textarea.nowrap {
226 width: 45em;
227 height: 4.5em;
228 white-space: nowrap;
229 overflow: auto;
230 }
231 .crm-container .bigSelect {
232 width: 15em;
233 height: 12em;
234 }
235
236 /* Override line-height from style.css */
237 #crm-container,
238 .crm-container {
239 line-height: 135%;
240 }
241
242 /* Base crm-container styles */
243 .crm-container hr {
244 background-color: #b0b0b0;
245 }
246
247 .crm-container .crm-form-block {
248 padding: 4px;
249 margin-bottom: 4px;
250 font-size: 13px;
251 background-color: #efefe5;
252 color: #3e3e3e;
253 }
254
255 .crm-container .no-border {
256 border-style: none;
257 }
258
259 /*
260 ** Class for giving solid line at the bottom of the <div>(block level element)
261 ** Currently it is used on the dashboard pages - CiviContribute, CiviMember...
262 */
263 .crm-container div.solid-border-bottom {
264 border-bottom: 2px solid #777;
265 }
266
267 .crm-container .solid-border-top {
268 margin-top: 15px;
269 border-top: 1px solid #696969;
270 }
271
272 /* Size the verticle heights in crm-containers by class. */
273 .crm-container .ht-one {
274 height: 1em;
275 }
276
277 .crm-container .add-remove-link {
278 font-size: .9em;
279 }
280
281 /* Ensures max-width is reset to css default for the images in the maps */
282 #Map img {
283 max-width: none;
284 }
285
286 .crm-container .required {
287 color: inherit;
288 }
289
290 /* CRM form layout classes (from www.realworldstyle.com) */
291 .crm-container .spacer {
292 clear: left;
293 height: 5px;
294 }
295
296 .crm-container td.compressed select,
297 .crm-container td.compressed input {
298 font-size: 0.90em;
299 font-weight: bold;
300 }
301
302 .crm-container td.Int input {
303 width: 6em;
304 }
305
306 .crm-container input.crm-form-text.ng-invalid.ng-dirty {
307 border: 1px solid #ff0000;
308 }
309 .crm-container input.crm-form-text,
310 .crm-container .crm-icon-picker-button,
311 .crm-container input.dateplugin,
312 .crm-container input.crm-form-password {
313 border: 1px solid #999;
314 vertical-align: middle;
315 padding: 1px 2px;
316 height: 1.8em;
317 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
318 background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
319 background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
320 background-image: linear-gradient(top, #eee 1%, #fff 15%);
321 }
322
323 .crm-container input.crm-form-text[disabled],
324 .crm-container input.dateplugin[disabled],
325 .crm-container select.crm-form-select[disabled],
326 .crm-container input.crm-form-text[readonly],
327 .crm-container input.crm-form-password[disabled],
328 .crm-container input.crm-form-password[readonly] {
329 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #ddd), color-stop(15%, #f2f2f2));
330 background-image: -webkit-linear-gradient(top, #ddd 1%, #f2f2f2 15%);
331 background-image: -moz-linear-gradient(top, #ddd 1%, #f2f2f2 15%);
332 background-image: linear-gradient(top, #ddd 1%, #f2f2f2 15%);
333 }
334
335 .crm-container input.crm-form-text[disabled],
336 .crm-container input.dateplugin[disabled],
337 .crm-container select.crm-form-select[disabled],
338 .crm-container input.crm-form-password[disabled] {
339 color: #a9a9a9;
340 }
341
342 .crm-container .crm-form-time {
343 width: 5em;
344 margin-left: 1em;
345 }
346
347 .crm-container .crm-form-submit {
348 margin: .25em 0.5em 0.25em 0;
349 }
350
351 .crm-container div.crm-inline-button {
352 padding-left: 6px;
353 padding-top: 6px;
354 margin-bottom: 28px;
355 }
356
357 .crm-container fieldset {
358 background: none;
359 padding: 4px 0;
360 margin: 10px 0;
361 border: none;
362 border-top: 1px solid #cfcec3;
363 }
364
365 .crm-container fieldset.no-border {
366 border-top: none;
367 }
368
369 .crm-container fieldset legend {
370 display: block;
371 font-size: 14px;
372 font-weight: bold;
373 padding: 4px;
374 background: none;
375 border: medium none;
376 background-color: transparent;
377 color: #3e3e3e;
378 position: relative;
379 text-indent: 0;
380 width: auto;
381 }
382
383 .crm-container fieldset.form-layout {
384 margin: .25em 0 .5em 0;
385 padding: 1px 10px 1px 10px;
386 }
387
388 .crm-container fieldset.collapsible {
389 border: 0;
390 }
391
392 .crm-container div.form-item {
393 border-top-style: none;
394 margin: 0;
395 padding: 3px 0 5px 0;
396 clear: none;
397 height: 100%;
398 }
399
400 .crm-container div.form-item dl,
401 .crm-container .section-hidden dl,
402 .crm-container .crm-form-block dl {
403 margin: 0;
404 }
405
406 /* contribution page styles */
407 .crm-container #Main fieldset table td {
408 background-color: transparent;
409 border: none;
410 }
411
412 .crm-container .crm-section,
413 .crm-container div.crm-field-wrapper {
414 margin-bottom: 1em;
415 }
416
417 /* todo: See PR#19968 to move towards configurable breakpoints */
418 @media (min-width: 480px) {
419 .crm-container .crm-section .label {
420 float: left;
421 width: 17%;
422 text-align: right;
423 }
424 }
425
426 .crm-container .crm-section .label label {
427 white-space: normal;
428 }
429
430 .crm-container .label-left .label {
431 text-align: left;
432 }
433
434 @media (min-width: 480px) {
435 .crm-container .crm-section .content {
436 margin-left: 19%;
437 }
438 }
439
440 .crm-container .no-label .content {
441 margin-left: 0;
442 }
443
444 #crm-container #cvv2 {
445 vertical-align: top;
446 }
447
448 /* Use definition lists for simple 2 col forms - <dt> for labels, <dd> for fields */
449 .crm-container div.form-item dt,
450 .crm-container .crm-form-block dt {
451 float: left;
452 clear: left;
453 width: 150px;
454 text-align: right;
455 vertical-align: top;
456 padding: 5px 15px 5px 0;
457 font-size: .95em;
458 white-space: normal;
459 }
460
461 .crm-container .section-hidden dt {
462 float: left;
463 clear: left;
464 width: 150px;
465 text-align: left;
466 font-weight: bold;
467 white-space: nowrap;
468 padding: 5px 15px 5px 0;
469 }
470
471 .crm-container div.form-item dd,
472 .crm-container .crm-form-block dd,
473 .crm-container .section-hidden dd {
474 padding: 3px;
475 margin-left: 160px;
476 }
477
478 .crm-container div.form-item dd.html-adjust,
479 .crm-container div.form-item dl.html-adjust dd,
480 .crm-container div.crm-form-block dl.html-adjust dd,
481 .crm-container div.crm-form-block dd.html-adjust {
482 width: 57%;
483 }
484
485 .crm-container div.form-item dd.description,
486 .crm-container div.crm-form-block dd.description {
487 padding: 0 0 5px;
488 white-space: normal;
489 }
490
491 .crm-container div.form-item span.labels,
492 .crm-container div.crm-form-block span.labels {
493 float: left;
494 width: 15%;
495 text-align: right;
496 }
497
498 .crm-container div.form-item span.fields,
499 .crm-container div.crm-form-block span.fields {
500 width: 84%;
501 text-align: left;
502 margin-left: 16%;
503 display: block;
504 }
505
506 .crm-container table.form-layout,
507 .crm-container table.no-border {
508 margin: 0;
509 border-collapse: collapse;
510 border: 0 none;
511 }
512
513 .crm-container table.form-layout-compressed {
514 margin: 0 0 .5em;
515 width: auto;
516 border-collapse: collapse;
517 border: 1px none;
518 }
519
520 .crm-container table.crm-profile-tagsandgroups>tbody>tr>td {
521 padding: 0;
522 }
523
524 .crm-container table.crm-profile-tagsandgroups,
525 .crm-container table.crm-profile-tagsandgroups table {
526 margin: 0;
527 }
528
529 .crm-container table.advmultiselect {
530 margin: 0;
531 width: auto;
532 border-collapse: collapse;
533 border: 1px solid #696969;
534 }
535
536 .crm-container table.advmultiselect td {
537 padding: 10px;
538 }
539
540 .crm-container table.advmultiselect td select {
541 width: 150px;
542 }
543
544 .crm-container .form-layout td {
545 vertical-align: top;
546 padding: 5px;
547 white-space: normal;
548 border: none;
549 }
550
551 .crm-container .form-layout td.report,
552 .crm-container .form-layout td.description,
553 .crm-container .form-layout-compressed td.description {
554 white-space: normal;
555 }
556
557 .crm-container .form-layout-compressed td,
558 .crm-container .form-layout-compressed th {
559 vertical-align: text-top;
560 padding: 2px 5px;
561 border: none;
562 }
563
564 .crm-container .form-layout td.label,
565 .crm-container .form-layout-compressed td.label,
566 .crm-container .selector td.label,
567 .crm-container .form-layout-compressed th.label {
568 text-align: right;
569 padding: 4px 4px 4px 6px;
570 border: 0 none;
571 vertical-align: top;
572 }
573
574 .crm-container .form-layout td.label-left,
575 .crm-container .form-layout-compressed td.label-left {
576 text-align: left;
577 padding: 4px 4px 4px 6px;
578 border: 0 none;
579 vertical-align: top;
580 }
581
582 .crm-container .form-layout td.view-value,
583 .crm-container .form-layout-compressed td.view-value {
584 text-align: left;
585 padding: 4px;
586 border: 0 none;
587 vertical-align: top;
588 }
589
590 #crm-submit-buttons {
591 width: 100%;
592 /* fix ie7/ie8 bug where page goes bananas */
593 }
594
595 .crm-container .form-layout .buttons,
596 .crm-container .form-layout-compressed .buttons {
597 padding-top: 10px;
598 }
599
600 .crm-container .form-layout-compressed td.describe-image {
601 vertical-align: top;
602 padding: 0.5em 0 0 0;
603 font-size: .9em;
604 }
605
606 .crm-container .right {
607 text-align: right;
608 }
609
610 .crm-container .form-layout-compressed td.option-label {
611 vertical-align: top;
612 text-align: right;
613 padding: 0.75em 0.5em 0 0.75em;
614 color: #7a7a60;
615 }
616
617 .crm-container td.price_set_option-label {
618 padding-left: 3em;
619 }
620
621 /* messages and status */
622 .crm-container .messages {
623 margin: 1em 0 1em;
624 border: none;
625 font-weight: normal;
626 }
627
628 .crm-container .messages .msg-title {
629 font-weight: bold;
630 }
631
632 .crm-container .messages table {
633 width: auto;
634 }
635
636 .crm-container .messages table td {
637 background-color: #f7f7f7;
638 border-bottom: 1px solid #dddddd;
639 }
640
641 .crm-container .status {
642 background-color: #ffffcc;
643 background-image: none;
644 border: 1px solid #ffff66;
645 margin: 0.5em 0;
646 padding: 0.25em 0.5em;
647 color: #3e3e3e;
648 font-weight: normal;
649 }
650
651 .crm-container .status dl {
652 margin: 2px 5px;
653 }
654
655 .crm-container div.status dt {
656 clear: none;
657 float: left;
658 width: 20px;
659 }
660
661 .crm-container div.status dd {
662 margin-left: 0;
663 }
664
665 .crm-container div.status ul {
666 margin: 0 0 1em 16px;
667 }
668
669 .crm-container .status-pending {
670 color: green;
671 }
672
673 .crm-container .status-completed {
674 color: #000080;
675 }
676
677 .crm-container .crm-marker {
678 color: #8a1f11;
679 font-weight: bold;
680 margin-right: 5px;
681 }
682
683 .crm-container .crm-error,
684 .crm-container .crm-inline-error {
685 background: #fbe3e4 none repeat scroll 0 0;
686 border: none;
687 color: #8a1f11;
688 }
689 .crm-container .crm-error {
690 padding: 4px;
691 }
692
693 .crm-container .status.crm-ok {
694 border-color: #b0d730;
695 background-color: #f1f8eb;
696 color: #3e3e3e;
697 }
698
699 .crm-container .crm-footer {
700 font-size: 0.8em;
701 }
702
703 #civicrm-footer {
704 margin-top: 2em;
705 border-top: 1px solid #ddd;
706 padding: 0.8em;
707 text-align: center;
708 }
709
710 .crm-container #civicrm-footer.crm-public-footer {
711 vertical-align: middle;
712 text-align: right;
713 font-size: 16px;
714 padding: 0.8em 0;
715 }
716
717 .crm-container a.empowered-by-link {
718 display: inline-block;
719 height: 34px;
720 position: relative;
721 width: 99px;
722 }
723
724 .crm-container div.empowered-by-logo {
725 background: url('../i/civi99.png') no-repeat;
726 background-image: url('../i/civi99.svg'), none;
727 display: block;
728 line-height: 34px;
729 position: absolute;
730 top: 9px;
731 width: 99px;
732 }
733
734 .crm-container div.empowered-by-logo span {
735 visibility: hidden;
736 }
737
738 .crm-container #access {
739 padding: 0.8em 0.8em 0 0;
740 text-align: right;
741 }
742
743 .crm-container .header-dark {
744 margin: 0.5em 0 0.5em;
745 padding: 0.5em;
746 background-color: #999999;
747 font-weight: bold;
748 color: #fafafa;
749 border-radius: 2px;
750 }
751
752 .crm-container div.display-block {
753 font-weight: normal;
754 margin: 1em 2em 1em 2em;
755 }
756
757 /* Data display layouts */
758 .crm-container h3 {
759 /* h3 used as table header for civicrm */
760 background-color: #cde8fe;
761 font-size: 15px;
762 font-weight: bold;
763 color: #121a2d;
764 padding: 4px 6px;
765 margin: 0 0 0.3em;
766 }
767
768 .crm-container h3.nobackground,
769 .crm-container .crm-form-block h3 {
770 background-color: transparent;
771 }
772
773 #crm-container .col1 {
774 float: left;
775 vertical-align: top;
776 width: 40%;
777 text-align: left;
778 margin: 0 25px 0 25px;
779 }
780
781 #crm-container .col2 {
782 float: right;
783 vertical-align: top;
784 width: 50%;
785 text-align: left;
786 margin: 0;
787 }
788
789 #crm-container ul.indented {
790 padding-left: 3em;
791 }
792
793 #crm-container tr.subevent td.event-title,
794 #crm-container tr.subevent td.event-info {
795 padding-left: 3em;
796 }
797
798 #crm-container span.child-indent {
799 padding-left: 1em;
800 }
801
802 /* Remove any weird list styles from the cms */
803 .crm-container ul li {
804 background-image: none;
805 }
806
807 .crm-container .crm-form-block .crm-loading-element {
808 background-image: url("../i/loading-E6E6DC.gif");
809 }
810
811 .crm-container .crm-loading-element {
812 padding-left: 30px;
813 height: 30px;
814 background: transparent url("../i/loading.gif") no-repeat 0 0;
815 }
816
817 .crm-container div div.crm-msg-loading div.icon {
818 background: transparent url("../i/loading-2f2f2e.gif") no-repeat 0 0;
819 }
820
821 /*
822 * Styles for formatting text
823 */
824
825 /* Inline form field 'post-help' and radio-button unselect */
826 .crm-container .description {
827 font-size: 0.9em;
828 font-weight: normal;
829 white-space: normal;
830 width: auto;
831 color: #696969;
832 line-height: inherit;
833 padding: 0;
834 margin: 0;
835 }
836
837 .crm-container .form-layout-compressed td.description,
838 .crm-container .form-layout td.description {
839 padding: 0 5px 5px 5px;
840 font-size: 1em;
841 }
842
843 /* Page and form-level 'help' */
844 .crm-container .help,
845 .crm-container #help {
846 background-color: #f1f8eb;
847 border: 1px solid #b0d730;
848 color: #3e3e3e;
849 font-size: 13px;
850 margin: 0 0 8px;
851 padding: 4px;
852 }
853
854 .crm-container .help p {
855 margin: 4px;
856 }
857
858 .crm-container .font-light {
859 font-weight: lighter;
860 }
861
862 .crm-container .bold {
863 font-weight: bold;
864 }
865
866 .crm-container .font-bold {
867 font-weight: bold !important;
868 }
869
870 .crm-container .font-italic {
871 font-style: italic;
872 }
873
874 .crm-container .qill {
875 font-weight: normal;
876 line-height: 1.1em;
877 }
878
879 /* Styles for record browser and report tables, and pager bar */
880 #crm-container #map-field table,
881 #crm-container table.report,
882 #crm-container table.chart {
883 width: auto;
884 }
885
886 #crm-container .crm-flashchart {
887 overflow: auto;
888 }
889
890 #crm-container td.enclosingNested {
891 padding: 0;
892 }
893
894 #crm-container .nowrap {
895 white-space: nowrap;
896 }
897
898 #crm-container tr.columnheader {
899 background-color: #e6e6e6;
900 color: #000000;
901 border: 1px solid #ddd;
902 }
903
904 #crm-container tr.columnheader a {
905 color: #000;
906 text-decoration: none;
907 vertical-align: top;
908 }
909
910 #crm-container tr.columnheader-dark th {
911 background-color: #999999;
912 color: #fafafa;
913 border: 1px solid #696969;
914 }
915
916 #crm-container tr.columnheader-dark td,
917 #crm-container tr.columnheader-dark th,
918 #crm-container tr.columnheader td,
919 #crm-container tr.columnfooter td {
920 font-size: 1.1em;
921 font-weight: bold;
922 }
923
924 /* dev/core#1039 Make contact details in popup on merge screen non bold */
925 #crm-container tr.columnheader td [class*="crm-summary-col-"] {
926 font-size: 13px;
927 font-weight: normal;
928 }
929
930 #crm-container tr.columnheader-dark th span.extra {
931 font-size: .95em;
932 font-weight: normal;
933 }
934
935 #crm-container tr.columnfooter {
936 border-top: 2px solid #999999;
937 font-size: 1.1em;
938 }
939
940 #crm-container #map-field th {
941 border-right: 1px solid #999999;
942 }
943
944 #crm-container #map-field td,
945 #crm-container .report td,
946 #crm-container .chart td {
947 padding: 10px 10px 4px 10px;
948 }
949
950 #crm-container .report td {
951 border: 1px solid #999999;
952 background-color: #f6f6f6;
953 }
954
955 /* double line right border for last cell in a horizontal grouping */
956 #crm-container table.report td.splitter {
957 border-right: 5px double #999999;
958 }
959
960 #crm-container .report td.separator {
961 padding-top: 1em;
962 background-color: #ffffff;
963 border-left-color: #ffffff;
964 border-right-color: #ffffff;
965 }
966
967 #crm-container .chart td {
968 border: 2px solid #999999;
969 }
970
971 #crm-container .float-left {
972 float: left;
973 padding: 4px 0;
974 clear: none;
975 }
976
977 #crm-container .float-left + .float-left {
978 margin-left: 1em;
979 }
980
981 #crm-container .float-right {
982 float: right;
983 width: auto;
984 padding: 4px 0;
985 clear: none;
986 }
987
988 #crm-container .align-right {
989 display: block;
990 margin-right: 20px;
991 text-align: right;
992 }
993
994 #crm-container .element-right {
995 float: right;
996 margin-right: 35px;
997 }
998
999 /* search page styles */
1000 .crm-container .crm-search-tasks,
1001 .crm-container .crm-tasks {
1002 margin-bottom: 4px;
1003 padding: 4px;
1004 }
1005
1006 .crm-container .crm-search-results {
1007 margin-bottom: 4px;
1008 padding: 0;
1009 }
1010
1011 .crm-container #search-status {
1012 border: none;
1013 font-size: 13px;
1014 font-weight: normal;
1015 }
1016
1017 .crm-container .crm-pager {
1018 border: none;
1019 background-color: #f5f6f1;
1020 position: relative;
1021 height: 35px;
1022 padding-top: 5px;
1023 margin-bottom: 4px;
1024 }
1025
1026 .crm-container #search-status ul {
1027 margin: 0;
1028 }
1029
1030 .crm-container #search-status ul li,
1031 #crm-container ul.left-alignment li {
1032 display: list-item;
1033 margin-left: 2em;
1034 list-style-position: inside;
1035 }
1036
1037 .crm-container .crm-pager input {
1038 text-align: center;
1039 }
1040
1041 .crm-container .crm-pager-nav {
1042 display: block;
1043 margin-top: 7px;
1044 padding-left: 5px;
1045 }
1046
1047 #crm-container .section-hidden {
1048 display: block;
1049 margin: 0;
1050 padding: 5px;
1051 font-size: 0.95em;
1052 }
1053 #crm-container form .section-hidden-border {
1054 background-color: #5c5c59;
1055 border: medium none;
1056 color: #ffffff;
1057 margin-left: 5px;
1058 font-size: 13px;
1059 font-family: Verdana;
1060 padding: 2px 0 0 0;
1061 }
1062
1063 #crm-container .section-shown {
1064 padding: 0 5px;
1065 }
1066 #crm-container .data-group-first {
1067 margin: 10px 5px 5px 5px;
1068 padding: 5px;
1069 border-top: 2px solid #999999;
1070 clear: none;
1071 }
1072
1073 /* Styles for Wizard Progress Bars */
1074 #crm-container ul.wizard-bar {
1075 border-collapse: collapse;
1076 padding: 0 0 0 1em;
1077 white-space: nowrap;
1078 list-style: none;
1079 margin: 10px 0 20px;
1080 height: auto;
1081 width: auto;
1082 line-height: normal;
1083 border-top: 3px solid #bbb;
1084 text-align: center;
1085 }
1086
1087 #crm-container ul.wizard-bar li {
1088 display: inline;
1089 background-color: #fafafa;
1090 border: 1px solid #999999;
1091 height: auto;
1092 margin: -2px;
1093 padding: .5em 1em .5em;
1094 text-decoration: none;
1095 font-size: .95em;
1096 background-image: none;
1097 }
1098
1099 #crm-container ul.wizard-bar li.current-step {
1100 background-color: #4a89dc;
1101 border-color: #4a89dc;
1102 color: #ffffff;
1103 font-weight: bold;
1104 }
1105
1106 #crm-container ul.wizard-bar li.past-step {
1107 background-color: #f5f5f5;
1108 color: #666;
1109 }
1110
1111 #crm-container ul.wizard-bar li:first-child {
1112 border-radius: 8px 0 0 8px;
1113 }
1114
1115 #crm-container ul.wizard-bar li:last-child {
1116 border-radius: 0 8px 8px 0;
1117 }
1118
1119 /* Recently Viewed bar */
1120 #crm-recently-viewed ul {
1121 list-style-image: none;
1122 font-size: .9em;
1123 padding: 0;
1124 }
1125
1126 #crm-recently-viewed li.crm-recently-viewed {
1127 margin: 1px;
1128 padding: 1px 1px 4px 3px;
1129 border: 1px solid #d7d7d0;
1130 background-color: #fff;
1131 white-space: nowrap;
1132 list-style-type: none;
1133 position: relative;
1134 border-radius: 4px;
1135 }
1136
1137 #crm-recently-viewed ul li.crm-recently-viewed:hover,
1138 #crm-recently-viewed .crm-recentview-wrapper {
1139 background-color: #ffffcc;
1140 border: 1px solid #ffff66;
1141 border-radius: 4px;
1142 }
1143
1144 #crm-recently-viewed a {
1145 font-weight: normal;
1146 color: #4a88df;
1147 text-decoration: none;
1148 font-size: .95em;
1149 }
1150
1151 #crm-recently-viewed .crm-recentview-wrapper {
1152 display: none;
1153 position: absolute;
1154 z-index: 99;
1155 width: 10em;
1156 overflow: hidden;
1157 top: 0;
1158 text-align: center;
1159 padding-top: 1em;
1160 }
1161
1162 #crm-recently-viewed.left .crm-recentview-wrapper {
1163 border-left: none;
1164 right: -10em;
1165 }
1166
1167 #crm-recently-viewed.right .crm-recentview-wrapper {
1168 border-right: none;
1169 left: -10em;
1170 }
1171
1172 #crm-recently-viewed li.crm-recently-viewed:hover .crm-recentview-wrapper {
1173 display: block;
1174 }
1175
1176 .crm-recentview-item {
1177 overflow: hidden;
1178 text-overflow: ellipsis;
1179 }
1180
1181 #crm-recently-viewed .crm-recentview-wrapper a:hover {
1182 color: #494949;
1183 }
1184
1185 /* Boxes of checkbox elements (e.g. Advanced Search page) */
1186 .crm-container .listing-box,
1187 .crm-container .listing-box-tall {
1188 width: auto;
1189 max-width: 30em;
1190 height: 7.25em;
1191 overflow: auto;
1192 border: 1px solid #999999;
1193 }
1194
1195 .crm-container .listing-box div {
1196 color: black;
1197 }
1198
1199 /* To allow for taller boxes of groups/tags. */
1200 .crm-container .listing-box-tall {
1201 margin: .25em 2em .5em 0;
1202 height: 15em;
1203 }
1204
1205 /* Image Styles */
1206 .crm-container .action-icon {
1207 vertical-align: middle;
1208 padding: 2px 2px 2px 3px;
1209 margin: 2px 2px 3px 2px;
1210 cursor: pointer;
1211 }
1212
1213 #crm-container button.submit-link {
1214 color: #285286;
1215 background: none transparent;
1216 border: none;
1217 cursor: pointer;
1218 margin: 0 -0.5em 0 -0.5em;
1219 text-shadow: none;
1220 }
1221
1222 .crm-container .underline-effect {
1223 color: #285286;
1224 }
1225
1226 .crm-container .underline-effect:hover {
1227 text-decoration: underline;
1228 }
1229
1230 .crm-container .underline-effect:before {
1231 content: "\00BB";
1232 }
1233
1234 #crm-container.clear,
1235 .crm-container .crm-group-summary .clear {
1236 /* generic container (i.e. div) for floating buttons */
1237 overflow: hidden;
1238 width: 100%;
1239 }
1240
1241 #location .form-layout table,
1242 #location .form-layout td,
1243 #crm-container div#location table.form-layout table.inner-table td {
1244 border: 0;
1245 vertical-align: top;
1246 margin-bottom: -5px;
1247 width: auto;
1248 }
1249
1250 /* class for personal campaign info page */
1251 #crm-container table.campaign th,
1252 .crm-container table.campaign td,
1253 #crm-container table.campaign,
1254 #crm-container table.campaign table.form-layout td {
1255 font-size: 9pt;
1256 border: 0;
1257 width: auto;
1258 vertical-align: top;
1259 }
1260
1261 #crm-container table.campaign table {
1262 background: #f7f7f7;
1263 }
1264
1265 #crm-container div.remaining {
1266 background: url("../i/contribute/pcp_remain.gif");
1267 }
1268
1269 #crm-container div.achieved {
1270 background: url("../i/contribute/pcp_achieve.gif");
1271 }
1272
1273 #crm-container .honor_roll {
1274 margin: 1em 20px 0 0;
1275 padding: 10px;
1276 width: 120px;
1277 background-color: #fafafa;
1278 border: 1px solid #9d9fca;
1279 height: 220px;
1280 overflow: hidden;
1281 }
1282
1283 #crm-container .thermometer-wrapper,
1284 #crm-container .honor-roll-wrapper {
1285 float: left;
1286 width: 150px;
1287 margin-left: 1em;
1288 }
1289
1290 #crm-container .thermometer-fill-wrapper {
1291 background: transparent url("../i/contribute/pcp_remain.gif") repeat-y scroll left bottom;
1292 height: 220px;
1293 position: relative;
1294 margin: 1em 0 1.5em 0;
1295 }
1296
1297 #crm-container .thermometer-fill {
1298 background: transparent url(../i/contribute/pcp_achieve.gif) repeat-y scroll 0 bottom;
1299 bottom: 0;
1300 left: 0;
1301 position: absolute;
1302 width: 130px;
1303 }
1304
1305 #crm-container .thermometer-pointer {
1306 padding-left: 45px;
1307 /* width of thermometer + a little actual padding */
1308 position: absolute;
1309 top: -10px;
1310 /* vertically center text on percentage raised */
1311 line-height: 1em;
1312 }
1313
1314 #crm-container .pcp-intro-text {
1315 padding-bottom: 1em;
1316 }
1317
1318 #crm-container .pcp-image {
1319 float: left;
1320 margin: 0 1em 1em 0;
1321 }
1322
1323 #crm-container .pcp-image img {
1324 max-width: 360px;
1325 }
1326
1327 #crm-container .pcp-widgets {
1328 border: 1px solid #cccccc;
1329 float: right;
1330 margin: 0 0 1em 1em;
1331 padding: 0.5em;
1332 }
1333
1334 #crm-container .pcp_honor_roll_entry {
1335 margin-bottom: 1em;
1336 }
1337
1338 #crm-container .pcp-honor_roll-nickname {
1339 font-weight: bold;
1340 }
1341
1342 #crm-container .pcp-donate {
1343 height: 24px;
1344 }
1345 #crm-container a.pcp-contribute-button {
1346 font-weight: bold;
1347 }
1348
1349 #crm-container .pcp-create-your-own {
1350 clear: left;
1351 margin: 1em 0;
1352 }
1353
1354 #crm-container .pcp-page-text {
1355 margin-bottom: 1em;
1356 }
1357
1358 #crm-container table.nestedSelector {
1359 margin: 0;
1360 width: 100%;
1361 border-bottom: 0;
1362 }
1363
1364 #crm-container table.nestedSelector tr.columnheader th {
1365 border: 0;
1366 }
1367
1368 #crm-container table.caseSelector {
1369 vertical-align: top;
1370 border: 0;
1371 margin: 0.5em 0.1em;
1372 }
1373
1374 #crm-container table.caseSelector tr {
1375 border-bottom: 1px solid #999999;
1376 }
1377
1378 #crm-container table.caseSelector td {
1379 border-right: 0;
1380 padding: 4px;
1381 }
1382
1383 #crm-container table.nestedActivitySelector {
1384 margin: 0;
1385 width: 100%;
1386 border: 0;
1387 color: #333333;
1388 }
1389
1390 #crm-container table.nestedActivitySelector tr.columnheader th {
1391 color: #000000;
1392 background-color: #cfcec3;
1393 border-top-color: #fff;
1394 border-left-color: #ffffff;
1395 border-right-color: #ffffff;
1396 border-bottom-color: #999999;
1397 }
1398
1399 #crm-container table#activities-selector.nestedActivitySelector,
1400 #crm-container table#activities-selector.nestedActivitySelector td {
1401 border: 0;
1402 }
1403
1404 #crm-container table.nestedActivitySelector td {
1405 border-right: 0;
1406 }
1407
1408 #crm-container table.nestedActivitySelector tr.priority-urgent,
1409 #crm-container table.nestedActivitySelector tr a.priority-urgent {
1410 background-color: #ffdddd;
1411 }
1412
1413 #crm-container table.nestedActivitySelector tr.priority-low,
1414 #crm-container table.nestedActivitySelector tr a.priority-low {
1415 background-color: #ddffdd;
1416 }
1417
1418 #crm-container table.nestedActivitySelector tr.status-scheduled,
1419 #crm-container table.nestedActivitySelector tr a.status-scheduled {
1420 color: #006633;
1421 }
1422
1423 #crm-container table.nestedActivitySelector tr.status-completed,
1424 #crm-container table.nestedActivitySelector tr a.status-completed {
1425 color: #333333;
1426 }
1427
1428 #crm-container table.nestedActivitySelector tr.status-overdue,
1429 #crm-container table.nestedActivitySelector tr a.status-overdue {
1430 color: #ff0000;
1431 }
1432
1433 #crm-container table.nestedActivitySelector tr a.crm-activity-status {
1434 cursor: pointer;
1435 }
1436
1437 #crm-container #activities-selector tr:hover td,
1438 #crm-container #activities-selector tr:hover td.sorted,
1439 #crm-container #activities-selector tr.trOver td.sorted,
1440 #crm-container #activities-selector tr.trOver td {
1441 background: transparent;
1442 }
1443
1444 /* Styles for Actions Ribbon */
1445 #crm-container .crm-actions-ribbon {
1446 margin: 0 0 8px 0;
1447 }
1448
1449 #crm-container .crm-actions-ribbon ul {
1450 margin: 0;
1451 padding: 0;
1452 }
1453
1454 #crm-container .crm-actions-ribbon li {
1455 float: left;
1456 margin: 0 8px 0 0;
1457 padding: 0;
1458 list-style: none;
1459 }
1460
1461 #crm-container .crm-actions-ribbon li.crm-delete-action {
1462 margin-left: 30px;
1463 }
1464
1465 #crm-container .crm-actions-ribbon li.crm-previous-action,
1466 #crm-container .crm-actions-ribbon li.crm-next-action {
1467 float: right;
1468 margin: 0 0 0 8px;
1469 }
1470
1471 #crm-container .ac_results li {
1472 float: none;
1473 padding: 4px;
1474 margin: 0;
1475 line-height: 15px;
1476 white-space: initial;
1477 }
1478
1479 .crm-container .action-item-wrap {
1480 padding: 0 5px;
1481 border-left: 1px solid #ccc;
1482 white-space: normal;
1483 }
1484
1485 /* Hover-buttons */
1486 .crm-container span.crm-hover-button,
1487 .crm-container a.crm-hover-button {
1488 display: inline-block;
1489 white-space: nowrap;
1490 border: 1px solid transparent;
1491 border-radius: 4px;
1492 text-decoration: none;
1493 font-size: .9em;
1494 color: #000;
1495 padding: 1px 3px;
1496 opacity: .7;
1497 cursor: pointer;
1498 }
1499 .crm-container a.crm-hover-button.action-item,
1500 .crm-container .crm-hover-button.btn-slide {
1501 font-size: .95em;
1502 padding: 3px 5px;
1503 opacity: 1;
1504 color: #2786c2;
1505 }
1506 .crm-container .btn-slide .action-item {
1507 white-space: normal;
1508 }
1509 .crm-container .crm-accordion-header .crm-hover-button {
1510 opacity: 1;
1511 position: relative;
1512 top: -2px;
1513 color: inherit;
1514 }
1515 .crm-container .crm-hover-button:hover,
1516 .crm-container a.crm-hover-button:hover,
1517 .crm-container a.crm-hover-button:active {
1518 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(1, #ccc));
1519 background-image: -webkit-linear-gradient(center bottom, #eee 0%, #ccc 100%);
1520 background-image: -moz-linear-gradient(center bottom, #eee 0%, #ccc 100%);
1521 filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr = '#cccccc', endColorstr = '#eeeeee', GradientType = 0)";
1522 background-image: linear-gradient(top, #eee 0%, #ccc 100%);
1523 border: 1px solid #aaaaaa;
1524 opacity: 1;
1525 color: #2786c2;
1526 }
1527 .crm-container .crm-hover-button .icon {
1528 cursor: pointer;
1529 margin-left: 3px;
1530 position: relative;
1531 top: 2px;
1532 }
1533 .crm-container .crm-hover-button:hover .icon,
1534 .crm-container .crm-hover-button:active .icon {
1535 background-image: url("../i/icons/jquery-ui-2786C2.png");
1536 }
1537 .crm-container a.action-item {
1538 display: inline;
1539 }
1540
1541 /* theming for panel and context menus */
1542 .crm-container td ul.panel li {
1543 background-color: #2f2f2e;
1544 }
1545
1546 .crm-container .btn-slide .panel li a:hover,
1547 .crm-container .crm-participant-list-inner li a:hover,
1548 .crm-container .crm-event-links-list-inner li a:hover,
1549 .crm-container .crm-contribpage-links-list-inner li a:hover {
1550 color: #3e3e3e;
1551 background-color: #f5f6f1;
1552 text-decoration: none;
1553 }
1554
1555 .crm-container ul.panel {
1556 display: none;
1557 z-index: 9999;
1558 position: absolute;
1559 border-bottom: 0;
1560 background: transparent url(../i/dropdown-pointer.gif) no-repeat scroll 150px 1px;
1561 text-align: left;
1562 padding-top: 5px;
1563 margin: 0;
1564 width: 180px;
1565 }
1566
1567 .crm-container td ul.panel {
1568 top: 15px;
1569 right: 0;
1570 }
1571
1572 .crm-container td ul.panel li {
1573 margin: 0;
1574 padding: 2px;
1575 list-style: none;
1576 background-image: none;
1577 width: auto;
1578 }
1579
1580 .crm-container span.btn-slide {
1581 text-align: left;
1582 cursor: pointer;
1583 position: relative;
1584 white-space: nowrap;
1585 display: inline;
1586 }
1587 .crm-container .btn-slide:after {
1588 font-family: "FontAwesome";
1589 content: "\f0da";
1590 padding-left: .5ex;
1591 }
1592
1593 .crm-container .btn-slide-active .panel {
1594 z-index: 10;
1595 }
1596
1597 .crm-container .crm-event-participants,
1598 .crm-container .crm-event-links,
1599 .crm-container .crm-event-more {
1600 min-width: 85px;
1601 z-index: 1;
1602 }
1603
1604 .crm-container .btn-slide .panel li a {
1605 text-decoration: none;
1606 padding: 4px;
1607 display: block;
1608 cursor: pointer;
1609 color: #dfdfdf;
1610 }
1611
1612 /*class for CMS user name check used in profile*/
1613 .crm-container .cmsmessagebox {
1614 position: absolute;
1615 width: auto;
1616 margin-left: 10px;
1617 padding: 3px;
1618 }
1619
1620 .crm-container ul li.crm-tab-button {
1621 border-bottom: 0 none;
1622 float: left;
1623 margin: 0 0.2em 1px 0;
1624 padding: 0 0 1px;
1625 position: relative;
1626 top: 1px;
1627 white-space: nowrap;
1628 }
1629
1630 .crm-container .ui-tabs .ui-tabs-nav {
1631 padding: 4px;
1632 }
1633
1634 .crm-container .crm-tab-button a,
1635 .crm-container .ui-tabs .ui-tabs-nav li a,
1636 .crm-container .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a,
1637 .crm-container .ui-tabs .ui-tabs-nav li.ui-tabs-selected a {
1638 font-size: 0.9em;
1639 }
1640
1641 .crm-container li.crm-tab-button {
1642 margin: 0 2px 2px 0;
1643 }
1644
1645 .crm-container .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
1646 padding-bottom: 0;
1647 border: none;
1648 }
1649
1650 .crm-container .crm-tab-button a,
1651 .crm-container .ui-tabs .ui-tabs-nav li a {
1652 padding: 5px !important;
1653 }
1654
1655 .crm-container .crm-tab-button a em {
1656 color: #555555;
1657 font-style: normal;
1658 }
1659
1660 #crm-container div.ui-accordion-content {
1661 padding: .5em 1em !important;
1662 }
1663
1664 #crm-container .ui-tabs-panel {
1665 padding: 4px;
1666 min-height: 12em;
1667 }
1668
1669 #crm-container div.contact_details {
1670 padding: 4px;
1671 line-height: 1.4em;
1672 clear: both;
1673 }
1674
1675 .crm-container .crm-clearfix:after {
1676 clear: both;
1677 content: ".";
1678 display: block;
1679 height: 0;
1680 visibility: hidden;
1681 }
1682
1683 .crm-container div.crm-clear {
1684 clear: both;
1685 margin-bottom: 1px;
1686 background-color: #fafafa;
1687 font-size: 11px;
1688 }
1689
1690 /* reports */
1691
1692 #crm-container div.buttons {
1693 text-align: right;
1694 margin: 8px 0 0;
1695 padding: 4px 4px 2px 0;
1696 background-color: #fff;
1697 border: none;
1698 }
1699
1700 #crm-container div.buttons input,
1701 #crm-container div.buttons select {
1702 font-size: 0.9em;
1703 vertical-align: top !important;
1704 }
1705
1706 #crm-container div.buttons #actions {
1707 text-align: left;
1708 float: left;
1709 }
1710 #crm-container div.buttons ul#actions {
1711 list-style-type: none;
1712 padding-left: 0;
1713 }
1714 #crm-container div.buttons #actions li {
1715 float: left;
1716 padding: 0;
1717 margin: 0 5px 0 0;
1718 }
1719
1720 #crm-container div.crm-case-dashboard-buttons {
1721 height: 33px;
1722 }
1723
1724 #crm-container div.crm-case-dashboard-switch-view-buttons {
1725 float: right;
1726 }
1727
1728 .crm-container a.crm-event-feed-link {
1729 margin: 0 1ex;
1730 color: #52534d;
1731 display: inline-block;
1732 font-size: 10px;
1733 padding: 2px 2px 0;
1734 vertical-align: bottom;
1735 }
1736
1737 .crm-container a.crm-event-feed-link:hover {
1738 color: #2786c2;
1739 }
1740
1741 .crm-container table.criteria-group {
1742 margin-bottom: .1em;
1743 }
1744
1745 #crm-container .separator {
1746 border-bottom: solid 2px #ccc;
1747 }
1748
1749 #crm-container .report-layout {
1750 border: none;
1751 }
1752
1753 #crm-container .reports-header-right {
1754 text-align: right;
1755 }
1756
1757 #crm-container .report-contents {
1758 background-color: #f5f5f5;
1759 border: 1px solid #cdcdc3;
1760 padding: 4px;
1761 width: 20%;
1762 white-space: normal;
1763 font-size: 0.95em;
1764 }
1765
1766 #crm-container .report-contents-right {
1767 border: 1px solid #cdcdc3;
1768 padding: 4px;
1769 font-size: 0.95em;
1770 text-align: right;
1771 }
1772
1773 #crm-container table.report-layout td {
1774 padding: 4px;
1775 border-bottom: 1px solid #cdcdc3;
1776 vertical-align: top;
1777 }
1778
1779 #crm-container table.report-layout tr {
1780 font-size: 0.95em;
1781 }
1782
1783 #crm-container .report-label {
1784 text-align: right;
1785 font-weight: bold;
1786 }
1787
1788 #crm-container table.report-layout th.report-contents {
1789 background-color: #f5f5f5;
1790 }
1791
1792 #crm-container table.report-layout th.statistics {
1793 width: 5%;
1794 white-space: nowrap;
1795 }
1796
1797 /*override default pager for report*/
1798 .crm-container .report-pager .crm-pager-nav a {
1799 color: #000000;
1800 }
1801
1802 #crm-container table.view-layout {
1803 margin: 0;
1804 border-collapse: collapse;
1805 border: 0 none;
1806 }
1807
1808 #crm-container table.view-layout .label {
1809 color: DimGray;
1810 font-size: 0.95em;
1811 vertical-align: top;
1812 font-weight: bold;
1813 margin-right: 10px;
1814 background-color: #eeeeee;
1815 width: 20%;
1816 }
1817
1818 #crm-container th.contriTotalRight {
1819 border-right: 1px solid #999999;
1820 }
1821
1822 #crm-container th.contriTotalLeft {
1823 border-left: 1px solid #999999;
1824 }
1825
1826 /* TimeEntry styles */
1827 .crm-container .timeEntry_control {
1828 vertical-align: middle;
1829 margin-left: 2px;
1830 }
1831 * html .timeEntry_control {
1832 /* IE only */
1833 margin-top: -4px;
1834 }
1835
1836 .crm-container .ui-datepicker {
1837 width: 17em;
1838 padding: .2em .2em 0;
1839 z-index: 9999 !important;
1840 }
1841
1842 /* Set/alter ICONS */
1843
1844 #crm-container .order-icon {
1845 height: 15px;
1846 width: 10px;
1847 padding-top: 4px;
1848 padding-right: 4px;
1849 display: inline-block;
1850 }
1851
1852 /* crm button style */
1853
1854 .crm-container .crm-submit-buttons,
1855 .crm-container .action-link {
1856 height: 27px;
1857 margin: 4px 0 4px 2px;
1858 }
1859
1860 .crm-container .register_link-top {
1861 float: right;
1862 margin-left: 8px;
1863 }
1864
1865 .crm-container .crm-clear-link {
1866 margin-left: .5em;
1867 }
1868
1869 .crm-container .crm-button-type-cancel,
1870 .crm-container .crm-button-type-back {
1871 margin-left: 20px;
1872 }
1873
1874 /* Reset WP backend min-height for buttons */
1875
1876 .wp-core-ui .crm-container .button {
1877 min-height: 0;
1878 }
1879
1880 .crm-container a.button,
1881 .crm-container a.button:link,
1882 .crm-container a.button:visited,
1883 .crm-container .ui-dialog-buttonset .ui-button,
1884 .crm-container .crm-button {
1885 text-shadow: 0 1px 0 black;
1886 background: #696969;
1887 color: #fff;
1888 font-size: 13px;
1889 font-weight: normal;
1890 margin: 0 6px 0 0;
1891 padding: 2px 6px;
1892 text-decoration: none;
1893 cursor: pointer;
1894 border: 1px solid #3e3e3e;
1895 display: block;
1896 float: left;
1897 overflow: hidden;
1898 line-height: 135%;
1899 border-radius: 3px;
1900 }
1901
1902 .crm-container .crm-button:hover,
1903 .crm-container .crm-button:focus,
1904 .crm-container .ui-dialog-buttonset .ui-button:hover,
1905 .crm-container .ui-dialog-buttonset .ui-button:focus,
1906 .crm-container a.button:hover,
1907 .crm-container a.button:focus {
1908 background: #3e3e3e;
1909 }
1910
1911 .crm-container .crm-button-disabled,
1912 .crm-container .crm-button.crm-button-disabled,
1913 .crm-container .ui-dialog-buttonset .ui-button[disabled],
1914 .crm-container .crm-button[disabled] {
1915 opacity: .6;
1916 cursor: default;
1917 }
1918
1919 .crm-container .ui-dialog-buttonpane {
1920 background: linear-gradient(to bottom, #f2f2f2 0%,#ffffff 35%);
1921 }
1922
1923 .crm-container .ui-dialog-buttonset .ui-button .ui-icon {
1924 background-image: url("../i/icons/jquery-ui-FFFFFF.png");
1925 }
1926
1927 /* Override of a line in crm-i.css that may not be important anymore */
1928 .crm-container .ui-dialog-buttonset .ui-button .ui-icon[class*=" fa-"] {
1929 margin-top: 0;
1930 }
1931
1932 /* No crm-button styling for PayPal Express buttons */
1933 .crm-container input#_qf_Register_upload_express,
1934 .crm-container input#_qf_Payment_upload_express,
1935 .crm-container input#_qf_Main_upload_express {
1936 background: none;
1937 margin: 0;
1938 padding: 0;
1939 border: none;
1940 }
1941
1942 /* create new XXX style (drupal block) */
1943
1944 #crm-participant-wrapper,
1945 #crm-event-links-wrapper,
1946 #crm-contribpage-links-wrapper,
1947 #crm-create-new-wrapper {
1948 position: relative;
1949 float: left;
1950 }
1951
1952 #crm-event-links-list,
1953 #crm-contribpage-links-list,
1954 #crm-create-new-list,
1955 #crm-contact-actions-list,
1956 #crm-participant-list {
1957 position: absolute;
1958 display: none;
1959 top: 24px;
1960 width: 220px;
1961 left: 0;
1962 z-index: 15;
1963 }
1964
1965 #crm-create-new-list {
1966 width: 160px;
1967 }
1968
1969 #crm-event-links-list .crm-event-info ul,
1970 #crm-event-links-list .crm-event-test ul,
1971 #crm-event-links-list .crm-event-live ul,
1972 #crm-contribpage-links-list .crm-contribpage-contribution ul,
1973 #crm-contribpage-links-list .crm-contribpage-test ul,
1974 #crm-contribpage-links-list .crm-contribpage-live ul,
1975 #crm-participant-list .crm-participant-counted ul,
1976 #crm-participant-list .crm-participant-not-counted ul,
1977 #crm-participant-list .crm-participant-listing ul,
1978 #crm-create-new-list ul {
1979 width: auto;
1980 margin: 0;
1981 padding: 0;
1982 }
1983
1984 /* setup for icons */
1985
1986 .ac_results ul li {
1987 background-image: url('');
1988 }
1989
1990 .crm-container .ui-icon,
1991 .crm-container .icon {
1992 background-image: url("../i/icons/jquery-ui-52534D.png");
1993 }
1994
1995 .crm-container .icon {
1996 height: 16px;
1997 width: 16px;
1998 float: left;
1999 text-indent: -10000px;
2000 }
2001
2002 .crm-container span.icon,
2003 .crm-container a.ui-icon {
2004 float: none;
2005 display: inline-block;
2006 }
2007
2008 .crm-container .button .icon,
2009 .crm-container a.invoiceButton .icon,
2010 .crm-container .crm-button .icon,
2011 .crm-accordion-header .icon {
2012 position: relative;
2013 top: -2px;
2014 background-image: url("../i/icons/jquery-ui-FFFFFF.png");
2015 }
2016
2017 .crm-container span.crm-button .icon {
2018 margin-top: 3px;
2019 }
2020
2021 .crm-container .button .icon {
2022 float: left;
2023 display: block;
2024 margin-right: 3px;
2025 top: -1px;
2026 }
2027
2028 .crm-container .button .icon.css_right {
2029 float: right;
2030 margin-right: 0;
2031 margin-left: 3px;
2032 }
2033
2034 .crm-container .delete-icon {
2035 background-position: -176px -96px;
2036 }
2037 .crm-container .red-icon,
2038 .crm-container a:hover .icon.delete-icon,
2039 .crm-container .crm-button:hover .icon.ui-icon-trash,
2040 .crm-container .crm-hover-button:hover .icon.ui-icon-trash,
2041 .crm-container span:hover > .icon.delete-icon {
2042 background-image: url("../i/icons/jquery-ui-8A1F11.png");
2043 }
2044
2045 /* Font Awesome */
2046
2047 .crm-container a .crm-i,
2048 .crm-container a:link .crm-i,
2049 .crm-container a:visited .crm-i,
2050 .crm-container a:active .crm-i,
2051 .crm-container a:hover .crm-i,
2052 .crm-container a .ui-icon[class*=" fa-"],
2053 .crm-container a:link .ui-icon[class*=" fa-"],
2054 .crm-container a:visited .ui-icon[class*=" fa-"],
2055 .crm-container a:active .ui-icon[class*=" fa-"],
2056 .crm-container a:hover .ui-icon[class*=" fa-"] {
2057 color: inherit;
2058 }
2059
2060 a.crm-i:hover {
2061 text-decoration: none;
2062 }
2063
2064 .crm-container a:hover .crm-i.fa-trash,
2065 .crm-container .crm-button:hover .crm-i.fa-trash,
2066 .crm-container .crm-hover-button:hover .crm-i.fa-trash,
2067 .crm-container span:hover > .crm-i.fa-trash,
2068 .crm-i.crm-i-red {
2069 color: #8a1f11;
2070 }
2071
2072 .crm-i.crm-i-blue {
2073 color: #6177d5;
2074 }
2075
2076 .crm-i.crm-i-green {
2077 color: #86c661;
2078 }
2079
2080 .crm-container a.helpicon {
2081 opacity: .8;
2082 }
2083
2084 .crm-submit-buttons .helpicon {
2085 float: left;
2086 padding-right: 6px;
2087 }
2088
2089 .crm-container a.helpicon:hover,
2090 .crm-container a.helpicon:focus {
2091 opacity: 1;
2092 }
2093
2094 /* Same as fa-question-circle */
2095 .crm-container a.helpicon:before {
2096 content: "\f059";
2097 }
2098
2099 div.crm-accordion-header a.helpicon {
2100 color: inherit;
2101 }
2102 div.crm-master-accordion-header a.helpicon {
2103 color: #2786c2;
2104 }
2105
2106 /* These .crm-icon classes use item_sprites.png */
2107
2108 .crm-container .crm-icon {
2109 background-image: url('../i/item_sprites.png');
2110 margin: 2px 4px 0 0;
2111 text-indent: -10000px;
2112 /* for accessibility reason, put the name of the type/subtype in the icon div (it will be hidden and replaced by the icon) */
2113 }
2114
2115 .select2-results .select2-highlighted .Individual-icon,
2116 .crm-container .Individual-icon {
2117 background-position: 0 0;
2118 }
2119 .select2-results .select2-highlighted .Organization-icon,
2120 .crm-container .Organization-icon {
2121 background-position: -48px 0;
2122 }
2123 .select2-results .select2-highlighted .Household-icon,
2124 .crm-container .Household-icon {
2125 background-position: -32px 0;
2126 }
2127 .crm-container .Group-icon {
2128 background-position: -16px 0;
2129 }
2130 .select2-results .Individual-icon,
2131 .crm-container .Individual-subtype-icon {
2132 background-position: 0 -48px;
2133 }
2134 .select2-results .Household-icon,
2135 .crm-container .Household-subtype-icon {
2136 background-position: -32px -48px;
2137 }
2138 .select2-results .Organization-icon,
2139 .crm-container .Organization-subtype-icon {
2140 background-position: -48px -48px;
2141 }
2142
2143 .crm-container .Activity-icon {
2144 background-position: -64px 0;
2145 }
2146 .crm-container .Case-icon {
2147 background-position: -80px 0;
2148 }
2149 .crm-container .Grant-icon {
2150 background-position: 0 -16px;
2151 }
2152 .crm-container .Contribution-icon {
2153 background-position: -16px -16px;
2154 }
2155 .crm-container .Pledge-icon {
2156 background-position: -16px -16px;
2157 }
2158 .crm-container .Membership-icon {
2159 background-position: -32px -16px;
2160 }
2161 .crm-container .Participant-icon {
2162 background-position: 0 -32px;
2163 }
2164 .crm-container .Note-icon {
2165 background-position: -16px -32px;
2166 }
2167 .crm-container .Relationship-icon {
2168 background-position: -32px -32px;
2169 }
2170
2171 /* accordion styles */
2172
2173 .crm-container .crm-accordion-header,
2174 .crm-container .crm-collapsible .collapsible-title,
2175 .crm-container span.collapsed,
2176 .crm-container a.collapsed,
2177 .crm-container .crm-expand-row {
2178 cursor: pointer;
2179 }
2180
2181 .crm-container .crm-accordion-wrapper {
2182 margin-bottom: 4px;
2183 }
2184
2185 /* Specific types of headers */
2186
2187 #crm-container .widget-content .crm-accordion-header {
2188 background-color: #efefe5;
2189 color: #080808;
2190 }
2191
2192 .crm-container a.crm-expand-row:before,
2193 .crm-container a.crm-expand-row:link::before,
2194 .crm-container a.crm-expand-row:visited::before {
2195 color: #3e3e3e;
2196 }
2197
2198 .crm-container .crm-accordion-header {
2199 color: #f5f6f1;
2200 font-weight: normal;
2201 padding: 4px 8px;
2202 background-color: #5d677b;
2203 border-radius: 4px 4px 0 0;
2204 }
2205
2206 .crm-container .collapsed .crm-accordion-header {
2207 border-radius: 4px;
2208 }
2209
2210 .crm-container .crm-accordion-header.active {
2211 font-weight: bold;
2212 background-color: #3e3e3e;
2213 }
2214
2215 .crm-container .crm-accordion-header:hover {
2216 background-color: #2f2f2e;
2217 }
2218
2219 #crm-container .widget-content .crm-accordion-header:hover {
2220 background-color: #e8e8de;
2221 }
2222
2223 .crm-container .crm-accordion-wrapper .crm-master-accordion-header {
2224 background-color: transparent;
2225 color: #3e3e3e;
2226 }
2227
2228 .crm-container .crm-accordion-wrapper .crm-master-accordion-header {
2229 font-size: 16px;
2230 }
2231
2232 .crm-container .crm-master-accordion-header.crm-accordion-header:hover,
2233 .crm-container .crm-collapsible .collapsible-title:hover {
2234 color: #121a2d;
2235 }
2236
2237 .crm-container .collapsed .crm-accordion-body,
2238 .crm-container .crm-collapsible.collapsed .collapsible-title + * {
2239 display: none;
2240 }
2241
2242 /* Collapse icon */
2243
2244 /* General icon settings for all collapsible things */
2245 .crm-container .crm-accordion-header:before,
2246 .crm-container .crm-collapsible .collapsible-title:before,
2247 .crm-container span.collapsed:before,
2248 .crm-container a.collapsed:before,
2249 .crm-container .crm-expand-row:before {
2250 font-family: "FontAwesome";
2251 display: inline-block;
2252 width: 1em;
2253 content: "\f0da";
2254 font-size: 13px;
2255 }
2256
2257 /* Collapsed icon */
2258 .crm-container .collapsed .crm-accordion-header:before,
2259 .crm-container .crm-collapsible.collapsed .collapsible-title:before,
2260 .crm-container span.collapsed:before,
2261 .crm-container a.collapsed:before,
2262 .crm-container .crm-expand-row:before {
2263 content: "\f0da";
2264 }
2265
2266 /* Expanded icon */
2267 .crm-container .crm-accordion-header:before,
2268 .crm-container .crm-collapsible .collapsible-title:before,
2269 .crm-container span.expanded:before,
2270 .crm-container a.expanded:before,
2271 .crm-container .crm-expand-row.expanded:before {
2272 font-family: "FontAwesome";
2273 content: "\f0d7";
2274 }
2275
2276 /* Accordion bodies */
2277
2278 .crm-container .crm-accordion-body {
2279 border-radius: 0 0 4px 4px;
2280 border: 1px solid #70716b;
2281 border-top: 0;
2282 padding: 4px 0;
2283 }
2284
2285 #crm-container .widget-content .crm-accordion-body {
2286 border-color: #e8e8de;
2287 }
2288
2289 .crm-container .crm-master-accordion-header+.crm-accordion-body {
2290 border: none;
2291 padding: 0;
2292 }
2293
2294 #crm-container .widget-content .crm-accordion-body,
2295 .crm-container .crm-accordion-body.padded {
2296 padding-left: .5em;
2297 padding-right: .5em;
2298 }
2299
2300 .crm-container .crm-child-row > td {
2301 padding-left: 1.8em;
2302 }
2303
2304 /* Status message box */
2305 .crm-status-box-outer {
2306 position: fixed;
2307 z-index: 99999;
2308 right: 0;
2309 top: 0;
2310 }
2311
2312 .crm-status-box-outer.status-start {
2313 background: #f8ff03 url("../i/animated-overlay.gif");
2314 }
2315
2316 .crm-status-box-outer .crm-status-box-inner {
2317 padding: 3px 14px;
2318 font-size: 13px !important;
2319 color: #eee;
2320 font-weight: bold;
2321 text-align: center;
2322 background: rgba(94, 91, 31, 0.9);
2323 }
2324
2325 .crm-status-box-outer.status-success .crm-status-box-inner {
2326 background: rgba(30, 143, 36, 0.7);
2327 }
2328
2329 .crm-status-box-outer.status-error .crm-status-box-inner {
2330 background: rgba(255, 7, 0, 0.7);
2331 }
2332
2333 .crm-container .crm-summary-link {
2334 position: relative;
2335 z-index: 16;
2336 }
2337
2338 .crm-container .crm-tooltip-wrapper {
2339 position: absolute;
2340 bottom: 0;
2341 left: -36px;
2342 overflow: hidden;
2343 z-index: 1000;
2344 padding-bottom: 10px;
2345 background: transparent url('../i/overlay-pointer.png') no-repeat bottom left;
2346 font-size: 13px;
2347 display: none;
2348 }
2349
2350 .crm-container .crm-tooltip-down .crm-tooltip-wrapper {
2351 top: 20px;
2352 padding-top: 10px;
2353 background: transparent url('../i/overlay-pointer.png') no-repeat top left;
2354 overflow: visible;
2355 }
2356
2357 .crm-container .crm-tooltip-active {
2358 z-index: 20;
2359 }
2360
2361 .crm-container .crm-tooltip-active .crm-tooltip-wrapper {
2362 display: block;
2363 }
2364
2365 .crm-container .crm-tooltip {
2366 padding: 4px;
2367 background-color: #2f2f2e;
2368 color: #fff;
2369 margin-left: 11px;
2370 min-width: 20px;
2371 min-height: 20px;
2372 }
2373 #crm-container .crm-tooltip table,
2374 #crm-container .crm-tooltip table tr td {
2375 background-color: #2f2f2e;
2376 border: none;
2377 color: #fff;
2378 word-wrap: break-word;
2379 }
2380 .crm-container .crm-tooltip .crm-summary-group {
2381 width: 700px;
2382 margin-bottom: 0;
2383 }
2384
2385 .crm-container .crm-tooltip .crm-report-overlay {
2386 width: 500px;
2387 margin-bottom: 0;
2388 }
2389
2390 .crm-container .crm-tooltip .crm-report-overlay thead td {
2391 font-weight: bold;
2392 }
2393
2394 .crm-container .crm-summary-group h2 {
2395 padding: 2px 4px 0 4px;
2396 font-size: 14px;
2397 color: #fff;
2398 margin-bottom: 0;
2399 }
2400
2401 /* crm-summary-group appears outside crm-container for contact summary icon overlay */
2402 .crm-container .crm-summary-group .crm-section .label {
2403 text-align: left;
2404 width: 40%;
2405 font-size: 11px;
2406 color: #a7a7a7;
2407 background-color: transparent;
2408 }
2409
2410 .crm-container .crm-summary-group .crm-section .content {
2411 margin-left: 41%;
2412 }
2413
2414 .crm-container .crm-tooltip table .crm-summary-col-1 {
2415 width: 350px;
2416 }
2417
2418 .crm-container .crm-tooltip table .crm-summary-col-1 div {
2419 width: auto;
2420 }
2421
2422 /* Class for tokens and helpicon */
2423 .crm-container .helpIcon {
2424 float: right;
2425 position: relative;
2426 z-index: 1;
2427 margin-right: 45px;
2428 }
2429
2430 #crm-container ul li {
2431 list-style-image: none;
2432 }
2433
2434 /* privacy icons */
2435 #crm-container div span.privacy-flag {
2436 float: right;
2437 font-size: 80%;
2438 }
2439
2440 /* specific, targeted fixes */
2441 #crm-container .dashboard-elements,
2442 #crm-container #membership-listings,
2443 #crm-container #premiums-listings,
2444 #crm-container #searchForm table {
2445 margin: 0;
2446 border-collapse: collapse;
2447 border: 0 none;
2448 }
2449
2450 /* ID selector is needed to override Drupal 2em margin-bottom on forms (we don't want to give up that space) */
2451 div#crm-container form,
2452 div.crm-container form {
2453 margin-bottom: 0;
2454 }
2455
2456 /** DATATABLES **/
2457 /*
2458 * jQuery UI specific styling
2459 */
2460
2461 .crm-container .paging_two_button .ui-button {
2462 float: left;
2463 cursor: pointer;
2464 }
2465
2466 .crm-container .paging_full_numbers .ui-button {
2467 padding: 2px 6px;
2468 margin: 0;
2469 cursor: pointer;
2470 }
2471
2472 .crm-container .dataTables_paginate .ui-button {
2473 margin-right: -0.1em !important;
2474 }
2475
2476 .crm-container .paging_full_numbers {
2477 width: 350px !important;
2478 }
2479
2480 .crm-container .dataTables_wrapper .ui-toolbar {
2481 padding: 5px;
2482 }
2483
2484 .crm-container .dataTables_paginate {
2485 width: auto;
2486 }
2487
2488 .crm-container .dataTables_info {
2489 padding-top: 3px;
2490 }
2491
2492 .crm-container div.dataTables_wrapper .ui-widget-header {
2493 font-weight: normal;
2494 }
2495
2496
2497 /*
2498 * Sort arrow icon positioning
2499 */
2500 .crm-container table.display thead th div.DataTables_sort_wrapper {
2501 position: relative;
2502 padding-right: 20px;
2503 }
2504
2505 .crm-container table.display thead th div.DataTables_sort_wrapper span {
2506 position: absolute;
2507 top: 50%;
2508 margin-top: -8px;
2509 right: 0;
2510 }
2511
2512 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2513 * DataTables features
2514 */
2515
2516 .crm-container .dataTables_wrapper {
2517 position: relative;
2518 clear: both;
2519 zoom: 1; /* Feeling sorry for IE */
2520 }
2521
2522 .crm-container .dataTables_processing {
2523 position: absolute;
2524 top: 0;
2525 left: 0;
2526 width: 100%;
2527 height: 100%;
2528 margin: 0;
2529 padding: 0;
2530 background: url("../i/loading-overlay.gif") center center no-repeat white;
2531 opacity: 0.6;
2532 cursor: wait;
2533 }
2534
2535 .crm-container .dataTables_length {
2536 width: 40%;
2537 float: none;
2538 padding-bottom: 5px;
2539 }
2540
2541 .crm-container .dataTables_filter {
2542 width: 50%;
2543 float: right;
2544 text-align: right;
2545 }
2546
2547 .crm-container .dataTables_info {
2548 width: 60%;
2549 float: left;
2550 }
2551
2552 .crm-container .dataTables_paginate {
2553 float: right;
2554 text-align: right;
2555 }
2556
2557
2558 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2559 * DataTables display
2560 */
2561 .crm-container table.display {
2562 margin: 0 auto;
2563 clear: both;
2564 width: 100%;
2565 }
2566
2567 .crm-container table.display thead th {
2568 padding: 3px 18px 3px 10px;
2569 border-bottom: 1px solid black;
2570 font-weight: bold;
2571 cursor: pointer;
2572 }
2573
2574 .crm-container table.display thead th.sorting_disabled {
2575 cursor: default;
2576 }
2577
2578 .crm-container table.display tfoot th {
2579 padding: 3px 18px 3px 10px;
2580 border-top: 1px solid black;
2581 font-weight: bold;
2582 }
2583
2584 .crm-container table.display tr.heading2 td {
2585 border-bottom: 1px solid #aaa;
2586 }
2587
2588 .crm-container table.display td {
2589 padding: 3px 10px;
2590 }
2591
2592 .crm-container table td.center {
2593 text-align: center;
2594 }
2595 /* Fix weird color added to some datatables' sort column */
2596 .crm-container table.dataTable.display tbody tr > td.sorting_1 {
2597 background-color: transparent;
2598 }
2599
2600 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2601 * Datatables misc
2602 */
2603 .crm-container .dataTables_scroll {
2604 clear: both;
2605 }
2606
2607 .crm-container .dataTables_scrollBody {
2608 *margin-top: -1px;
2609 -webkit-overflow-scrolling: touch;
2610 }
2611
2612 .crm-container .top .dataTables_info {
2613 float: none;
2614 }
2615
2616 .crm-container .dataTables_empty {
2617 text-align: center;
2618 }
2619
2620 .crm-container tfoot input {
2621 margin: 0.5em 0;
2622 width: 100%;
2623 color: #444;
2624 }
2625
2626 /* DataTables fixes */
2627 .crm-container .crm-datatable-pager-top {
2628 padding-top: 5px;
2629 padding-bottom: 25px;
2630 }
2631 .crm-container .crm-datatable-pager-bottom {
2632 padding-top: 10px;
2633 padding-bottom: 25px;
2634 }
2635 .crm-container .crm-datatable-pager-top .dataTables_length {
2636 float: left;
2637 }
2638 .crm-container .css_right {
2639 float: right;
2640 }
2641
2642 /* Date plugin */
2643 .crm-container input.dateplugin,
2644 .crm-container input.crm-form-date {
2645 width: 9em;
2646 }
2647
2648 .crm-container input.crm-placeholder-icon::placeholder {
2649 font-family: "FontAwesome";
2650 text-align: right;
2651 }
2652 .crm-container input.crm-placeholder-icon::-ms-input-placeholder {
2653 font-family: "FontAwesome";
2654 text-align: right;
2655 }
2656 .crm-container input.crm-placeholder-icon:-ms-input-placeholder {
2657 font-family: "FontAwesome";
2658 text-align: right;
2659 }
2660
2661 .crm-container div.batch-update {
2662 overflow: visible;
2663 }
2664
2665 /*chart */
2666 #chartData {
2667 overflow: auto;
2668 }
2669
2670 #crm-container .signature {
2671 width: 495px;
2672 }
2673
2674 /* editor skin tweaks */
2675
2676 #crm-container span.cke_skin_kama {
2677 border: none;
2678 }
2679 #crm-container .cke_skin_kama .cke_wrapper {
2680 background-image: none;
2681 }
2682
2683 /* skin */
2684
2685 #crm-container .crm-title {
2686 line-height: 1.1;
2687 margin-bottom: 8px;
2688 }
2689
2690 /* tables */
2691 .crm-container table {
2692 border: 1px solid #efefef;
2693 }
2694
2695 .crm-container .crm-form-block table {
2696 border: none;
2697 }
2698 .crm-container tr.even,
2699 .crm-container tr.odd,
2700 .crm-container tbody th {
2701 border-color: #fff #fff #efefef #fff;
2702 }
2703
2704 .crm-container tr.even-row td,
2705 .crm-container tr.odd-row td,
2706 .crm-container table.display td,
2707 .crm-container table.pagerDisplay td {
2708 border-color: #efefef;
2709 border-right: 1px solid #efefef;
2710 border-collapse: collapse;
2711 }
2712 .crm-container .odd-row,
2713 .crm-container .odd,
2714 tbody.scrollContent {
2715 background-color: #fafafa;
2716 }
2717 .crm-container .even-row,
2718 .crm-container .even,
2719 tbody.scrollContent tr.alternateRow {
2720 background-color: #efefef;
2721 }
2722
2723 .crm-container td.checkbox {
2724 vertical-align: middle;
2725 text-align: center;
2726 }
2727 .crm-container tr.columnheader a.sorting {
2728 color: #a7a7a7;
2729 }
2730
2731 .crm-container a.sorting,
2732 .crm-container a.sorting_desc,
2733 .crm-container a.sorting_asc {
2734 color: #a7a7a7;
2735 background: url("../bower_components/datatables/media/images/sort_both.png") no-repeat left center;
2736 padding-left: 20px;
2737 }
2738 .crm-container a.sorting_desc,
2739 .crm-container a.sorting_asc {
2740 color: #000;
2741 }
2742
2743 .crm-container tr a.sorting,
2744 .crm-container tr a.sorting_asc,
2745 .crm-container tr a.sorting_desc {
2746 color: #52534d;
2747 }
2748
2749 .crm-container table thead a.sorting_asc {
2750 background: url("../bower_components/datatables/media/images/sort_asc.png") no-repeat left center;
2751 }
2752 .crm-container table thead a.sorting_desc {
2753 background: url("../bower_components/datatables/media/images/sort_desc.png") no-repeat left center;
2754 }
2755 .crm-container table thead a.sorting_asc_disabled {
2756 background: url("../bower_components/datatables/media/images/sort_asc_disabled.png") no-repeat left center;
2757 }
2758 .crm-container table thead a.sorting_desc_disabled {
2759 background: url("../bower_components/datatables/media/images/sort_desc_disabled.png") no-repeat left center;
2760 }
2761
2762 /* Otherwise for some reason we have 2 sort icons */
2763 .crm-container th.sorting .DataTables_sort_icon {
2764 display: none;
2765 }
2766
2767
2768 /*contact summary page */
2769 #crm-container div.contact_details {
2770 background-color: transparent;
2771 }
2772
2773 .crm-container table.crm-info-panel td {
2774 border-bottom: 1px solid #fff;
2775 }
2776
2777 .crm-container table.crm-info-panel .label {
2778 color: #2f2f2f;
2779 font-weight: normal;
2780 }
2781
2782 .crm-container .disabled,
2783 .crm-container .disabled *,
2784 .crm-container .cancelled,
2785 .crm-container .cancelled td,
2786 .crm-container li.disabled a.ui-tabs-anchor,
2787 .crm-container li.crm-count-0 a.ui-tabs-anchor,
2788 .crm-container li.crm-count-0 a.ui-tabs-anchor em {
2789 color: #999999 !important;
2790 }
2791
2792 #crm-container tr.crm-job {
2793 text-decoration: none !important;
2794 }
2795
2796 .crm-container table.selector td {
2797 border-right: 1px dotted #dddddd;
2798 }
2799
2800 .crm-container div.contact_panel td,
2801 .crm-container table.crm-info-panel td {
2802 background-color: #f4f4ed;
2803 }
2804
2805 .crm-container div.contact_panel td.label,
2806 .crm-container #customFields div.contact_panel td.label,
2807 .crm-container table.crm-info-panel td.label {
2808 background-color: #fafafa;
2809 width: 120px;
2810 text-align: left;
2811 color: #7a7a60;
2812 }
2813 .crm-container table.crm-info-panel td.label {
2814 width: 150px;
2815 }
2816
2817 .crm-container .form-layout td.label,
2818 .crm-container .form-layout-compressed td.label {
2819 width: 150px;
2820 text-align: right;
2821 color: #7a7a60;
2822 }
2823
2824 .crm-container .form-layout td.label,
2825 .crm-container form table.report .label,
2826 .crm-container form table label,
2827 .crm-container form table.report label {
2828 color: #3e3e3e;
2829 }
2830
2831 .crm-container a.crm-icon-picker-button {
2832 min-width: 10em;
2833 text-align: inherit;
2834 color: #3e3e3e;
2835 }
2836
2837 .crm-container a.crm-icon-picker-button .ui-button-icon {
2838 margin: 5px 0 5px 5px;
2839 }
2840
2841 .crm-container a.crm-icon-picker-button .ui-button-text {
2842 color: #9f9f9f;
2843 }
2844
2845 .crm-container a.crm-icon-picker-button.ui-button-text-only .ui-button-text {
2846 padding: .4em .2em;
2847 }
2848
2849 /* search results */
2850 .crm-container .crm-search-tasks,
2851 .crm-container .crm-tasks {
2852 background-color: #f0f0e8;
2853 color: #52534d;
2854 }
2855
2856 #crm-container .crm-tasks table {
2857 margin: 0;
2858 }
2859
2860 .crm-container .crm-results-block {
2861 position: relative;
2862 }
2863
2864 /* warning labels and messages */
2865 .crm-container del,
2866 .crm-container .crm-is_deleted,
2867 .crm-container table.caseSelector td.status-urgent,
2868 .crm-container .font-red,
2869 .crm-container .status-removed,
2870 .crm-container .status-overdue,
2871 .crm-container .status-fatal,
2872 .crm-container .status-hold,
2873 .crm-container .status-past,
2874 .crm-contact-deceased,
2875 .crm-container .status-warning {
2876 color: #e43d2b !important;
2877 }
2878
2879 /* rounded corners */
2880 .crm-container div.status,
2881 .crm-container #help,
2882 .crm-container .help,
2883 .crm-container .ui-tabs-panel,
2884 .crm-container .crm-content-block,
2885 #full-screen-header,
2886 .crm-container .crm-pager,
2887 .crm-container form .section-hidden-border,
2888 .crm-container #search-status,
2889 .crm-container .crm-form-block,
2890 .crm-container .crm-search-tasks,
2891 .crm-container .crm-tasks,
2892 .crm-container div.form-item,
2893 .crm-container div.messages {
2894 border-radius: 4px;
2895 }
2896
2897 /* deprecated autocomplete styles */
2898
2899 .ac_results {
2900 background: transparent url(../i/dropdown-pointer.gif) no-repeat 25px 1px;
2901 padding-top: 5px;
2902 border: none;
2903 text-align: left;
2904 }
2905
2906 .ac_results-inner,
2907 .crm-participant-list-inner,
2908 .crm-event-links-list-inner,
2909 .crm-contribpage-links-list-inner,
2910 .crm-contact-actions-list-inner {
2911 background-color: #2f2f2e;
2912 padding: 4px;
2913 }
2914
2915 .crm-create-new-list-inner,
2916 .crm-create-new-list-inner ul {
2917 width: 160px!important;
2918 }
2919
2920 .ac_results li a {
2921 display: block;
2922 }
2923
2924 .crm-container .ac_results li,
2925 .crm-container .ac_results li a,
2926 .crm-container .ac_results li a:visited {
2927 color: #dfdfdf;
2928 text-decoration: none;
2929 }
2930
2931 .ac_results li strong {
2932 color: #fff;
2933 font-weight: normal;
2934 }
2935
2936 .crm-container .ac_results li .icon,
2937 .crm-container .ac_results li a .icon,
2938 .crm-container .ac_results li a:visited .icon {
2939 background-image: url(../i/icons/jquery-ui-FFFFFF.png);
2940 }
2941
2942 .crm-container .ac_results li a:hover .icon {
2943 background-image: url(../i/icons/jquery-ui-3E3E3E.png);
2944 }
2945
2946 .ac_results li:hover,
2947 .ac_results li:hover a,
2948 .ac_results li a:hover {
2949 background-color: #f5f6f1;
2950 color: #666;
2951 }
2952 .crm-container .ac_results li:hover strong {
2953 color: #000;
2954 }
2955
2956 /* loader autocomplete */
2957
2958 .crm-container .ui-autocomplete-loading {
2959 background: white url('../i/loading.gif') no-repeat right center;
2960 }
2961
2962 /* select2 */
2963 .crm-container div.select2-container {
2964 min-width: 6em;
2965 font-size: 11px;
2966 }
2967 /* Add arrow icon to multi-selects */
2968 .crm-container .select2-container-multi .select2-choices:before {
2969 background: url("../bower_components/select2/select2.png") no-repeat scroll 0 -4px;
2970 content: "";
2971 display: block;
2972 height: 15px;
2973 position: absolute;
2974 right: 0;
2975 top: 5px;
2976 width: 20px;
2977 }
2978 /* Add search icon to ajax multi-selects and opened multi-selects */
2979 .crm-container .select2-container-multi.select2-container-active .select2-choices:before,
2980 .crm-container .select2-container-multi.crm-ajax-select .select2-choices:before {
2981 background-position: right -26px;
2982 }
2983 .crm-container .select2-container.select2-container-disabled .select2-choice .select2-arrow b {
2984 visibility: hidden;
2985 }
2986 .crm-container .select2-container-multi.loading .select2-choices:before,
2987 .crm-container .select2-container.loading .select2-choice .select2-arrow b {
2988 background: url('../i/loading.gif') no-repeat center center !important;
2989 visibility: visible;
2990 }
2991 /* Reduce select2 size to match other inputs */
2992 .crm-container .select2-container-multi .select2-choices {
2993 min-height: 25px;
2994 }
2995 .crm-container .select2-container-multi .select2-choices .select2-search-choice {
2996 padding: 2px 5px 2px 18px;
2997 }
2998 .crm-container .select2-container-multi .select2-choices .select2-search-field input {
2999 padding: 4px;
3000 min-height: unset; /* Overide style imposed by WordPress 5.3 - see https://lab.civicrm.org/dev/wordpress/issues/46 */
3001 }
3002 .crm-container .select2-search-choice-close {
3003 top: 2px;
3004 }
3005 .crm-container .select2-container .select2-choice abbr {
3006 top: 6px;
3007 }
3008 .crm-container .select2-container .select2-choice > .select2-chosen {
3009 font-size: 1.1em;
3010 }
3011 /* Add search icon to ajax single-selects */
3012 .crm-container .crm-ajax-select .select2-arrow b {
3013 background-position: -39px -22px;
3014 }
3015 /* Restore normal icon when searchable field is open */
3016 .crm-container .select2-dropdown-open .select2-choice .select2-arrow b {
3017 background-position: -18px 1px;
3018 }
3019 .select2-drop .crm-entityref-links {
3020 border-top: 1px solid #d3d3d3;
3021 margin-top: 9px;
3022 }
3023 .select2-drop .crm-entityref-filters {
3024 margin-top: 4px;
3025 }
3026 .select2-drop .crm-entityref-filters select,
3027 .select2-drop .crm-entityref-filters input {
3028 border-radius: 3px;
3029 border: 1px solid #f2f2f2;
3030 background-color: #f6f6f6;
3031 color: #494949;
3032 font-size: 11px;
3033 max-width: 60%;
3034 }
3035 .select2-drop .crm-entityref-filters select:hover,
3036 .select2-drop .crm-entityref-filters select:focus,
3037 .select2-drop .crm-entityref-filters select.active,
3038 .select2-drop .crm-entityref-filters input {
3039 border: 1px solid #808080;
3040 }
3041 .select2-drop .crm-entityref-filter-value {
3042 margin-left: 1em;
3043 }
3044 .select2-drop .crm-entityref-filters input {
3045 padding-left: .5em;
3046 background-color: #fefefe;
3047 }
3048 /* Style autocomplete results */
3049 .crm-container .select2-results {
3050 font-size: 12px;
3051 padding: 0;
3052 text-align: left;
3053 }
3054 .crm-container .select2-results li,
3055 .crm-container .select2-results .crm-select2-row,
3056 .crm-container .select2-results .crm-select2-row-description p {
3057 padding: 0;
3058 margin: 0;
3059 }
3060 .crm-container .select2-results .crm-select2-row .crm-select2-row-label {
3061 font-size: 1.1em;
3062 }
3063 .crm-container .select2-results .crm-select2-row-description p {
3064 font-size: 0.8em;
3065 line-height: 1.5em;
3066 color: #696969;
3067 width: 100%;
3068 white-space: nowrap;
3069 overflow: hidden;
3070 text-overflow: ellipsis;
3071 font-weight: normal;
3072 }
3073 .crm-container .select2-results .select2-highlighted > .select2-result-label .crm-select2-row-description p {
3074 color: #f0f0f0;
3075 }
3076 .select2-container .crm-select2-row-description {
3077 display: none;
3078 }
3079 .crm-container .select2-results .crm-select2-icon {
3080 width: 20px;
3081 height: 100%;
3082 float: left;
3083 }
3084 .crm-container .select2-results .crm-select2-icon .crm-icon {
3085 width: 16px;
3086 height: 16px;
3087 margin: 0;
3088 }
3089 .crm-container .select2-results li.select2-no-results {
3090 padding-left: 4px;
3091 padding-top: 4px;
3092 margin-left: 4px;
3093 }
3094 .crm-container .select2-results li {
3095 margin: 0;
3096 padding: 0;
3097 }
3098 .crm-container .crm-action-menu .select2-default span.select2-chosen {
3099 color: #2786c2;
3100 }
3101 .crm-container .select2-container[class*=" fa-"]:before {
3102 display: none;
3103 }
3104 .crm-container .select2-results .select2-result.select2-disabled > .select2-result-label {
3105 opacity: .6;
3106 cursor: default;
3107 }
3108
3109 /* Restore this property otherwise our css overrides it */
3110 .select2-search input {
3111 box-sizing: border-box;
3112 }
3113
3114 /* Collapsible optgroups for select2 */
3115 div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children:not(.optgroup-expanded) > .select2-result-sub > li.select2-result {
3116 display: none;
3117 }
3118 div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children > .select2-result-label:before {
3119 font-family: FontAwesome;
3120 content: "\f0da";
3121 display: inline-block;
3122 padding-right: 3px;
3123 vertical-align: middle;
3124 font-weight: normal;
3125 }
3126 div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children.optgroup-expanded > .select2-result-label:before {
3127 content: "\f0d7";
3128 }
3129
3130 span.crm-select-item-color {
3131 display: inline-block;
3132 width: .8em;
3133 height: .7em;
3134 border-radius: 2px;
3135 border: 1px solid grey;
3136 }
3137
3138 /* jQuery UI styles */
3139 .crm-container .ui-progressbar-value {
3140 background-image: url("../packages/jquery/css/images/pbar-ani.gif");
3141 }
3142
3143 .crm-container.ui-dialog {
3144 box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
3145 }
3146 .crm-container.ui-dialog.ui-resizable:before {
3147 display: block;
3148 content: " ";
3149 width: 16px;
3150 height: 16px;
3151 background: url("../i/icons/jquery-ui-52534D.png") no-repeat -80px -224px;
3152 position: absolute;
3153 bottom: 0;
3154 right: 0;
3155 }
3156 .crm-container .ui-dialog-titlebar.ui-widget-header {
3157 background: #5d677b;
3158 color: #f5f6f1;
3159 }
3160 .crm-container .ui-dialog-title {
3161 background: url("../i/item_sprites.png") no-repeat scroll -79px -47px;
3162 margin-left: -5px;
3163 padding-left: 25px;
3164 }
3165 .crm-container .ui-dialog-titlebar .ui-button {
3166 background-color: transparent;
3167 background-image: none;
3168 border: 1px none;
3169 color: inherit;
3170 }
3171 .crm-container .ui-dialog-titlebar .ui-button:hover {
3172 background-color: #cdcdcd;
3173 color: #555;
3174 }
3175
3176 /* unset the styling for the li in jstree */
3177 #tagtree ul {
3178 list-style: none;
3179 margin: 0px;
3180 padding: 0px;
3181 }
3182
3183 /* table row highlightng */
3184 .crm-container .crm-row-ok {
3185 background-color: #efffe7;
3186 border-bottom: 1px solid #ccc;
3187 }
3188 .crm-container .crm-row-error {
3189 background-color: #ffecec;
3190 border-bottom: 1px solid #ccc;
3191 }
3192 .crm-container table.row-highlight tr:hover,
3193 .crm-container .crm-row-selected {
3194 background-color: #ffffcc;
3195 }
3196 .crm-container table.row-highlight tr.even-row:hover,
3197 .crm-container table.row-highlight tr.even:hover,
3198 .crm-container .even-row.crm-row-selected,
3199 .crm-container .even.crm-row-selected {
3200 background-color: #fffdb2;
3201 }
3202
3203 #crm-container .crm-socialnetwork {
3204 margin-top: 1em;
3205 }
3206
3207 #crm-container .crm-fb-tweet-buttons {
3208 width: 93%;
3209 }
3210
3211 /* Checkbox gropus */
3212 .crm-container ul.crm-checkbox-list {
3213 list-style: none;
3214 margin: 0;
3215 padding: 0;
3216 background-color: white;
3217 border: 1px solid #a5a5a5;
3218 width: 300px;
3219 max-width: 100%;
3220 max-height: 300px;
3221 overflow-y: auto;
3222 }
3223 .crm-container ul.crm-checkbox-list li {
3224 position: relative;
3225 margin: 0;
3226 padding: 0;
3227 }
3228 .crm-container ul.crm-checkbox-list li input {
3229 position: absolute;
3230 left: 5px;
3231 top: 4px;
3232 }
3233 .crm-container ul.crm-checkbox-list li label {
3234 display: block !important;
3235 padding: 2px 0 2px 22px;
3236 margin: 0;
3237 word-break: break-all;
3238 }
3239 .crm-container ul.crm-checkbox-list li:nth-child(even) label {
3240 background-color: #fafafa;
3241 }
3242 .crm-container ul.crm-checkbox-list li input:checked + label {
3243 background-color: #ffffcc;
3244 }
3245 .crm-container ul.crm-checkbox-list li:nth-child(even) input:checked + label {
3246 background-color: #fffdb2;
3247 }
3248
3249 .crm-container ul.crm-sortable-list li label {
3250 padding-left: 40px;
3251 cursor: move;
3252 }
3253 .crm-container ul.crm-sortable-list li label:after {
3254 display: block;
3255 font-family: "FontAwesome";
3256 content: "\f047";
3257 position: absolute;
3258 left: 4px;
3259 top: 2px;
3260 font-size: 10px;
3261 color: grey;
3262 }
3263 .crm-container ul.crm-sortable-list li:hover label:after {
3264 color: inherit;
3265 }
3266 .crm-container ul.crm-checkbox-list.crm-sortable-list li input {
3267 left: 23px;
3268 }
3269
3270 /* classes related to batch entry operation */
3271 .crm-container span.batch-edit,
3272 .crm-container span.batch-valid,
3273 .crm-container span.batch-invalid {
3274 padding: 2px 9px 2px 3px;
3275 margin: 2px 2px 3px 2px;
3276 cursor: pointer;
3277 background-position: -66px -114px;
3278 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
3279 }
3280
3281 .crm-container span.batch-valid {
3282 background-position: -322px -143px;
3283 }
3284
3285 .crm-container span.batch-invalid {
3286 background-position: -258px -143px;
3287 }
3288
3289 .crm-container #Entry ul#errorList {
3290 display: none;
3291 }
3292
3293 .crm-container table.batch-totals {
3294 border: 1px solid #7a7a60 !important;
3295 margin-top: 10px !important;
3296 }
3297
3298 /* grid div as table */
3299 .crm-container .crm-grid-table {
3300 display: table;
3301 border-collapse: collapse;
3302 border: 1px solid #7a7a60;
3303 background-color: #ffffff;
3304 margin: 10px 3px 10px !important;
3305 }
3306
3307 .crm-container .crm-batch-entry-table {
3308 border-right: 2px solid #7a7a60 !important;
3309 }
3310
3311 .crm-container .crm-grid-row,
3312 .crm-container .crm-grid-header {
3313 display: table-row;
3314 }
3315
3316 .crm-container .crm-grid-header {
3317 white-space: nowrap;
3318 }
3319
3320 .crm-container .crm-grid-cell {
3321 display: table-cell;
3322 border-right: 1px solid #efefef;
3323 padding: 2px;
3324 vertical-align: top;
3325 }
3326
3327 /* editable placeholder containers - share some styles with crm-editable below */
3328 .crm-container .replace-plain,
3329 .crm-container textarea,
3330 .crm-container select.crm-form-multiselect {
3331 border: 1px solid #999;
3332 }
3333
3334 .crm-container .replace-plain {
3335 cursor: pointer;
3336 background: rgba(255,255,255,0.6);
3337 min-height: 1.4em;
3338 position: relative;
3339 padding: .4em 1.5em .3em .4em;
3340 }
3341
3342 .crm-container .replace-plain p {
3343 padding: .2em 0;
3344 margin: 0;
3345 }
3346
3347 .crm-container .replace-plain:focus,
3348 .crm-container .replace-plain:hover {
3349 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3350 background: rgba(255,255,255,0.8);
3351 }
3352
3353 .crm-container .replace-plain:before {
3354 content: "\f040";
3355 position: absolute;
3356 top: .4em;
3357 right: .5em;
3358 opacity: .5;
3359 }
3360
3361 /* in place edit */
3362 .crm-container .crm-editable-enabled {
3363 padding-left: 2px;
3364 border: 2px dashed transparent;
3365 }
3366 .crm-container .crm-editable-textarea-enabled {
3367 white-space: normal;
3368 }
3369
3370 .crm-container .crm-editable-enabled:hover {
3371 border: 2px dashed #d1d1d1;
3372 cursor: pointer;
3373 }
3374
3375 .crm-container .crm-editable-enabled.crm-editable-editing:hover {
3376 border: 2px dashed transparent;
3377 cursor: auto;
3378 }
3379
3380 .crm-container span.crm-editable-textarea-enabled {
3381 width: 96%;
3382 }
3383 .crm-container span.crm-editable-enabled {
3384 display: inline-block !important;
3385 padding-right: 2px;
3386 min-height: 1em;
3387 min-width: 3em;
3388 }
3389
3390 .crm-container .crm-editable-enabled .crm-i {
3391 opacity: .5;
3392 }
3393
3394 .crm-container .replace-plain a:active:before,
3395 .crm-container .replace-plain:focus:before,
3396 .crm-container .replace-plain:hover:before,
3397 .crm-container .crm-editable-enabled:hover .crm-i {
3398 opacity: 1;
3399 }
3400
3401 .crm-container .crm-editable-saving {
3402 background: #ffffcc!important;
3403 opacity: 0.8;
3404 }
3405
3406 .crm-container h2.crm-editable-enabled input {
3407 min-height: 1.4em;
3408 }
3409 .crm-container .crm-editable-textarea-enabled textarea {
3410 min-height: 5em;
3411 }
3412
3413 .crm-editable-form {
3414 margin: 0 !important;
3415 padding: 0 !important;
3416 width: auto !important;
3417 position: relative;
3418 overflow: visible;
3419 }
3420
3421 .crm-editable-form input,
3422 .crm-editable-form textarea {
3423 margin-bottom: 0;
3424 padding-bottom: 0;
3425 }
3426
3427 .crm-editable-form button {
3428 position: absolute;
3429 bottom: -22px;
3430 left: 0;
3431 text-align: center;
3432 height: 23px;
3433 width: 32px;
3434 z-index: 1;
3435 }
3436
3437 .crm-editable-form button[type=cancel] {
3438 left: 32px;
3439 }
3440
3441 /*crm-10345*/
3442 .crm-container .field-action {
3443 word-wrap: normal;
3444 }
3445
3446 .crm-container .field-action span.btn-slide {
3447 padding-left: 0;
3448 padding-right: 11px;
3449 }
3450 /*end crm-10345*/
3451
3452 /* alter display of parent and child groups in Manage Groups selector */
3453 #crm-container .crm-group-parent td.crm-group-name {
3454 padding-left: 20px;
3455 text-indent: -20px;
3456 }
3457
3458 #crm-container .crm-group-child td.crm-group-name.level_2 {
3459 padding-left: 40px;
3460 text-indent: -20px;
3461 }
3462 #crm-container .crm-group-child td.crm-group-name.level_3 {
3463 padding-left: 60px;
3464 text-indent: -20px;
3465 }
3466 #crm-container .crm-group-name span.crm-editable-enabled {
3467 text-indent: 0;
3468 }
3469
3470 #crm-container div.crm-row-parent-name {
3471 padding: 3px 0 0 .5em;
3472 opacity: 0.75;
3473 }
3474 #crm-container td span.show-children,
3475 #crm-container td span.crm-no-children {
3476 padding-left: 20px;
3477 }
3478
3479 /* Notifications */
3480 #crm-notification-container {
3481 width: 350px;
3482 position: fixed;
3483 top: 45px;
3484 right: 15px;
3485 z-index: 999999;
3486 }
3487 #crm-notification-container div.ui-notify-message {
3488 padding: 10px;
3489 margin-bottom: 15px;
3490 color: #fff;
3491 border-radius: 8px;
3492 max-height: 600px;
3493 overflow: auto;
3494 }
3495 #crm-notification-container div.ui-notify-message h1 {
3496 font-size: 14px;
3497 margin: 0;
3498 padding: 4px;
3499 font-weight: bold;
3500 color: #fff;
3501 }
3502 #crm-notification-container div.ui-notify-message p {
3503 margin: 3px 0;
3504 padding: 0;
3505 line-height: 18px;
3506 }
3507 #crm-notification-container div.ui-notify-message:last-child {
3508 margin-bottom: 0;
3509 }
3510 #crm-notification-container div.ui-notify-message-style {
3511 background: rgba(0,0,0,0.8);
3512 box-shadow: 0 0 6px #000;
3513 }
3514 .crm-container div.ui-notify-message-style a,
3515 .crm-container div.ui-notify-message-style a:link {
3516 color: #ccd0ff;
3517 text-decoration: underline;
3518 }
3519 .crm-container div.ui-notify-message-style a:hover,
3520 .crm-container div.ui-notify-message-style a:focus {
3521 color: #b2b8ff;
3522 }
3523 .crm-container div.ui-notify-message-style .ui-button .ui-button-text {
3524 color: #2f2f2f;
3525 text-decoration: none;
3526 }
3527 #crm-notification-container .ui-notify-message .ui-notify-close {
3528 cursor: pointer;
3529 }
3530 #crm-notification-container .ui-notify-message a.ui-notify-cross {
3531 margin-top: -4px;
3532 float: right;
3533 text-decoration: none;
3534 font-size: 13px;
3535 font-weight: bold;
3536 text-shadow: 0 1px 1px #fff;
3537 padding: 2px;
3538 color: #fdfdfd;
3539 }
3540 #crm-notification-container .ui-notify-message .ui-notify-cross:hover,
3541 #crm-notification-container .ui-notify-message .ui-notify-cross:focus {
3542 color: #ffffab;
3543 }
3544 .crm-container div.ui-notify-message table,
3545 .crm-container div.ui-notify-message tbody,
3546 .crm-container div.ui-notify-message tr {
3547 border: 0 none;
3548 font-size: 11px;
3549 }
3550 .crm-container div.ui-notify-message table {
3551 margin: 10px 0;
3552 }
3553 .crm-container div.ui-notify-message td {
3554 background: rgba(255,255,255,0.1);
3555 border: 1px solid #111;
3556 font-size: 11px;
3557 color: #fff;
3558 }
3559 .crm-container div.ui-notify-message th {
3560 background: rgba(200,200,200,0.2);
3561 border: 1px solid #111;
3562 color: #eee;
3563 font-size: 11px;
3564 }
3565 .crm-container div.ui-notify-message table a.action-item {
3566 margin-right: 5px;
3567 }
3568 .crm-container div.ui-notify-message ul,
3569 .crm-container div.ui-notify-message ol {
3570 margin: 0.5em 0 1em;
3571 padding: 0 0 0 0.5em;
3572 }
3573
3574 .crm-container div.ui-notify-message div.icon,
3575 .crm-status-icon {
3576 background: transparent url("../i/message-icons.png") no-repeat 0 0;
3577 width: 24px;
3578 height: 24px;
3579 margin-right: 6px;
3580 }
3581 .crm-container div.ui-notify-message.success div.icon,
3582 .crm-status-icon.success {
3583 background-position: -24px 0;
3584 }
3585 .crm-container div.ui-notify-message.info div.icon,
3586 .crm-status-icon.info {
3587 background-position: -48px 0;
3588 }
3589 .crm-container div.ui-notify-message.error div.icon,
3590 .crm-status-icon.error {
3591 background-position: -72px 0;
3592 }
3593 .crm-container div.ui-notify-message.none div.icon {
3594 display: none;
3595 }
3596
3597 span.crm-status-icon {
3598 display: inline-block;
3599 }
3600
3601 /* Public Pages */
3602
3603 #crm-container.crm-public input[type="text"],
3604 #crm-container.crm-public input[type="password"],
3605 #crm-container.crm-public input[type="email"],
3606 #crm-container.crm-public select {
3607 font-size: 15px;
3608 padding: 5px;
3609 border-radius: 3px;
3610 vertical-align: middle;
3611 max-width: 100%;
3612 }
3613
3614 #crm-container.crm-public .label,
3615 #crm-container.crm-public .price-field-amount {
3616 padding-top: 6px;
3617 font-size: 15px;
3618 }
3619
3620 .crm-container.crm-public .select2-container,
3621 .crm-container.crm-public .select2-results {
3622 font-size: 14px;
3623 }
3624 .crm-container.crm-public .select2-container * {
3625 box-sizing: content-box;
3626 }
3627 .crm-container.crm-public .select2-container .select2-choice {
3628 padding: 5px 5px 5px 8px;
3629 }
3630 .crm-container.crm-public .select2-container-multi .select2-choices {
3631 padding: 4px;
3632 }
3633 .crm-public .select2-container .select2-choice .select2-arrow {
3634 width: 20px;
3635 }
3636 .crm-public .select2-container .select2-choice .select2-arrow b {
3637 position: relative;
3638 top: 2px;
3639 left: 2px;
3640 }
3641 .crm-container.crm-public .select2-container-multi .select2-choices .select2-search-choice {
3642 padding: 3px 3px 3px 20px;
3643 }
3644 .crm-container.crm-public .select2-container-multi .select2-choices:before {
3645 top: 9px;
3646 }
3647
3648 .crm-public .crm-profile-view .content {
3649 padding-top: 6px;
3650 }
3651
3652 #crm-container.crm-public .calc-value,
3653 #crm-container.crm-public .content {
3654 padding-top: 6px;
3655 font-size: 15px;
3656 }
3657
3658 #crm-container.crm-public .crm-section,
3659 .crm-section {
3660 margin-bottom: 0;
3661 }
3662
3663 #crm-container.crm-public #crm-submit-buttons {
3664 margin-top: 30px;
3665 }
3666
3667 #crm-container.crm-public #premiums-listings {
3668 margin-top: 10px;
3669 min-width: 450px;
3670 width: 60%;
3671 }
3672
3673 #crm-container.crm-public #premiums-listings .premium {
3674 margin: 5px 0;
3675 }
3676
3677 #crm-container.crm-public #premiums-listings .premium .premium-short {
3678 padding: 10px;
3679 border: 2px solid #ffffff;
3680 background-color: #f0f0f0;
3681 cursor: pointer;
3682 }
3683
3684 #crm-container.crm-public #premiums-listings .premium .premium-short:hover {
3685 border: 2px solid #b0b0b0;
3686 }
3687
3688 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail {
3689 float: left;
3690 width: 50px;
3691 }
3692
3693 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail img {
3694 width: 50px;
3695 }
3696
3697 #crm-container.crm-public #premiums-listings .premium .premium-short-content {
3698 text-align: center;
3699 font-size: 20px;
3700 font-weight: bold;
3701 padding: 20px;
3702 }
3703
3704 #crm-container.crm-public #premiums-listings .premium .premium-full {
3705 display: none;
3706 padding: 5px;
3707 border: 2px solid #cfcfcf;
3708 background-color: #ffffff;
3709 }
3710
3711 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image {
3712 float: left;
3713 width: 200px;
3714 padding: 10px;
3715 }
3716
3717 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image img {
3718 width: 200px;
3719 }
3720
3721 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-title {
3722 text-align: center;
3723 font-size: 1.5em;
3724 font-weight: bold;
3725 padding: 20px;
3726 }
3727
3728 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-min {
3729 font-size: .9em;
3730 font-style: italic;
3731 }
3732
3733 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-short {
3734 text-align: center;
3735 font-size: 1.3em;
3736 padding: 10px;
3737 }
3738
3739 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-full {
3740 text-align: center;
3741 font-size: 1.3em;
3742 font-weight: bold;
3743 padding: 10px;
3744 }
3745
3746 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-short,
3747 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-image,
3748 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-title,
3749 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-description,
3750 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-options,
3751 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-min {
3752 opacity: 0.5;
3753 }
3754 #crm-container.crm-public #premiums-listings .premium .premium-full-disabled {
3755 display: none;
3756 }
3757 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full-disabled {
3758 display: block;
3759 color: #ff0000;
3760 text-align: center;
3761 font-weight: bold;
3762 margin-bottom: .5em;
3763 }
3764
3765 #crm-container.crm-public .price-set-row {
3766 font-size: 15px;
3767 margin-bottom: 5px;
3768 }
3769
3770 #crm-container.crm-public .price-set-row input,
3771 #crm-container.crm-public .price-set-row label {
3772 vertical-align: middle;
3773 cursor: pointer;
3774 }
3775
3776 #crm-container.crm-public .price-set-row .crm-price-amount-amount {
3777 min-width: 2em;
3778 color: #333333;
3779 }
3780
3781 #crm-container.crm-public .price-set-row .crm-price-amount-label {
3782 color: #444444;
3783 font-weight: bold;
3784 }
3785
3786 #crm-container.crm-public .price-set-row .highlight label {
3787 color: #000000;
3788 font-weight: bold;
3789 }
3790
3791 #crm-container.crm-public .price-set-row .highlight .crm-price-amount-label {
3792 color: #222222;
3793 }
3794
3795 #crm-container.crm-public .price-set-option-content > tt {
3796 display: none;
3797 }
3798
3799 #crm-container .sold-out-option,
3800 #crm-container .price-set-row span.sold-out-option .crm-price-amount-label,
3801 #crm-container .price-set-row span.sold-out-option .crm-price-amount-amount {
3802 font-style: italic !important;
3803 font-weight: normal !important;
3804 font-size: 15px;
3805 color: #666 !important;
3806 }
3807
3808 /* Styles for credit card payment logos */
3809 .crm-container .credit_card_type-section .crm-credit_card_type-icons a {
3810 display: block;
3811 float: left;
3812 width: 50px;
3813 height: 30px;
3814 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3815 text-indent: -20000px;
3816 margin-right: 10px;
3817 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
3818 border-radius: 3px;
3819 border: 1px solid #ffffff;
3820 }
3821
3822 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-visa {
3823 background-position: -50px 0;
3824 }
3825
3826 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-mastercard {
3827 background-position: -100px 0;
3828 }
3829
3830 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-amex {
3831 background-position: -150px 0;
3832 }
3833
3834 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-discover {
3835 background-position: -200px 0;
3836 }
3837
3838 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-jcb {
3839 background-position: -250px 0;
3840 }
3841
3842 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-unionpay {
3843 background-position: -300px 0;
3844 }
3845
3846 .crm-container .cvv2-icon {
3847 display: inline-block;
3848 width: 50px;
3849 height: 30px;
3850 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3851 }
3852
3853 /* Avoid weird border around the images (some themes will add a border around images) */
3854 #crm-container .credit_card_type-section .crm-credit_card_type-icons a,
3855 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:link,
3856 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:hover,
3857 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:focus,
3858 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:active {
3859 color: #fff;
3860 }
3861
3862 .crm-container .strikethrough {
3863 text-decoration: line-through !important;
3864 }
3865
3866 .crm-container input.ng-invalid.ng-dirty,
3867 .crm-container select.ng-invalid.ng-dirty,
3868 .crm-container textarea.ng-invalid.ng-dirty {
3869 border: 1px solid red;
3870 }
3871 .crm-container input.ng-valid,
3872 .crm-container input.ng-pristine,
3873 .crm-container textarea.ng-valid,
3874 .crm-container textarea.ng-pristine,
3875 .crm-container select.ng-valid,
3876 .crm-container select.ng-pristine {
3877 border: 1px solid #666;
3878 }
3879
3880 /* block-ui */
3881 .crm-container .blockUI.blockOverlay {
3882 background: url("../i/loading-overlay.gif") center center no-repeat white !important;
3883 }
3884
3885 .crm-container table.mergecontact thead th {
3886 width: 30%;
3887 }
3888 .crm-container .crm-ui-datetime.ng-dirty input.incomplete {
3889 border: 1px solid red;
3890 }
3891
3892 .crm-container .crm-grip {
3893 cursor: move;
3894 }
3895
3896 .crm-tag-item {
3897 display: inline-block;
3898 padding: 1px 5px;
3899 border-radius: 3px;
3900 border: 1px solid grey;
3901 }
3902
3903 /* search kit grid layout styling */
3904 .crm-search-display-grid-container {
3905 display: grid;
3906 grid-gap: 1em;
3907 align-items: center;
3908 justify-items: center;
3909 }
3910
3911 .crm-search-display-grid-layout-2 {
3912 grid-template-columns: repeat(2, 1fr);
3913 }
3914
3915 .crm-search-display-grid-layout-3 {
3916 grid-template-columns: repeat(3, 1fr);
3917 }
3918
3919 .crm-search-display-grid-layout-4 {
3920 grid-template-columns: repeat(4, 1fr);
3921 }
3922
3923 .crm-search-display-grid-layout-5 {
3924 grid-template-columns: repeat(5, 1fr);
3925 }