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