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