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