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