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