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