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