CRM-16415 Wrenches, undos, and go-backs
[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-i.crm-i-red {
2241 color: #8A1F11;
2242 }
2243
2244 .crm-i.crm-i-blue {
2245 color: #6177D5;
2246 }
2247
2248 .crm-i-button>.crm-i {
2249 padding-left: 2px;
2250 }
2251
2252 .crm-container .ui-dialog-titlebar .ui-button .ui-icon[class*=" fa-"] {
2253 background: none repeat scroll 0 0 transparent !important;
2254 color: #F5F6F1;
2255 }
2256
2257 .crm-container .ui-dialog-titlebar .ui-button .ui-icon[class*=" fa-"]:hover {
2258
2259 }
2260
2261 .crm-container .crm-button.crm-i-button input[type="button"],
2262 .crm-container .crm-button.crm-i-button input.crm-form-submit {
2263 padding-left: 0;
2264 }
2265
2266 .crm-container .inform-icon {
2267 background-position: -16px -144px;
2268 margin-right: 5px;
2269 }
2270
2271 /* Same as fa-question-circle, plus coloring */
2272 .crm-container a.helpicon {
2273 display: inline-block;
2274 color: #F5F6F1;
2275 font: normal normal normal 14px/1 FontAwesome;
2276 font-size: inherit;
2277 opacity: .7;
2278 text-rendering: auto;
2279 -webkit-font-smoothing: antialiased;
2280 -moz-osx-font-smoothing: grayscale;
2281 }
2282
2283 .crm-container a.helpicon:hover,
2284 .crm-container a.helpicon:focus {
2285 opacity: 1;
2286 }
2287
2288 .crm-container a.helpicon:before {
2289 content: "\f059";
2290 }
2291
2292 /* These .crm-icon classes use item_sprites.png */
2293
2294 .crm-container .crm-icon {
2295 background-image: url('../i/item_sprites.png');
2296 margin: 2px 4px 0 0;
2297 text-indent: -10000px;
2298 /* for accessibility reason, put the name of the type/subtype in the icon div (it will be hidden and replaced by the icon) */
2299 }
2300
2301 .select2-results .select2-highlighted .Individual-icon,
2302 .crm-container .Individual-icon {
2303 background-position: 0 0;
2304 }
2305 .select2-results .select2-highlighted .Organization-icon,
2306 .crm-container .Organization-icon {
2307 background-position: -48px 0;
2308 }
2309 .select2-results .select2-highlighted .Household-icon,
2310 .crm-container .Household-icon {
2311 background-position: -32px 0;
2312 }
2313 .crm-container .Group-icon {
2314 background-position: -16px 0;
2315 }
2316 .select2-results .Individual-icon,
2317 .crm-container .Individual-subtype-icon {
2318 background-position: 0 -48px;
2319 }
2320 .select2-results .Household-icon,
2321 .crm-container .Household-subtype-icon {
2322 background-position: -32px -48px;
2323 }
2324 .select2-results .Organization-icon,
2325 .crm-container .Organization-subtype-icon {
2326 background-position: -48px -48px;
2327 }
2328
2329 .crm-container .Activity-icon {
2330 background-position: -64px 0;
2331 }
2332 .crm-container .Case-icon {
2333 background-position: -80px 0;
2334 }
2335 .crm-container .Grant-icon {
2336 background-position: 0 -16px;
2337 }
2338 .crm-container .Contribution-icon {
2339 background-position: -16px -16px;
2340 }
2341 .crm-container .Pledge-icon {
2342 background-position: -16px -16px;
2343 }
2344 .crm-container .Membership-icon {
2345 background-position: -32px -16px;
2346 }
2347 .crm-container .Participant-icon {
2348 background-position: 0 -32px;
2349 }
2350 .crm-container .Note-icon {
2351 background-position: -16px -32px;
2352 }
2353 .crm-container .Relationship-icon {
2354 background-position: -32px -32px;
2355 }
2356
2357 /* accordion styles */
2358
2359 .crm-container .crm-accordion-header {
2360 background-image: url("../i/TreeMinusWhite.gif");
2361 background-repeat: no-repeat;
2362 background-position: 2px center;
2363 cursor: pointer;
2364 color: #F5F6F1;
2365 font-weight: normal;
2366 padding: 4px 8px 4px 20px;
2367 background-color: #5D677B;
2368 }
2369
2370 .crm-container .crm-accordion-header:hover {
2371 background-color: #32414f;
2372 }
2373
2374 .crm-container .collapsed .crm-accordion-header {
2375 background-image: url("../i/TreePlusWhite.gif");
2376 }
2377
2378 .crm-container .collapsed .crm-accordion-body,
2379 .crm-container .crm-collapsible.collapsed .collapsible-title + * {
2380 display: none;
2381 }
2382
2383 .crm-container .crm-accordion-inner .crm-accordion-header,
2384 .crm-container .crm-accordion-wrapper .crm-master-accordion-header,
2385 .crm-container .crm-collapsible .collapsible-title {
2386 background-image: url("../i/TreeMinus.gif");
2387 background-color: transparent;
2388 color: #3E3E3E;
2389 }
2390
2391 .crm-container .crm-accordion-inner.collapsed .crm-accordion-header,
2392 .crm-container .crm-accordion-wrapper.collapsed .crm-master-accordion-header,
2393 .crm-container .crm-collapsible.collapsed .collapsible-title {
2394 background-image: url("../i/TreePlus.gif");
2395 }
2396
2397 .crm-container .crm-accordion-wrapper .crm-master-accordion-header {
2398 background-color: transparent;
2399 font-size: 16px;
2400 color: #3e3e3e;
2401 margin-bottom: 0;
2402 }
2403
2404 .crm-container .crm-accordion-inner .crm-accordion-header {
2405 font-size: 13px;
2406 }
2407
2408 .crm-container .crm-accordion-wrapper {
2409 margin-bottom: 4px;
2410 }
2411
2412 .crm-container .crm-accordion-header {
2413 border-radius: 4px 4px 0 0;
2414 }
2415
2416 .crm-container .collapsed .crm-accordion-header {
2417 border-radius: 4px;
2418 }
2419
2420 .crm-container .crm-accordion-body {
2421 border-radius: 0 0 4px 4px;
2422 border: 1px solid #70716B;
2423 border-top: 0;
2424 padding: 4px 0;
2425 }
2426
2427 .crm-container .crm-collapsible .collapsible-title {
2428 padding-left: 19px;
2429 text-decoration: none;
2430 background-repeat: no-repeat;
2431 background-position: 0 center;
2432 cursor: pointer;
2433 }
2434
2435 .crm-container .crm-master-accordion-header+.crm-accordion-body {
2436 border: none;
2437 padding: 0;
2438 }
2439
2440 .crm-container .crm-accordion-header.active {
2441 font-weight: bold;
2442 background-color: #41477E;
2443 }
2444
2445 .crm-container .crm-accordion-header.active:hover {
2446 background-color: #2E3471;
2447 }
2448
2449 .crm-container .crm-master-accordion-header.crm-accordion-header:hover,
2450 .crm-container .crm-collapsible .collapsible-title:hover {
2451 background-color: transparent;
2452 color: #0200A0;
2453 }
2454
2455 /* civicrm admin menu */
2456 #civicrm-menu .ui-autocomplete-input,
2457 .crm-container .ui-autocomplete-input {
2458 background: white url("../bower_components/select2/select2.png") no-repeat scroll right -23px;
2459 padding-right: 16px;
2460 /* so that text doesn't flow on top of icon */
2461 }
2462
2463 #civicrm-menu #crm-qsearch {
2464 padding: 1px 3px 1px 2px;
2465 background-color: #000 !important;
2466 }
2467
2468 #civicrm-menu #crm-qsearch input {
2469 background-color: #eaeaea;
2470 border: 1px solid black;
2471 margin: 0;
2472 padding: 2px 16px 3px 2px;
2473 height: 16px;
2474 }
2475 #civicrm-menu #crm-qsearch input:hover,
2476 #civicrm-menu #crm-qsearch input:focus,
2477 #civicrm-menu #crm-qsearch.activetarget input {
2478 background-color: #ffffff;
2479 }
2480 /* This ensures the drop-down menus appear at the right height */
2481 #civicrm-menu > li.menumain {
2482 height: 19px !important;
2483 }
2484
2485 /* Status message box */
2486 .crm-status-box-outer {
2487 position: fixed;
2488 z-index: 99999;
2489 right: 0;
2490 top: 0;
2491 }
2492
2493 .crm-status-box-outer.status-start {
2494 background: #F8FF03 url("../bower_components/jquery-ui/themes/smoothness/images/animated-overlay.gif");
2495 }
2496
2497 .crm-status-box-outer .crm-status-box-inner {
2498 padding: 3px 14px;
2499 font-size: 13px !important;
2500 color: #eee;
2501 font-weight: bold;
2502 text-align: center;
2503 background: rgba(94, 91, 31, 0.9);
2504 }
2505
2506 .crm-status-box-outer.status-success .crm-status-box-inner {
2507 background: rgba(30, 143, 36, 0.7);
2508 }
2509
2510 .crm-status-box-outer.status-error .crm-status-box-inner {
2511 background: rgba(255, 7, 0, 0.7);
2512 }
2513
2514 .crm-container .crm-summary-link {
2515 position: relative;
2516 z-index: 16;
2517 }
2518
2519 .crm-container .crm-tooltip-wrapper {
2520 position: absolute;
2521 bottom: 0;
2522 left: -36px;
2523 overflow: hidden;
2524 z-index: 1000;
2525 padding-bottom: 10px;
2526 background: transparent url('../i/overlay-pointer.png') no-repeat bottom left;
2527 font-size: 13px;
2528 display: none;
2529 }
2530
2531 .crm-container .crm-tooltip-down .crm-tooltip-wrapper {
2532 top: 20px;
2533 padding-top: 10px;
2534 background: transparent url('../i/overlay-pointer.png') no-repeat top left;
2535 overflow: visible;
2536 }
2537
2538 .crm-container .crm-tooltip-active {
2539 z-index: 20;
2540 }
2541
2542 .crm-container .crm-tooltip-active .crm-tooltip-wrapper {
2543 display: block;
2544 }
2545
2546 .crm-container .crm-tooltip {
2547 padding: 4px;
2548 background-color: #2f2f2e;
2549 color: #FFF;
2550 margin-left: 11px;
2551 min-width: 20px;
2552 min-height: 20px;
2553 }
2554 #crm-container .crm-tooltip table,
2555 #crm-container .crm-tooltip table tr td {
2556 background-color: #2f2f2e;
2557 border: none;
2558 color: #FFF;
2559 word-wrap: break-word;
2560 }
2561 .crm-container .crm-tooltip .crm-summary-group {
2562 width: 700px;
2563 margin-bottom: 0;
2564 }
2565
2566 .crm-container .crm-tooltip .crm-report-overlay {
2567 width: 500px;
2568 margin-bottom: 0;
2569 }
2570
2571 .crm-container .crm-tooltip .crm-report-overlay thead td {
2572 font-weight: bold;
2573 }
2574
2575 .crm-container .crm-summary-group h2 {
2576 padding: 2px 4px 0 4px;
2577 font-size: 14px;
2578 color: #FFF;
2579 margin-bottom: 0;
2580 }
2581
2582 /* crm-summary-group appears outside crm-container for contact summary icon overlay */
2583 #crm-container .crm-summary-group .crm-section .label,
2584 .crm-container .crm-summary-group .crm-section .label {
2585 text-align: left;
2586 width: 40%;
2587 font-size: 11px;
2588 color: #A7A7A7;
2589 }
2590
2591 #crm-container .crm-summary-group .crm-section .content,
2592 .crm-container .crm-summary-group .crm-section .content {
2593 margin-left: 41%;
2594 }
2595
2596 #crm-container .crm-tooltip table .crm-summary-col-1,
2597 .crm-container .crm-tooltip table .crm-summary-col-1 {
2598 width: 350px;
2599 }
2600
2601 #crm-container .crm-tooltip table .crm-summary-col-1 div,
2602 .crm-container .crm-tooltip table .crm-summary-col-1 div {
2603 width: auto;
2604 }
2605
2606 /* Class for tokens and helpicon */
2607 .crm-container .helpIcon {
2608 float: right;
2609 position: relative;
2610 z-index: 1;
2611 margin-right: 45px;
2612 }
2613
2614 #crm-container ul li {
2615 list-style-image: none;
2616 }
2617
2618 /* privacy icons */
2619 #crm-container div span.privacy-flag {
2620 background-repeat: no-repeat;
2621 background-image: url("../i/stop-icon.png");
2622 float: right;
2623 }
2624
2625 /* specific, targeted fixes */
2626 #crm-container .dashboard-elements,
2627 #crm-container #membership-listings,
2628 #crm-container #premiums-listings,
2629 #crm-container #searchForm table {
2630 margin: 0;
2631 border-collapse: collapse;
2632 border: 0 none;
2633 }
2634
2635 /* ID selector is needed to override Drupal 2em margin-bottom on forms (we don't want to give up that space) */
2636 div#crm-container form,
2637 div.crm-container form {
2638 margin-bottom: 0;
2639 }
2640
2641 /** DATATABLES **/
2642 /*
2643 * jQuery UI specific styling
2644 */
2645
2646 .crm-container .paging_two_button .ui-button {
2647 float: left;
2648 cursor: pointer;
2649 }
2650
2651 .crm-container .paging_full_numbers .ui-button {
2652 padding: 2px 6px;
2653 margin: 0;
2654 cursor: pointer;
2655 }
2656
2657 .crm-container .dataTables_paginate .ui-button {
2658 margin-right: -0.1em !important;
2659 }
2660
2661 .crm-container .paging_full_numbers {
2662 width: 350px !important;
2663 }
2664
2665 .crm-container .dataTables_wrapper .ui-toolbar {
2666 padding: 5px;
2667 }
2668
2669 .crm-container .dataTables_paginate {
2670 width: auto;
2671 }
2672
2673 .crm-container .dataTables_info {
2674 padding-top: 3px;
2675 }
2676
2677 .crm-container div.dataTables_wrapper .ui-widget-header {
2678 font-weight: normal;
2679 }
2680
2681
2682 /*
2683 * Sort arrow icon positioning
2684 */
2685 .crm-container table.display thead th div.DataTables_sort_wrapper {
2686 position: relative;
2687 padding-right: 20px;
2688 }
2689
2690 .crm-container table.display thead th div.DataTables_sort_wrapper span {
2691 position: absolute;
2692 top: 50%;
2693 margin-top: -8px;
2694 right: 0;
2695 }
2696
2697 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2698 * DataTables features
2699 */
2700
2701 .crm-container .dataTables_wrapper {
2702 position: relative;
2703 clear: both;
2704 zoom: 1; /* Feeling sorry for IE */
2705 }
2706
2707 .crm-container .dataTables_processing {
2708 position: absolute;
2709 top: 0;
2710 left: 0;
2711 width: 100%;
2712 height: 100%;
2713 margin: 0;
2714 padding: 0;
2715 background: url("../i/loading-overlay.gif") center center no-repeat white;
2716 opacity: 0.6;
2717 cursor: wait;
2718 }
2719
2720 .crm-container .dataTables_length {
2721 width: 40%;
2722 float: none;
2723 padding-bottom: 5px;
2724 }
2725
2726 .crm-container .dataTables_filter {
2727 width: 50%;
2728 float: right;
2729 text-align: right;
2730 }
2731
2732 .crm-container .dataTables_info {
2733 width: 60%;
2734 float: left;
2735 }
2736
2737 .crm-container .dataTables_paginate {
2738 float: right;
2739 text-align: right;
2740 }
2741
2742
2743 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2744 * DataTables display
2745 */
2746 .crm-container table.display {
2747 margin: 0 auto;
2748 clear: both;
2749 width: 100%;
2750 }
2751
2752 .crm-container table.display thead th {
2753 padding: 3px 18px 3px 10px;
2754 border-bottom: 1px solid black;
2755 font-weight: bold;
2756 cursor: pointer;
2757 }
2758
2759 .crm-container table.display thead th.sorting_disabled {
2760 cursor: default;
2761 }
2762
2763 .crm-container table.display tfoot th {
2764 padding: 3px 18px 3px 10px;
2765 border-top: 1px solid black;
2766 font-weight: bold;
2767 }
2768
2769 .crm-container table.display tr.heading2 td {
2770 border-bottom: 1px solid #aaa;
2771 }
2772
2773 .crm-container table.display td {
2774 padding: 3px 10px;
2775 }
2776
2777 .crm-container table td.center {
2778 text-align: center;
2779 }
2780 /* Fix weird color added to some datatables' sort column */
2781 .crm-container table.dataTable.display tbody tr > td.sorting_1 {
2782 background-color: transparent;
2783 }
2784
2785 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2786 * Datatables misc
2787 */
2788 .crm-container .dataTables_scroll {
2789 clear: both;
2790 }
2791
2792 .crm-container .dataTables_scrollBody {
2793 *margin-top: -1px;
2794 -webkit-overflow-scrolling: touch;
2795 }
2796
2797 .crm-container .top .dataTables_info {
2798 float: none;
2799 }
2800
2801 .crm-container .dataTables_empty {
2802 text-align: center;
2803 }
2804
2805 .crm-container tfoot input {
2806 margin: 0.5em 0;
2807 width: 100%;
2808 color: #444;
2809 }
2810
2811 /* DataTables fixes */
2812 .crm-container .crm-datatable-pager-top {
2813 padding-top: 5px;
2814 padding-bottom: 25px;
2815 }
2816 .crm-container .crm-datatable-pager-bottom {
2817 padding-top: 10px;
2818 padding-bottom: 25px;
2819 }
2820 .crm-container .crm-datatable-pager-top .dataTables_length {
2821 float: left;
2822 }
2823 .crm-container .css_right {
2824 float: right;
2825 }
2826
2827 /* Date plugin */
2828 .crm-container input.dateplugin,
2829 .crm-container input.crm-form-date {
2830 background: white url(../i/cal.gif) no-repeat scroll right center;
2831 padding-right: 16px;
2832 /* so that text doesn't flow on top of icon */
2833 width: 9em;
2834 }
2835
2836 .crm-container div.batch-update {
2837 overflow: visible;
2838 }
2839
2840 /*chart */
2841 #chartData {
2842 overflow: auto;
2843 }
2844
2845 #crm-container .signature {
2846 width: 495px;
2847 }
2848
2849 /* editor skin tweaks */
2850
2851 #crm-container span.cke_skin_kama {
2852 border: none;
2853 }
2854 #crm-container .cke_skin_kama .cke_wrapper {
2855 background-image: none;
2856 }
2857
2858 /* skin */
2859
2860 #crm-container .crm-title {
2861 line-height: 1.1;
2862 margin-bottom: 8px;
2863 }
2864
2865 /* tables */
2866 .crm-container table {
2867 border: 1px solid #efefef;
2868 }
2869
2870 .crm-container .crm-form-block table {
2871 border: none;
2872 }
2873 .crm-container tr.even,
2874 .crm-container tr.odd,
2875 .crm-container tbody th {
2876 border-color: #FFF #FFF #efefef #FFF;
2877 }
2878
2879 .crm-container tr.even-row td,
2880 .crm-container tr.odd-row td,
2881 .crm-container table.display td,
2882 .crm-container table.pagerDisplay td {
2883 border-color: #efefef;
2884 border-right: 1px solid #efefef;
2885 border-collapse: collapse;
2886 }
2887 .crm-container .odd-row,
2888 .crm-container .odd,
2889 tbody.scrollContent {
2890 background-color: #FAFAFA;
2891 }
2892 .crm-container .even-row,
2893 .crm-container .even,
2894 tbody.scrollContent tr.alternateRow {
2895 background-color: #EFEFEF;
2896 }
2897
2898 .crm-container td.checkbox {
2899 vertical-align: middle;
2900 text-align: center;
2901 }
2902 .crm-container tr.columnheader a.sorting {
2903 color: #a7a7a7;
2904 }
2905
2906 .crm-container a.sorting,
2907 .crm-container a.sorting_desc,
2908 .crm-container a.sorting_asc {
2909 color: #A7A7A7;
2910 background: url("../packages/jquery/plugins/DataTables/media/images/sort_both.png") no-repeat left center;
2911 padding-left: 20px;
2912 }
2913 .crm-container a.sorting_desc,
2914 .crm-container a.sorting_asc {
2915 color: #000;
2916 }
2917
2918 .crm-container tr a.sorting,
2919 .crm-container tr a.sorting_asc,
2920 .crm-container tr a.sorting_desc {
2921 color: #52534D;
2922 }
2923
2924 .crm-container table thead a.sorting_asc {
2925 background: url("../packages/jquery/plugins/DataTables/media/images/sort_asc.png") no-repeat left center;
2926 }
2927 .crm-container table thead a.sorting_desc {
2928 background: url("../packages/jquery/plugins/DataTables/media/images/sort_desc.png") no-repeat left center;
2929 }
2930 .crm-container table thead a.sorting_asc_disabled {
2931 background: url("../packages/jquery/plugins/DataTables/media/images/sort_asc_disabled.png") no-repeat left center;
2932 }
2933 .crm-container table thead a.sorting_desc_disabled {
2934 background: url("../packages/jquery/plugins/DataTables/media/images/sort_desc_disabled.png") no-repeat left center;
2935 }
2936
2937 /* Otherwise for some reason we have 2 sort icons */
2938 .crm-container th.sorting .DataTables_sort_icon {
2939 display: none;
2940 }
2941
2942
2943 /*contact summary page */
2944 #crm-container div.contact_details {
2945 background-color: transparent;
2946 }
2947
2948 .crm-container table.crm-info-panel td {
2949 border-bottom: 1px solid #FFF;
2950 }
2951
2952 #crm-container div.contactCardLeft .label,
2953 #crm-container div.contactCardRight .label,
2954 .crm-container table.crm-info-panel .label {
2955 color: #2f2f2f;
2956 font-weight: normal;
2957 }
2958
2959 .crm-container .disabled,
2960 .crm-container .cancelled,
2961 #mainTabContainer li.disabled a.ui-tabs-anchor,
2962 #mainTabContainer li.crm-count-0 a.ui-tabs-anchor,
2963 #mainTabContainer li.crm-count-0 a.ui-tabs-anchor em {
2964 color: #999999 !important;
2965 }
2966 #mainTabContainer li.disabled {
2967 text-decoration: none;
2968 }
2969 #crm-container tr.crm-job {
2970 text-decoration: none !important;
2971 }
2972
2973 .crm-container table.selector td {
2974 border-right: 1px dotted #DDDDDD;
2975 }
2976
2977 .crm-container div.contact_panel td,
2978 .crm-container table.crm-info-panel td {
2979 background-color: #f4f4ed;
2980 }
2981
2982 .crm-container div.contact_panel td.label,
2983 .crm-container #customFields div.contact_panel td.label,
2984 .crm-container table.crm-info-panel td.label {
2985 background-color: #fafafa;
2986 width: 120px;
2987 text-align: left;
2988 color: #7a7a60;
2989 }
2990 .crm-container table.crm-info-panel td.label {
2991 width: 150px;
2992 }
2993
2994 .crm-container .form-layout td.label,
2995 .crm-container .form-layout-compressed td.label {
2996 width: 150px;
2997 text-align: right;
2998 color: #7a7a60;
2999 }
3000
3001 .crm-container .form-layout td.label,
3002 .crm-container form table.report .label,
3003 .crm-container form table label,
3004 .crm-container form table.report label {
3005 color: #3e3e3e;
3006 }
3007
3008 .crm-container div.contact_panel td.grouplabel {
3009 border-bottom: 2px solid #D7D7D0 !important;
3010 }
3011
3012 #tagGroup table .label {
3013 color: #FFF;
3014 }
3015 #tagGroup table {
3016 color: #000;
3017 }
3018
3019
3020 /* search results */
3021 .crm-container .crm-search-tasks,
3022 .crm-container .crm-tasks {
3023 background-color: #F0F0E8;
3024 color: #52534D;
3025 }
3026
3027 #crm-container .crm-tasks table {
3028 margin: 0;
3029 }
3030
3031 .crm-container .crm-results-block {
3032 position: relative;
3033 }
3034
3035 /* warning labels and messages */
3036 .crm-container del,
3037 .crm-container .crm-is_deleted,
3038 .crm-container table.caseSelector td.status-urgent,
3039 .crm-container .font-red,
3040 .crm-container .status-removed,
3041 .crm-container .status-overdue,
3042 .crm-container .status-fatal,
3043 .crm-container .status-hold,
3044 .crm-container .status-past,
3045 .crm-contact-deceased,
3046 .crm-container .status-warning {
3047 color: #E43D2B !important;
3048 }
3049
3050 /* rounded corners */
3051 .crm-container .crm-button,
3052 .crm-container a.button,
3053 .crm-container a.crm-invoiceButton,
3054 .crm-container a.crm-invoiceButton:link,
3055 .crm-container a.button:link,
3056 .crm-container input.crm-form-submit,
3057 .crm-container input[type=button] {
3058 border-radius: 3px;
3059 }
3060
3061
3062 .crm-container div.status,
3063 div.m ul#civicrm-menu,
3064 .crm-container #help,
3065 .crm-container .help,
3066 .crm-container .ui-tabs-panel,
3067 .crm-container .crm-content-block,
3068 #full-screen-header,
3069 .crm-container .crm-pager,
3070 .crm-container form .section-hidden-border,
3071 .crm-container #search-status,
3072 .crm-container .crm-form-block,
3073 .crm-container .crm-search-tasks,
3074 .crm-container .crm-tasks,
3075 .crm-container div.form-item,
3076 .crm-container div.messages {
3077 border-radius: 4px;
3078 }
3079
3080 /* deprecated autocomplete styles */
3081
3082 .ac_results {
3083 background: transparent url(../i/dropdown-pointer.gif) no-repeat 25px 1px;
3084 padding-top: 5px;
3085 border: none;
3086 text-align: left;
3087 }
3088
3089 .ac_results-inner,
3090 .crm-participant-list-inner,
3091 .crm-event-links-list-inner,
3092 .crm-contribpage-links-list-inner,
3093 .crm-contact-actions-list-inner {
3094 background-color: #2f2f2e;
3095 padding: 4px;
3096 }
3097
3098 .crm-create-new-list-inner, .crm-create-new-list-inner ul {
3099 width: 160px!important;
3100 }
3101
3102 .ac_results li a {
3103 display: block;
3104 }
3105
3106 .crm-container .ac_results li,
3107 .crm-container .ac_results li a,
3108 .crm-container .ac_results li a:visited {
3109 color: #DFDFDF;
3110 text-decoration: none;
3111 }
3112
3113 .ac_results li strong {
3114 color: #FFF;
3115 font-weight: normal;
3116 }
3117
3118 .crm-container .ac_results li .icon,
3119 .crm-container .ac_results li a .icon,
3120 .crm-container .ac_results li a:visited .icon {
3121 background-image: url(../i/icons/jquery-ui-FFFFFF.png);
3122 }
3123
3124 .crm-container .ac_results li a:hover .icon {
3125 background-image: url(../i/icons/jquery-ui-3E3E3E.png);
3126 }
3127
3128 .ac_results li:hover,
3129 .ac_results li:hover a,
3130 .ac_results li a:hover {
3131 background-color: #F5F6F1;
3132 color: #666;
3133 }
3134 .crm-container .ac_results li:hover strong {
3135 color: #000;
3136 }
3137
3138 /* loader autocomplete */
3139
3140 .crm-container .ui-autocomplete-loading {
3141 background: white url('../i/loading.gif') no-repeat right center;
3142 }
3143
3144 /* select2 */
3145 .crm-container div.select2-container {
3146 min-width: 6em;
3147 font-size: 11px;
3148 }
3149 /* Add arrow icon to multi-selects */
3150 .crm-container .select2-container-multi .select2-choices:before {
3151 background: url("../bower_components/select2/select2.png") no-repeat scroll 0 -4px;
3152 content: "";
3153 display: block;
3154 height: 15px;
3155 position: absolute;
3156 right: 0;
3157 top: 5px;
3158 width: 20px;
3159 }
3160 /* Add search icon to ajax multi-selects and opened multi-selects */
3161 .crm-container .select2-container-multi.select2-container-active .select2-choices:before,
3162 .crm-container .select2-container-multi.crm-ajax-select .select2-choices:before {
3163 background-position: right -26px;
3164 }
3165 .crm-container .select2-container-multi.loading .select2-choices:before,
3166 .crm-container .select2-container.loading .select2-choice .select2-arrow b {
3167 background: url('../i/loading.gif') no-repeat center center;
3168 }
3169 /* Reduce select2 size to match other inputs */
3170 .crm-container .select2-container-multi .select2-choices {
3171 min-height: 25px;
3172 }
3173 .crm-container .select2-container-multi .select2-choices .select2-search-choice {
3174 padding: 2px 5px 2px 18px;
3175 }
3176 .crm-container .select2-container-multi .select2-choices .select2-search-field input {
3177 padding: 4px;
3178 }
3179 .crm-container .select2-search-choice-close {
3180 top: 2px;
3181 }
3182 .crm-container .select2-container .select2-choice abbr {
3183 top: 6px;
3184 }
3185 .crm-container .select2-container .select2-choice > .select2-chosen {
3186 font-size: 1.1em;
3187 }
3188 /* Add search icon to ajax single-selects */
3189 .crm-container .crm-ajax-select .select2-arrow b {
3190 background-position: -39px -22px;
3191 }
3192 /* Restore normal icon when searchable field is open */
3193 .crm-container .select2-dropdown-open .select2-choice .select2-arrow b {
3194 background-position: -18px 1px;
3195 }
3196 .select2-drop .crm-entityref-links {
3197 border-top: 1px solid #d3d3d3;
3198 margin-top: 9px;
3199 }
3200 .select2-drop .crm-entityref-filters {
3201 margin-top: 4px;
3202 }
3203 .select2-drop .crm-entityref-filters select {
3204 border-radius: 3px;
3205 border: 1px solid #f2f2f2;
3206 background-color: #f6f6f6;
3207 color: #494949;
3208 font-size: 11px;
3209 max-width: 70%;
3210 }
3211 .select2-drop .crm-entityref-filters select:hover,
3212 .select2-drop .crm-entityref-filters select:focus,
3213 .select2-drop .crm-entityref-filters select.active {
3214 border: 1px solid #808080;
3215 }
3216 /* Icons used by entityRef create buttons */
3217 .crm-container .Individual-profile-icon {
3218 background-position: -144px -96px;
3219 }
3220 .crm-container .Household-profile-icon {
3221 background-position: 0 -112px;
3222 }
3223 .crm-container .Organization-profile-icon {
3224 background-position: -112px -112px;
3225 }
3226 /* Style autocomplete results */
3227 .crm-container .select2-results {
3228 font-size: 12px;
3229 padding: 0;
3230 text-align: left;
3231 }
3232 .crm-container .select2-results li,
3233 .crm-container .select2-results .crm-select2-row,
3234 .crm-container .select2-results .crm-select2-row .crm-select2-row-description p {
3235 padding: 0;
3236 margin: 0;
3237 }
3238 .crm-container .select2-results .crm-select2-row .crm-select2-row-label {
3239 font-size: 1.1em;
3240 }
3241 .crm-container .select2-results .crm-select2-row .crm-select2-row-description p {
3242 font-size: 0.8em;
3243 line-height: 1.5em;
3244 color: #696969;
3245 width: 100%;
3246 white-space: nowrap;
3247 overflow: hidden;
3248 text-overflow: ellipsis;
3249 }
3250 .crm-container .select2-results .select2-highlighted .crm-select2-row .crm-select2-row-description p {
3251 color: #f0f0f0;
3252 }
3253 .crm-container .select2-results .crm-select2-icon {
3254 width: 20px;
3255 height: 100%;
3256 float: left;
3257 }
3258 .crm-container .select2-results .crm-select2-icon .crm-icon {
3259 width: 16px;
3260 height: 16px;
3261 margin: 0;
3262 }
3263 .crm-container .select2-results li.select2-no-results {
3264 padding-left: 4px;
3265 padding-top: 4px;
3266 margin-left: 4px;
3267 }
3268 .crm-container .select2-results li {
3269 margin: 0;
3270 padding: 0;
3271 }
3272 .crm-container .crm-action-menu .select2-default span.select2-chosen {
3273 color: #2786C2;
3274 }
3275 .crm-container .crm-action-menu .select2-default span.select2-chosen:before {
3276 background: url("../i/icons/jquery-ui-2786C2.png") no-repeat scroll -64px -112px;
3277 content: "";
3278 display: inline-block;
3279 height: 16px;
3280 width: 16px;
3281 margin-right: 3px;
3282 position: relative;
3283 top: 3px;
3284 }
3285 .crm-container .crm-action-menu.action-icon-plus .select2-default span.select2-chosen:before {
3286 background-position: 0 -192px;
3287 }
3288 .crm-container .crm-action-menu.action-icon-play .select2-default span.select2-chosen:before {
3289 background-position: -48px -192px;
3290 }
3291 .crm-container .crm-action-menu.action-icon-clipboard .select2-default span.select2-chosen:before {
3292 background-position: -160px -128px;
3293 }
3294 .crm-container .crm-action-menu.action-icon-token .select2-default span.select2-chosen:before {
3295 background-position: -144px 0;
3296 }
3297 .crm-container .crm-action-menu.action-icon-mail-closed .select2-default span.select2-chosen:before {
3298 background-position: -80px -96px;
3299 }
3300 /* Restore this property otherwise our css overrides it */
3301 .select2-search input {
3302 box-sizing: border-box;
3303 }
3304
3305 /* jQuery UI styles */
3306 .crm-container .ui-progressbar-value {
3307 background-image: url("../packages/jquery/css/images/pbar-ani.gif");
3308 }
3309
3310 .crm-container.ui-dialog {
3311 box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
3312 }
3313 .crm-container.ui-dialog.ui-resizable:before {
3314 display:block;
3315 content: " ";
3316 width: 16px;
3317 height: 16px;
3318 background: url("../i/icons/jquery-ui-52534D.png") no-repeat -80px -224px;
3319 position: absolute;
3320 bottom: 0;
3321 right: 0;
3322 }
3323 .crm-container .ui-dialog-titlebar.ui-widget-header {
3324 background: url("../i/crm-button-bg.gif") repeat-x scroll left center #70716B;
3325 color: #F5F6F1;
3326 }
3327 .crm-container .ui-dialog-title {
3328 background: url("../i/item_sprites.png") no-repeat scroll -79px -47px;
3329 margin-left: -5px;
3330 padding-left: 25px;
3331 }
3332 .crm-container .ui-dialog-titlebar .ui-button {
3333 background-color: transparent;
3334 background-image: none;
3335 border: 1px none;
3336 }
3337 .crm-container .ui-dialog-titlebar .ui-button .ui-icon {
3338 background-image: url("../i/icons/jquery-ui-F5F6F1.png");
3339 }
3340 .crm-container .ui-dialog-titlebar .ui-button:hover {
3341 background-color: #cdcdcd;
3342 }
3343 .crm-container .ui-dialog-titlebar .ui-button:hover .ui-icon {
3344 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
3345 }
3346
3347 /*Needed for jstree contextmenu */
3348 #vakata-contextmenu.jstree-default-context li {
3349 background: none repeat scroll 0 0 transparent;
3350 }
3351
3352 /* unset the styling for the li in jstree */
3353 #tagtree ul {
3354 list-style: none;
3355 margin: 0px;
3356 padding: 0px;
3357 }
3358
3359 /* Class for successful upgrade */
3360 .crm-container .upgrade-success {
3361 background-color: #00CC00;
3362 color: white;
3363 }
3364
3365 .crm-container .extension-upgradable {
3366 background-color: #FFFFCC !important;
3367 }
3368
3369 .crm-container .extension-installed {
3370 background-color: #DDFFDD !important;
3371 }
3372
3373 .crm-container .extension-missing {
3374 color: #E43D2B !important;
3375 }
3376
3377 /* table row highlightng */
3378 .crm-container table.row-highlight tr:hover,
3379 .crm-container .crm-row-selected {
3380 background-color: #FFFFCC;
3381 }
3382 .crm-container table.row-highlight tr.even-row:hover,
3383 .crm-container table.row-highlight tr.even:hover,
3384 .crm-container .even-row.crm-row-selected,
3385 .crm-container .even.crm-row-selected {
3386 background-color: #fffdb2;
3387 }
3388
3389 #crm-container .civicrm-drupal-wysiwyg .collapsed {
3390 background: transparent;
3391 padding-left: 0;
3392 }
3393
3394 #manageTags {
3395 position: static;
3396 z-index: -100;
3397 }
3398
3399 #crm-container .crm-socialnetwork {
3400 margin-top: 1em;
3401 }
3402
3403 #crm-container .crm-fb-tweet-buttons {
3404 width: 93%;
3405 }
3406
3407 /* classes related to batch entry operation */
3408 .crm-container span.batch-edit,
3409 .crm-container span.batch-valid,
3410 .crm-container span.batch-invalid {
3411 padding: 2px 9px 2px 3px;
3412 margin: 2px 2px 3px 2px;
3413 cursor: pointer;
3414 background-position: -66px -114px;
3415 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
3416 }
3417
3418 .crm-container span.batch-valid {
3419 background-position: -322px -143px;
3420 }
3421
3422 .crm-container span.batch-invalid {
3423 background-position: -258px -143px;
3424 }
3425
3426 .crm-container #Entry ul#errorList {
3427 display: none;
3428 }
3429
3430 .crm-container table.batch-totals {
3431 border: 1px solid #7A7A60 !important;
3432 margin-top: 10px !important;
3433 }
3434
3435 /* grid div as table */
3436 .crm-container .crm-grid-table {
3437 display: table;
3438 border-collapse: collapse;
3439 border: 1px solid #7A7A60;
3440 background-color: #FFFFFF;
3441 margin: 10px 3px 10px !important;
3442 }
3443
3444 .crm-container .crm-batch-entry-table {
3445 border-right: 2px solid #7A7A60 !important;
3446 }
3447
3448 .crm-container .crm-grid-row,
3449 .crm-container .crm-grid-header {
3450 display: table-row;
3451 }
3452
3453 .crm-container .crm-grid-header {
3454 white-space: nowrap;
3455 }
3456
3457 .crm-container .crm-grid-cell {
3458 display: table-cell;
3459 border-right: 1px solid #EFEFEF;
3460 padding: 2px;
3461 vertical-align: top;
3462 }
3463
3464 /* editable placeholder containers - share some styles with crm-editable below */
3465 .crm-container .replace-plain,
3466 .crm-container textarea,
3467 .crm-container select.crm-form-multiselect {
3468 border: 1px solid #999;
3469 }
3470
3471 .crm-container .replace-plain {
3472 cursor: pointer;
3473 background: rgba(255,255,255,0.6);
3474 min-height: 1.4em;
3475 position: relative;
3476 padding: .4em 1.5em .3em .4em;
3477 }
3478
3479 .crm-container .replace-plain p {
3480 padding: .2em 0;
3481 margin: 0;
3482 }
3483
3484 .crm-container .replace-plain:focus,
3485 .crm-container .replace-plain:hover {
3486 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3487 background: rgba(255,255,255,0.8);
3488 }
3489
3490 .crm-container .replace-plain:before {
3491 content: "";
3492 position: absolute;
3493 top: .4em;
3494 right: .5em;
3495 }
3496
3497 /* in place edit */
3498 .crm-container .crm-editable-enabled {
3499 white-space: nowrap;
3500 padding-left: 2px;
3501 border: 2px dashed transparent;
3502 }
3503 .crm-container .crm-editable-textarea-enabled {
3504 white-space: normal;
3505 }
3506
3507 .crm-container .crm-editable-enabled:hover {
3508 border: 2px dashed #d1d1d1;
3509 cursor: pointer;
3510 }
3511
3512 .crm-container .crm-editable-enabled.crm-editable-editing:hover {
3513 border: 2px dashed transparent;
3514 cursor: auto;
3515 }
3516
3517 .crm-container span.crm-editable-textarea-enabled {
3518 width: 96%;
3519 }
3520 .crm-container span.crm-editable-enabled {
3521 display: inline-block !important;
3522 }
3523
3524 .crm-container .crm-editable-placeholder,
3525 .crm-container .replace-plain:before {
3526 background: url("../i/icons/jquery-ui-3E3E3E.png") -66px -114px no-repeat;
3527 text-indent: -10000px;
3528 display: block;
3529 height: 16px;
3530 width: 16px;
3531 opacity: .5;
3532 }
3533
3534 .crm-container .replace-plain a:active:before,
3535 .crm-container .replace-plain:focus:before,
3536 .crm-container .replace-plain:hover:before,
3537 .crm-container .crm-editable-enabled:hover .crm-editable-placeholder {
3538 background-image: url("../i/icons/jquery-ui-2786C2.png");
3539 opacity: 1;
3540 }
3541
3542 .crm-container .crm-editable-saving {
3543 background: #FFFFCC!important;
3544 opacity: 0.8;
3545 }
3546
3547 .crm-container h2.crm-editable-enabled input {
3548 min-height: 1.4em;
3549 }
3550 .crm-container .crm-editable-textarea-enabled textarea {
3551 min-height: 5em;
3552 }
3553
3554 .crm-editable-form {
3555 margin: 0 !important;
3556 padding: 0 !important;
3557 width: auto !important;
3558 position: relative;
3559 overflow: visible;
3560 }
3561
3562 .crm-editable-form input,
3563 .crm-editable-form textarea {
3564 margin-bottom: 0;
3565 padding-bottom: 0;
3566 }
3567
3568 .crm-editable-form button {
3569 position: absolute;
3570 bottom: -22px;
3571 left: 0;
3572 text-align: center;
3573 height: 23px;
3574 width: 32px;
3575 }
3576
3577 .crm-editable-form button[type=cancel] {
3578 left: 32px;
3579 }
3580
3581 /*crm-10345*/
3582 .crm-container .field-action {
3583 word-wrap: normal;
3584 }
3585
3586 .crm-container .field-action span.btn-slide {
3587 padding-left: 0;
3588 padding-right: 11px;
3589 }
3590 /*end crm-10345*/
3591
3592 /* alter display of parent and child groups in Manage Groups selector */
3593 #crm-container .crm-group-parent td.crm-group-name {
3594 padding-left: 20px;
3595 text-indent: -20px;
3596 }
3597
3598 #crm-container .crm-group-child td.crm-group-name.level_2 {
3599 padding-left: 40px;
3600 text-indent: -20px;
3601 }
3602 #crm-container .crm-group-child td.crm-group-name.level_3 {
3603 padding-left: 60px;
3604 text-indent: -20px;
3605 }
3606 #crm-container .crm-group-name span.crm-editable-enabled {
3607 text-indent: 0;
3608 }
3609
3610 #crm-container div.crm-row-parent-name {
3611 padding: 3px 0 0 .5em;
3612 opacity: 0.75;
3613 }
3614 #crm-container td span.show-children,
3615 #crm-container td span.crm-no-children {
3616 padding-left: 20px;
3617 }
3618
3619 #crm-container span.collapsed,
3620 #crm-container a.collapsed {
3621 background: url("../i/TreePlus.gif") no-repeat 0 0;
3622 padding-left: 19px;
3623 cursor: pointer;
3624 }
3625
3626 #crm-container span.expanded,
3627 #crm-container a.expanded {
3628 background: url("../i/TreeMinus.gif") no-repeat 0 0;
3629 padding-left: 19px;
3630 cursor: pointer;
3631 }
3632
3633 /* Notifications */
3634 #crm-notification-container {
3635 width: 350px;
3636 position: fixed;
3637 top: 45px;
3638 right: 15px;
3639 z-index: 999999;
3640 }
3641 #crm-notification-container div.ui-notify-message {
3642 padding: 10px;
3643 margin-bottom: 15px;
3644 color: #fff;
3645 border-radius: 8px;
3646 max-height: 600px;
3647 overflow: auto;
3648 }
3649 #crm-notification-container div.ui-notify-message h1 {
3650 font-size: 14px;
3651 margin: 0;
3652 padding: 4px;
3653 font-weight: bold;
3654 color: #fff;
3655 }
3656 #crm-notification-container div.ui-notify-message p {
3657 margin: 3px 0;
3658 padding: 0;
3659 line-height: 18px;
3660 }
3661 #crm-notification-container div.ui-notify-message:last-child {
3662 margin-bottom: 0;
3663 }
3664 #crm-notification-container div.ui-notify-message-style {
3665 background: rgba(0,0,0,0.8);
3666 box-shadow: 0 0 6px #000;
3667 }
3668 .crm-container div.ui-notify-message-style a,
3669 .crm-container div.ui-notify-message-style a:link {
3670 color: #CCD0FF;
3671 text-decoration: underline;
3672 }
3673 .crm-container div.ui-notify-message-style a:hover,
3674 .crm-container div.ui-notify-message-style a:focus {
3675 color: #B2B8FF;
3676 }
3677 .crm-container div.ui-notify-message-style .ui-button .ui-button-text {
3678 color: #2F2F2F;
3679 text-decoration: none;
3680 }
3681 #crm-notification-container .ui-notify-message .ui-notify-close {
3682 cursor: pointer;
3683 }
3684 #crm-notification-container .ui-notify-message a.ui-notify-cross {
3685 margin-top: -4px;
3686 float: right;
3687 text-decoration: none;
3688 font-size: 13px;
3689 font-weight: bold;
3690 text-shadow: 0 1px 1px #fff;
3691 padding: 2px;
3692 color: #FDFDFD;
3693 }
3694 #crm-notification-container .ui-notify-message .ui-notify-cross:hover,
3695 #crm-notification-container .ui-notify-message .ui-notify-cross:focus {
3696 color: #ffffab;
3697 }
3698 .crm-container div.ui-notify-message table,
3699 .crm-container div.ui-notify-message tbody,
3700 .crm-container div.ui-notify-message tr {
3701 border: 0 none;
3702 font-size: 11px;
3703 }
3704 .crm-container div.ui-notify-message table {
3705 margin: 10px 0;
3706 }
3707 .crm-container div.ui-notify-message td {
3708 background: rgba(255,255,255,0.1);
3709 border: 1px solid #111;
3710 font-size: 11px;
3711 }
3712 .crm-container div.ui-notify-message th {
3713 background: rgba(200,200,200,0.2);
3714 border: 1px solid #111;
3715 color: #eee;
3716 font-size: 11px;
3717 }
3718 .crm-container div.ui-notify-message table a.action-item {
3719 margin-right: 5px;
3720 }
3721 .crm-container div.ui-notify-message ul,
3722 .crm-container div.ui-notify-message ol {
3723 margin: 0.5em 0 1em;
3724 padding: 0 0 0 0.5em;
3725 }
3726
3727 .crm-container div.ui-notify-message div.icon,
3728 .crm-status-icon {
3729 background: transparent url("../i/message-icons.png") no-repeat 0 0;
3730 width: 24px;
3731 height: 24px;
3732 margin-right: 6px;
3733 }
3734 .crm-container div.ui-notify-message.success div.icon,
3735 .crm-status-icon.success {
3736 background-position: -24px 0;
3737 }
3738 .crm-container div.ui-notify-message.info div.icon,
3739 .crm-status-icon.info {
3740 background-position: -48px 0;
3741 }
3742 .crm-container div.ui-notify-message.error div.icon,
3743 .crm-status-icon.error {
3744 background-position: -72px 0;
3745 }
3746 .crm-container div.ui-notify-message.none div.icon {
3747 display: none;
3748 }
3749
3750 span.crm-status-icon {
3751 display: inline-block;
3752 }
3753
3754 /* Public Pages */
3755
3756 #crm-container.crm-public input[type="text"],
3757 #crm-container.crm-public input[type="password"],
3758 #crm-container.crm-public input[type="email"],
3759 #crm-container.crm-public select {
3760 font-size: 15px;
3761 padding: 5px;
3762 border-radius: 3px;
3763 vertical-align: middle;
3764 max-width: 100%;
3765 }
3766
3767 #crm-container.crm-public .label,
3768 #crm-container.crm-public .price-field-amount {
3769 padding-top: 6px;
3770 font-size: 15px;
3771 }
3772
3773 .crm-container.crm-public .select2-container,
3774 .crm-container.crm-public .select2-results {
3775 font-size: 14px;
3776 }
3777 .crm-container.crm-public .select2-container .select2-choice {
3778 padding: 5px 5px 5px 8px;
3779 }
3780 .crm-container.crm-public .select2-container-multi .select2-choices {
3781 padding: 4px;
3782 }
3783 .crm-public .select2-container .select2-choice .select2-arrow {
3784 width: 20px;
3785 }
3786 .crm-public .select2-container .select2-choice .select2-arrow b {
3787 position: relative;
3788 top: 2px;
3789 left: 2px;
3790 }
3791 .crm-container.crm-public .select2-container-multi .select2-choices .select2-search-choice {
3792 padding: 3px 3px 3px 20px;
3793 }
3794 .crm-container.crm-public .select2-container-multi .select2-choices:before {
3795 top: 9px;
3796 }
3797
3798 .crm-public .crm-profile-view .content {
3799 padding-top: 6px;
3800 }
3801
3802 #crm-container.crm-public .calc-value,
3803 #crm-container.crm-public .content {
3804 padding-top: 6px;
3805 font-size: 15px;
3806 }
3807
3808 #crm-container.crm-public .crm-section,
3809 .crm-section {
3810 margin-bottom: 0;
3811 }
3812
3813 #crm-container.crm-public #crm-submit-buttons {
3814 margin-top: 30px;
3815 }
3816
3817 #crm-container.crm-public #premiums-listings {
3818 margin-top: 10px;
3819 min-width: 450px;
3820 width: 60%;
3821 }
3822
3823 #crm-container.crm-public #premiums-listings .premium {
3824 margin: 5px 0;
3825 }
3826
3827 #crm-container.crm-public #premiums-listings .premium .premium-short {
3828 padding: 10px;
3829 border: 2px solid #ffffff;
3830 background-color: #f0f0f0;
3831 cursor: pointer;
3832 }
3833
3834 #crm-container.crm-public #premiums-listings .premium .premium-short:hover {
3835 border: 2px solid #b0b0b0;
3836 }
3837
3838 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail {
3839 float: left;
3840 width: 50px;
3841 }
3842
3843 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail img {
3844 width: 50px;
3845 }
3846
3847 #crm-container.crm-public #premiums-listings .premium .premium-short-content {
3848 text-align: center;
3849 font-size: 20px;
3850 font-weight: bold;
3851 padding: 20px;
3852 }
3853
3854 #crm-container.crm-public #premiums-listings .premium .premium-full {
3855 display: none;
3856 padding: 5px;
3857 border: 2px solid #cfcfcf;
3858 background-color: #ffffff;
3859 }
3860
3861 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image {
3862 float: left;
3863 width: 200px;
3864 padding: 10px;
3865 }
3866
3867 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image img {
3868 width: 200px;
3869 }
3870
3871 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-title {
3872 text-align: center;
3873 font-size: 1.5em;
3874 font-weight: bold;
3875 padding: 20px;
3876 }
3877
3878 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-min {
3879 font-size: .9em;
3880 font-style: italic;
3881 }
3882
3883 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-short {
3884 text-align: center;
3885 font-size: 1.3em;
3886 padding: 10px;
3887 }
3888
3889 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-full {
3890 text-align: center;
3891 font-size: 1.3em;
3892 font-weight: bold;
3893 padding: 10px;
3894 }
3895
3896 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-short,
3897 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-image,
3898 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-title,
3899 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-description,
3900 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-options,
3901 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-min {
3902 opacity: 0.5;
3903 }
3904 #crm-container.crm-public #premiums-listings .premium .premium-full-disabled {
3905 display: none;
3906 }
3907 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full-disabled {
3908 display: block;
3909 color: #ff0000;
3910 text-align: center;
3911 font-weight: bold;
3912 margin-bottom: .5em;
3913 }
3914
3915 #crm-container.crm-public .price-set-row {
3916 font-size: 15px;
3917 margin-bottom: 5px;
3918 }
3919
3920 #crm-container.crm-public .price-set-row input,
3921 #crm-container.crm-public .price-set-row label {
3922 vertical-align: middle;
3923 cursor: pointer;
3924 }
3925
3926 #crm-container.crm-public .price-set-row .crm-price-amount-amount {
3927 min-width: 2em;
3928 color: #333333;
3929 }
3930
3931 #crm-container.crm-public .price-set-row .crm-price-amount-label {
3932 color: #444444;
3933 font-weight: bold;
3934 }
3935
3936 #crm-container.crm-public .price-set-row .highlight label {
3937 color: #000000;
3938 font-weight: bold;
3939 }
3940
3941 #crm-container.crm-public .price-set-row .highlight .crm-price-amount-label {
3942 color: #222222;
3943 }
3944
3945 #crm-container.crm-public .price-set-option-content > tt {
3946 display: none;
3947 }
3948
3949 #crm-container .sold-out-option,
3950 #crm-container .price-set-row span.sold-out-option .crm-price-amount-label,
3951 #crm-container .price-set-row span.sold-out-option .crm-price-amount-amount {
3952 font-style: italic !important;
3953 font-weight: normal !important;
3954 font-size: 15px;
3955 color: #666 !important;
3956 }
3957 #crm-container .crm-extensions-upgrade {
3958 background: #ffb;
3959 border: 1px solid #000;
3960 text-align: center;
3961 }
3962
3963 /* Styles for credit card payment logos */
3964 .crm-container .credit_card_type-section .crm-credit_card_type-icons a {
3965 display: block;
3966 float: left;
3967 width: 50px;
3968 height: 30px;
3969 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3970 text-indent: -20000px;
3971 margin-right: 10px;
3972 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
3973 border-radius: 3px;
3974 border: 1px solid #FFFFFF;
3975 }
3976
3977 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-visa {
3978 background-position: -50px 0;
3979 }
3980
3981 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-mastercard {
3982 background-position: -100px 0;
3983 }
3984
3985 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-amex {
3986 background-position: -150px 0;
3987 }
3988
3989 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-discover {
3990 background-position: -200px 0;
3991 }
3992
3993 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-jcb {
3994 background-position: -250px 0;
3995 }
3996
3997 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-unionpay {
3998 background-position: -300px 0;
3999 }
4000
4001 .crm-container .cvv2-icon {
4002 display: inline-block;
4003 width: 50px;
4004 height: 30px;
4005 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
4006 }
4007
4008 /* Avoid weird border around the images (some themes will add a border around images) */
4009 #crm-container .credit_card_type-section .crm-credit_card_type-icons a,
4010 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:link,
4011 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:hover,
4012 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:focus,
4013 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:active {
4014 color: #fff;
4015 }
4016
4017 .crm-container .paper-icon {
4018 background-position: -101px -222px;background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
4019 }
4020
4021 .crm-container .strikethrough {
4022 text-decoration: line-through;
4023 }
4024
4025 .crm-container input.ng-invalid.ng-dirty,
4026 .crm-container select.ng-invalid.ng-dirty,
4027 .crm-container textarea.ng-invalid.ng-dirty {
4028 border: 1px solid red;
4029 }
4030 .crm-container input.ng-valid,
4031 .crm-container input.ng-pristine,
4032 .crm-container textarea.ng-valid,
4033 .crm-container textarea.ng-pristine,
4034 .crm-container select.ng-valid,
4035 .crm-container select.ng-pristine{
4036 border: 1px solid #666;
4037 }
4038
4039 /* block-ui */
4040 .crm-container .blockUI.blockOverlay {
4041 background: url("../i/loading-overlay.gif") center center no-repeat white !important;
4042 }
4043
4044 .crm-container table.mergecontact thead th {
4045 width:30%;
4046 }
4047 .crm-container .crm-ui-datetime.ng-dirty input.incomplete {
4048 border: 1px solid red;
4049 }
4050
4051 .crm-container .crm-grip {
4052 cursor: move;
4053 }