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