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