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