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