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