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