Merge pull request #7305 from colemanw/Css
[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 text-align: left;
2455 width: 40%;
2456 font-size: 11px;
2457 color: #A7A7A7;
2458 background-color: transparent;
2459 }
2460
2461 .crm-container .crm-summary-group .crm-section .content {
2462 margin-left: 41%;
2463 }
2464
2465 .crm-container .crm-tooltip table .crm-summary-col-1 {
2466 width: 350px;
2467 }
2468
2469 .crm-container .crm-tooltip table .crm-summary-col-1 div {
2470 width: auto;
2471 }
2472
2473 /* Class for tokens and helpicon */
2474 .crm-container .helpIcon {
2475 float: right;
2476 position: relative;
2477 z-index: 1;
2478 margin-right: 45px;
2479 }
2480
2481 #crm-container ul li {
2482 list-style-image: none;
2483 }
2484
2485 /* privacy icons */
2486 #crm-container div span.privacy-flag {
2487 background-repeat: no-repeat;
2488 background-image: url("../i/stop-icon.png");
2489 float: right;
2490 }
2491
2492 /* specific, targeted fixes */
2493 #crm-container .dashboard-elements,
2494 #crm-container #membership-listings,
2495 #crm-container #premiums-listings,
2496 #crm-container #searchForm table {
2497 margin: 0;
2498 border-collapse: collapse;
2499 border: 0 none;
2500 }
2501
2502 /* ID selector is needed to override Drupal 2em margin-bottom on forms (we don't want to give up that space) */
2503 div#crm-container form,
2504 div.crm-container form {
2505 margin-bottom: 0;
2506 }
2507
2508 /** DATATABLES **/
2509 /*
2510 * jQuery UI specific styling
2511 */
2512
2513 .crm-container .paging_two_button .ui-button {
2514 float: left;
2515 cursor: pointer;
2516 }
2517
2518 .crm-container .paging_full_numbers .ui-button {
2519 padding: 2px 6px;
2520 margin: 0;
2521 cursor: pointer;
2522 }
2523
2524 .crm-container .dataTables_paginate .ui-button {
2525 margin-right: -0.1em !important;
2526 }
2527
2528 .crm-container .paging_full_numbers {
2529 width: 350px !important;
2530 }
2531
2532 .crm-container .dataTables_wrapper .ui-toolbar {
2533 padding: 5px;
2534 }
2535
2536 .crm-container .dataTables_paginate {
2537 width: auto;
2538 }
2539
2540 .crm-container .dataTables_info {
2541 padding-top: 3px;
2542 }
2543
2544 .crm-container div.dataTables_wrapper .ui-widget-header {
2545 font-weight: normal;
2546 }
2547
2548
2549 /*
2550 * Sort arrow icon positioning
2551 */
2552 .crm-container table.display thead th div.DataTables_sort_wrapper {
2553 position: relative;
2554 padding-right: 20px;
2555 }
2556
2557 .crm-container table.display thead th div.DataTables_sort_wrapper span {
2558 position: absolute;
2559 top: 50%;
2560 margin-top: -8px;
2561 right: 0;
2562 }
2563
2564 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2565 * DataTables features
2566 */
2567
2568 .crm-container .dataTables_wrapper {
2569 position: relative;
2570 clear: both;
2571 zoom: 1; /* Feeling sorry for IE */
2572 }
2573
2574 .crm-container .dataTables_processing {
2575 position: absolute;
2576 top: 0;
2577 left: 0;
2578 width: 100%;
2579 height: 100%;
2580 margin: 0;
2581 padding: 0;
2582 background: url("../i/loading-overlay.gif") center center no-repeat white;
2583 opacity: 0.6;
2584 cursor: wait;
2585 }
2586
2587 .crm-container .dataTables_length {
2588 width: 40%;
2589 float: none;
2590 padding-bottom: 5px;
2591 }
2592
2593 .crm-container .dataTables_filter {
2594 width: 50%;
2595 float: right;
2596 text-align: right;
2597 }
2598
2599 .crm-container .dataTables_info {
2600 width: 60%;
2601 float: left;
2602 }
2603
2604 .crm-container .dataTables_paginate {
2605 float: right;
2606 text-align: right;
2607 }
2608
2609
2610 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2611 * DataTables display
2612 */
2613 .crm-container table.display {
2614 margin: 0 auto;
2615 clear: both;
2616 width: 100%;
2617 }
2618
2619 .crm-container table.display thead th {
2620 padding: 3px 18px 3px 10px;
2621 border-bottom: 1px solid black;
2622 font-weight: bold;
2623 cursor: pointer;
2624 }
2625
2626 .crm-container table.display thead th.sorting_disabled {
2627 cursor: default;
2628 }
2629
2630 .crm-container table.display tfoot th {
2631 padding: 3px 18px 3px 10px;
2632 border-top: 1px solid black;
2633 font-weight: bold;
2634 }
2635
2636 .crm-container table.display tr.heading2 td {
2637 border-bottom: 1px solid #aaa;
2638 }
2639
2640 .crm-container table.display td {
2641 padding: 3px 10px;
2642 }
2643
2644 .crm-container table td.center {
2645 text-align: center;
2646 }
2647 /* Fix weird color added to some datatables' sort column */
2648 .crm-container table.dataTable.display tbody tr > td.sorting_1 {
2649 background-color: transparent;
2650 }
2651
2652 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2653 * Datatables misc
2654 */
2655 .crm-container .dataTables_scroll {
2656 clear: both;
2657 }
2658
2659 .crm-container .dataTables_scrollBody {
2660 *margin-top: -1px;
2661 -webkit-overflow-scrolling: touch;
2662 }
2663
2664 .crm-container .top .dataTables_info {
2665 float: none;
2666 }
2667
2668 .crm-container .dataTables_empty {
2669 text-align: center;
2670 }
2671
2672 .crm-container tfoot input {
2673 margin: 0.5em 0;
2674 width: 100%;
2675 color: #444;
2676 }
2677
2678 /* DataTables fixes */
2679 .crm-container .crm-datatable-pager-top {
2680 padding-top: 5px;
2681 padding-bottom: 25px;
2682 }
2683 .crm-container .crm-datatable-pager-bottom {
2684 padding-top: 10px;
2685 padding-bottom: 25px;
2686 }
2687 .crm-container .crm-datatable-pager-top .dataTables_length {
2688 float: left;
2689 }
2690 .crm-container .css_right {
2691 float: right;
2692 }
2693
2694 /* Date plugin */
2695 .crm-container input.dateplugin,
2696 .crm-container input.crm-form-date {
2697 background: white url(../i/cal.gif) no-repeat scroll right center;
2698 padding-right: 16px;
2699 /* so that text doesn't flow on top of icon */
2700 width: 9em;
2701 }
2702
2703 .crm-container div.batch-update {
2704 overflow: visible;
2705 }
2706
2707 /*chart */
2708 #chartData {
2709 overflow: auto;
2710 }
2711
2712 #crm-container .signature {
2713 width: 495px;
2714 }
2715
2716 /* editor skin tweaks */
2717
2718 #crm-container span.cke_skin_kama {
2719 border: none;
2720 }
2721 #crm-container .cke_skin_kama .cke_wrapper {
2722 background-image: none;
2723 }
2724
2725 /* skin */
2726
2727 #crm-container .crm-title {
2728 line-height: 1.1;
2729 margin-bottom: 8px;
2730 }
2731
2732 /* tables */
2733 .crm-container table {
2734 border: 1px solid #efefef;
2735 }
2736
2737 .crm-container .crm-form-block table {
2738 border: none;
2739 }
2740 .crm-container tr.even,
2741 .crm-container tr.odd,
2742 .crm-container tbody th {
2743 border-color: #FFF #FFF #efefef #FFF;
2744 }
2745
2746 .crm-container tr.even-row td,
2747 .crm-container tr.odd-row td,
2748 .crm-container table.display td,
2749 .crm-container table.pagerDisplay td {
2750 border-color: #efefef;
2751 border-right: 1px solid #efefef;
2752 border-collapse: collapse;
2753 }
2754 .crm-container .odd-row,
2755 .crm-container .odd,
2756 tbody.scrollContent {
2757 background-color: #FAFAFA;
2758 }
2759 .crm-container .even-row,
2760 .crm-container .even,
2761 tbody.scrollContent tr.alternateRow {
2762 background-color: #EFEFEF;
2763 }
2764
2765 .crm-container td.checkbox {
2766 vertical-align: middle;
2767 text-align: center;
2768 }
2769 .crm-container tr.columnheader a.sorting {
2770 color: #a7a7a7;
2771 }
2772
2773 .crm-container a.sorting,
2774 .crm-container a.sorting_desc,
2775 .crm-container a.sorting_asc {
2776 color: #A7A7A7;
2777 background: url("../packages/jquery/plugins/DataTables/media/images/sort_both.png") no-repeat left center;
2778 padding-left: 20px;
2779 }
2780 .crm-container a.sorting_desc,
2781 .crm-container a.sorting_asc {
2782 color: #000;
2783 }
2784
2785 .crm-container tr a.sorting,
2786 .crm-container tr a.sorting_asc,
2787 .crm-container tr a.sorting_desc {
2788 color: #52534D;
2789 }
2790
2791 .crm-container table thead a.sorting_asc {
2792 background: url("../packages/jquery/plugins/DataTables/media/images/sort_asc.png") no-repeat left center;
2793 }
2794 .crm-container table thead a.sorting_desc {
2795 background: url("../packages/jquery/plugins/DataTables/media/images/sort_desc.png") no-repeat left center;
2796 }
2797 .crm-container table thead a.sorting_asc_disabled {
2798 background: url("../packages/jquery/plugins/DataTables/media/images/sort_asc_disabled.png") no-repeat left center;
2799 }
2800 .crm-container table thead a.sorting_desc_disabled {
2801 background: url("../packages/jquery/plugins/DataTables/media/images/sort_desc_disabled.png") no-repeat left center;
2802 }
2803
2804 /* Otherwise for some reason we have 2 sort icons */
2805 .crm-container th.sorting .DataTables_sort_icon {
2806 display: none;
2807 }
2808
2809
2810 /*contact summary page */
2811 #crm-container div.contact_details {
2812 background-color: transparent;
2813 }
2814
2815 .crm-container table.crm-info-panel td {
2816 border-bottom: 1px solid #FFF;
2817 }
2818
2819 .crm-container table.crm-info-panel .label {
2820 color: #2f2f2f;
2821 font-weight: normal;
2822 }
2823
2824 .crm-container .disabled,
2825 .crm-container .cancelled,
2826 .crm-container li.disabled a.ui-tabs-anchor,
2827 .crm-container li.crm-count-0 a.ui-tabs-anchor,
2828 .crm-container li.crm-count-0 a.ui-tabs-anchor em {
2829 color: #999999 !important;
2830 }
2831
2832 #crm-container tr.crm-job {
2833 text-decoration: none !important;
2834 }
2835
2836 .crm-container table.selector td {
2837 border-right: 1px dotted #DDDDDD;
2838 }
2839
2840 .crm-container div.contact_panel td,
2841 .crm-container table.crm-info-panel td {
2842 background-color: #f4f4ed;
2843 }
2844
2845 .crm-container div.contact_panel td.label,
2846 .crm-container #customFields div.contact_panel td.label,
2847 .crm-container table.crm-info-panel td.label {
2848 background-color: #fafafa;
2849 width: 120px;
2850 text-align: left;
2851 color: #7a7a60;
2852 }
2853 .crm-container table.crm-info-panel td.label {
2854 width: 150px;
2855 }
2856
2857 .crm-container .form-layout td.label,
2858 .crm-container .form-layout-compressed td.label {
2859 width: 150px;
2860 text-align: right;
2861 color: #7a7a60;
2862 }
2863
2864 .crm-container .form-layout td.label,
2865 .crm-container form table.report .label,
2866 .crm-container form table label,
2867 .crm-container form table.report label {
2868 color: #3e3e3e;
2869 }
2870
2871 /* search results */
2872 .crm-container .crm-search-tasks,
2873 .crm-container .crm-tasks {
2874 background-color: #F0F0E8;
2875 color: #52534D;
2876 }
2877
2878 #crm-container .crm-tasks table {
2879 margin: 0;
2880 }
2881
2882 .crm-container .crm-results-block {
2883 position: relative;
2884 }
2885
2886 /* warning labels and messages */
2887 .crm-container del,
2888 .crm-container .crm-is_deleted,
2889 .crm-container table.caseSelector td.status-urgent,
2890 .crm-container .font-red,
2891 .crm-container .status-removed,
2892 .crm-container .status-overdue,
2893 .crm-container .status-fatal,
2894 .crm-container .status-hold,
2895 .crm-container .status-past,
2896 .crm-contact-deceased,
2897 .crm-container .status-warning {
2898 color: #E43D2B !important;
2899 }
2900
2901 /* rounded corners */
2902 .crm-container .crm-button,
2903 .crm-container a.button,
2904 .crm-container a.button:link,
2905 .crm-container input.crm-form-submit,
2906 .crm-container input[type=button] {
2907 border-radius: 3px;
2908 }
2909
2910
2911 .crm-container div.status,
2912 div.m ul#civicrm-menu,
2913 .crm-container #help,
2914 .crm-container .help,
2915 .crm-container .ui-tabs-panel,
2916 .crm-container .crm-content-block,
2917 #full-screen-header,
2918 .crm-container .crm-pager,
2919 .crm-container form .section-hidden-border,
2920 .crm-container #search-status,
2921 .crm-container .crm-form-block,
2922 .crm-container .crm-search-tasks,
2923 .crm-container .crm-tasks,
2924 .crm-container div.form-item,
2925 .crm-container div.messages {
2926 border-radius: 4px;
2927 }
2928
2929 /* deprecated autocomplete styles */
2930
2931 .ac_results {
2932 background: transparent url(../i/dropdown-pointer.gif) no-repeat 25px 1px;
2933 padding-top: 5px;
2934 border: none;
2935 text-align: left;
2936 }
2937
2938 .ac_results-inner,
2939 .crm-participant-list-inner,
2940 .crm-event-links-list-inner,
2941 .crm-contribpage-links-list-inner,
2942 .crm-contact-actions-list-inner {
2943 background-color: #2f2f2e;
2944 padding: 4px;
2945 }
2946
2947 .crm-create-new-list-inner, .crm-create-new-list-inner ul {
2948 width: 160px!important;
2949 }
2950
2951 .ac_results li a {
2952 display: block;
2953 }
2954
2955 .crm-container .ac_results li,
2956 .crm-container .ac_results li a,
2957 .crm-container .ac_results li a:visited {
2958 color: #DFDFDF;
2959 text-decoration: none;
2960 }
2961
2962 .ac_results li strong {
2963 color: #FFF;
2964 font-weight: normal;
2965 }
2966
2967 .crm-container .ac_results li .icon,
2968 .crm-container .ac_results li a .icon,
2969 .crm-container .ac_results li a:visited .icon {
2970 background-image: url(../i/icons/jquery-ui-FFFFFF.png);
2971 }
2972
2973 .crm-container .ac_results li a:hover .icon {
2974 background-image: url(../i/icons/jquery-ui-3E3E3E.png);
2975 }
2976
2977 .ac_results li:hover,
2978 .ac_results li:hover a,
2979 .ac_results li a:hover {
2980 background-color: #F5F6F1;
2981 color: #666;
2982 }
2983 .crm-container .ac_results li:hover strong {
2984 color: #000;
2985 }
2986
2987 /* loader autocomplete */
2988
2989 .crm-container .ui-autocomplete-loading {
2990 background: white url('../i/loading.gif') no-repeat right center;
2991 }
2992
2993 /* select2 */
2994 .crm-container div.select2-container {
2995 min-width: 6em;
2996 font-size: 11px;
2997 }
2998 /* Add arrow icon to multi-selects */
2999 .crm-container .select2-container-multi .select2-choices:before {
3000 background: url("../bower_components/select2/select2.png") no-repeat scroll 0 -4px;
3001 content: "";
3002 display: block;
3003 height: 15px;
3004 position: absolute;
3005 right: 0;
3006 top: 5px;
3007 width: 20px;
3008 }
3009 /* Add search icon to ajax multi-selects and opened multi-selects */
3010 .crm-container .select2-container-multi.select2-container-active .select2-choices:before,
3011 .crm-container .select2-container-multi.crm-ajax-select .select2-choices:before {
3012 background-position: right -26px;
3013 }
3014 .crm-container .select2-container-multi.loading .select2-choices:before,
3015 .crm-container .select2-container.loading .select2-choice .select2-arrow b {
3016 background: url('../i/loading.gif') no-repeat center center;
3017 }
3018 /* Reduce select2 size to match other inputs */
3019 .crm-container .select2-container-multi .select2-choices {
3020 min-height: 25px;
3021 }
3022 .crm-container .select2-container-multi .select2-choices .select2-search-choice {
3023 padding: 2px 5px 2px 18px;
3024 }
3025 .crm-container .select2-container-multi .select2-choices .select2-search-field input {
3026 padding: 4px;
3027 }
3028 .crm-container .select2-search-choice-close {
3029 top: 2px;
3030 }
3031 .crm-container .select2-container .select2-choice abbr {
3032 top: 6px;
3033 }
3034 .crm-container .select2-container .select2-choice > .select2-chosen {
3035 font-size: 1.1em;
3036 }
3037 /* Add search icon to ajax single-selects */
3038 .crm-container .crm-ajax-select .select2-arrow b {
3039 background-position: -39px -22px;
3040 }
3041 /* Restore normal icon when searchable field is open */
3042 .crm-container .select2-dropdown-open .select2-choice .select2-arrow b {
3043 background-position: -18px 1px;
3044 }
3045 .select2-drop .crm-entityref-links {
3046 border-top: 1px solid #d3d3d3;
3047 margin-top: 9px;
3048 }
3049 .select2-drop .crm-entityref-filters {
3050 margin-top: 4px;
3051 }
3052 .select2-drop .crm-entityref-filters select {
3053 border-radius: 3px;
3054 border: 1px solid #f2f2f2;
3055 background-color: #f6f6f6;
3056 color: #494949;
3057 font-size: 11px;
3058 max-width: 70%;
3059 }
3060 .select2-drop .crm-entityref-filters select:hover,
3061 .select2-drop .crm-entityref-filters select:focus,
3062 .select2-drop .crm-entityref-filters select.active {
3063 border: 1px solid #808080;
3064 }
3065 /* Style autocomplete results */
3066 .crm-container .select2-results {
3067 font-size: 12px;
3068 padding: 0;
3069 text-align: left;
3070 }
3071 .crm-container .select2-results li,
3072 .crm-container .select2-results .crm-select2-row,
3073 .crm-container .select2-results .crm-select2-row .crm-select2-row-description p {
3074 padding: 0;
3075 margin: 0;
3076 }
3077 .crm-container .select2-results .crm-select2-row .crm-select2-row-label {
3078 font-size: 1.1em;
3079 }
3080 .crm-container .select2-results .crm-select2-row .crm-select2-row-description p {
3081 font-size: 0.8em;
3082 line-height: 1.5em;
3083 color: #696969;
3084 width: 100%;
3085 white-space: nowrap;
3086 overflow: hidden;
3087 text-overflow: ellipsis;
3088 }
3089 .crm-container .select2-results .select2-highlighted .crm-select2-row .crm-select2-row-description p {
3090 color: #f0f0f0;
3091 }
3092 .crm-container .select2-results .crm-select2-icon {
3093 width: 20px;
3094 height: 100%;
3095 float: left;
3096 }
3097 .crm-container .select2-results .crm-select2-icon .crm-icon {
3098 width: 16px;
3099 height: 16px;
3100 margin: 0;
3101 }
3102 .crm-container .select2-results li.select2-no-results {
3103 padding-left: 4px;
3104 padding-top: 4px;
3105 margin-left: 4px;
3106 }
3107 .crm-container .select2-results li {
3108 margin: 0;
3109 padding: 0;
3110 }
3111 .crm-container .crm-action-menu .select2-default span.select2-chosen {
3112 color: #2786C2;
3113 }
3114 .crm-container .select2-container[class*=" fa-"]:before {
3115 display: none;
3116 }
3117
3118 /* Restore this property otherwise our css overrides it */
3119 .select2-search input {
3120 box-sizing: border-box;
3121 }
3122
3123 /* jQuery UI styles */
3124 .crm-container .ui-progressbar-value {
3125 background-image: url("../packages/jquery/css/images/pbar-ani.gif");
3126 }
3127
3128 .crm-container.ui-dialog {
3129 box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
3130 }
3131 .crm-container.ui-dialog.ui-resizable:before {
3132 display:block;
3133 content: " ";
3134 width: 16px;
3135 height: 16px;
3136 background: url("../i/icons/jquery-ui-52534D.png") no-repeat -80px -224px;
3137 position: absolute;
3138 bottom: 0;
3139 right: 0;
3140 }
3141 .crm-container .ui-dialog-titlebar.ui-widget-header {
3142 background: url("../i/crm-button-bg.gif") repeat-x scroll left center #70716B;
3143 color: #F5F6F1;
3144 }
3145 .crm-container .ui-dialog-title {
3146 background: url("../i/item_sprites.png") no-repeat scroll -79px -47px;
3147 margin-left: -5px;
3148 padding-left: 25px;
3149 }
3150 .crm-container .ui-dialog-titlebar .ui-button {
3151 background-color: transparent;
3152 background-image: none;
3153 border: 1px none;
3154 color: inherit;
3155 }
3156 .crm-container .ui-dialog-titlebar .ui-button:hover {
3157 background-color: #cdcdcd;
3158 color: #555;
3159 }
3160
3161 /* unset the styling for the li in jstree */
3162 #tagtree ul {
3163 list-style: none;
3164 margin: 0px;
3165 padding: 0px;
3166 }
3167
3168 /* table row highlightng */
3169 .crm-container table.row-highlight tr:hover,
3170 .crm-container .crm-row-selected {
3171 background-color: #FFFFCC;
3172 }
3173 .crm-container table.row-highlight tr.even-row:hover,
3174 .crm-container table.row-highlight tr.even:hover,
3175 .crm-container .even-row.crm-row-selected,
3176 .crm-container .even.crm-row-selected {
3177 background-color: #fffdb2;
3178 }
3179
3180 #crm-container .crm-socialnetwork {
3181 margin-top: 1em;
3182 }
3183
3184 #crm-container .crm-fb-tweet-buttons {
3185 width: 93%;
3186 }
3187
3188 /* classes related to batch entry operation */
3189 .crm-container span.batch-edit,
3190 .crm-container span.batch-valid,
3191 .crm-container span.batch-invalid {
3192 padding: 2px 9px 2px 3px;
3193 margin: 2px 2px 3px 2px;
3194 cursor: pointer;
3195 background-position: -66px -114px;
3196 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
3197 }
3198
3199 .crm-container span.batch-valid {
3200 background-position: -322px -143px;
3201 }
3202
3203 .crm-container span.batch-invalid {
3204 background-position: -258px -143px;
3205 }
3206
3207 .crm-container #Entry ul#errorList {
3208 display: none;
3209 }
3210
3211 .crm-container table.batch-totals {
3212 border: 1px solid #7A7A60 !important;
3213 margin-top: 10px !important;
3214 }
3215
3216 /* grid div as table */
3217 .crm-container .crm-grid-table {
3218 display: table;
3219 border-collapse: collapse;
3220 border: 1px solid #7A7A60;
3221 background-color: #FFFFFF;
3222 margin: 10px 3px 10px !important;
3223 }
3224
3225 .crm-container .crm-batch-entry-table {
3226 border-right: 2px solid #7A7A60 !important;
3227 }
3228
3229 .crm-container .crm-grid-row,
3230 .crm-container .crm-grid-header {
3231 display: table-row;
3232 }
3233
3234 .crm-container .crm-grid-header {
3235 white-space: nowrap;
3236 }
3237
3238 .crm-container .crm-grid-cell {
3239 display: table-cell;
3240 border-right: 1px solid #EFEFEF;
3241 padding: 2px;
3242 vertical-align: top;
3243 }
3244
3245 /* editable placeholder containers - share some styles with crm-editable below */
3246 .crm-container .replace-plain,
3247 .crm-container textarea,
3248 .crm-container select.crm-form-multiselect {
3249 border: 1px solid #999;
3250 }
3251
3252 .crm-container .replace-plain {
3253 cursor: pointer;
3254 background: rgba(255,255,255,0.6);
3255 min-height: 1.4em;
3256 position: relative;
3257 padding: .4em 1.5em .3em .4em;
3258 }
3259
3260 .crm-container .replace-plain p {
3261 padding: .2em 0;
3262 margin: 0;
3263 }
3264
3265 .crm-container .replace-plain:focus,
3266 .crm-container .replace-plain:hover {
3267 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3268 background: rgba(255,255,255,0.8);
3269 }
3270
3271 .crm-container .replace-plain:before {
3272 content: "\f040";
3273 position: absolute;
3274 top: .4em;
3275 right: .5em;
3276 opacity: .5;
3277 }
3278
3279 /* in place edit */
3280 .crm-container .crm-editable-enabled {
3281 white-space: nowrap;
3282 padding-left: 2px;
3283 border: 2px dashed transparent;
3284 }
3285 .crm-container .crm-editable-textarea-enabled {
3286 white-space: normal;
3287 }
3288
3289 .crm-container .crm-editable-enabled:hover {
3290 border: 2px dashed #d1d1d1;
3291 cursor: pointer;
3292 }
3293
3294 .crm-container .crm-editable-enabled.crm-editable-editing:hover {
3295 border: 2px dashed transparent;
3296 cursor: auto;
3297 }
3298
3299 .crm-container span.crm-editable-textarea-enabled {
3300 width: 96%;
3301 }
3302 .crm-container span.crm-editable-enabled {
3303 display: inline-block !important;
3304 }
3305
3306 .crm-container .crm-editable-enabled .crm-i {
3307 opacity: .5;
3308 }
3309
3310 .crm-container .replace-plain a:active:before,
3311 .crm-container .replace-plain:focus:before,
3312 .crm-container .replace-plain:hover:before,
3313 .crm-container .crm-editable-enabled:hover .crm-i {
3314 opacity: 1;
3315 }
3316
3317 .crm-container .crm-editable-saving {
3318 background: #FFFFCC!important;
3319 opacity: 0.8;
3320 }
3321
3322 .crm-container h2.crm-editable-enabled input {
3323 min-height: 1.4em;
3324 }
3325 .crm-container .crm-editable-textarea-enabled textarea {
3326 min-height: 5em;
3327 }
3328
3329 .crm-editable-form {
3330 margin: 0 !important;
3331 padding: 0 !important;
3332 width: auto !important;
3333 position: relative;
3334 overflow: visible;
3335 }
3336
3337 .crm-editable-form input,
3338 .crm-editable-form textarea {
3339 margin-bottom: 0;
3340 padding-bottom: 0;
3341 }
3342
3343 .crm-editable-form button {
3344 position: absolute;
3345 bottom: -22px;
3346 left: 0;
3347 text-align: center;
3348 height: 23px;
3349 width: 32px;
3350 }
3351
3352 .crm-editable-form button[type=cancel] {
3353 left: 32px;
3354 }
3355
3356 /*crm-10345*/
3357 .crm-container .field-action {
3358 word-wrap: normal;
3359 }
3360
3361 .crm-container .field-action span.btn-slide {
3362 padding-left: 0;
3363 padding-right: 11px;
3364 }
3365 /*end crm-10345*/
3366
3367 /* alter display of parent and child groups in Manage Groups selector */
3368 #crm-container .crm-group-parent td.crm-group-name {
3369 padding-left: 20px;
3370 text-indent: -20px;
3371 }
3372
3373 #crm-container .crm-group-child td.crm-group-name.level_2 {
3374 padding-left: 40px;
3375 text-indent: -20px;
3376 }
3377 #crm-container .crm-group-child td.crm-group-name.level_3 {
3378 padding-left: 60px;
3379 text-indent: -20px;
3380 }
3381 #crm-container .crm-group-name span.crm-editable-enabled {
3382 text-indent: 0;
3383 }
3384
3385 #crm-container div.crm-row-parent-name {
3386 padding: 3px 0 0 .5em;
3387 opacity: 0.75;
3388 }
3389 #crm-container td span.show-children,
3390 #crm-container td span.crm-no-children {
3391 padding-left: 20px;
3392 }
3393
3394 #crm-container span.collapsed,
3395 #crm-container a.collapsed {
3396 background: url("../i/TreePlus.gif") no-repeat 0 0;
3397 padding-left: 19px;
3398 cursor: pointer;
3399 }
3400
3401 #crm-container span.expanded,
3402 #crm-container a.expanded {
3403 background: url("../i/TreeMinus.gif") no-repeat 0 0;
3404 padding-left: 19px;
3405 cursor: pointer;
3406 }
3407
3408 /* Notifications */
3409 #crm-notification-container {
3410 width: 350px;
3411 position: fixed;
3412 top: 45px;
3413 right: 15px;
3414 z-index: 999999;
3415 }
3416 #crm-notification-container div.ui-notify-message {
3417 padding: 10px;
3418 margin-bottom: 15px;
3419 color: #fff;
3420 border-radius: 8px;
3421 max-height: 600px;
3422 overflow: auto;
3423 }
3424 #crm-notification-container div.ui-notify-message h1 {
3425 font-size: 14px;
3426 margin: 0;
3427 padding: 4px;
3428 font-weight: bold;
3429 color: #fff;
3430 }
3431 #crm-notification-container div.ui-notify-message p {
3432 margin: 3px 0;
3433 padding: 0;
3434 line-height: 18px;
3435 }
3436 #crm-notification-container div.ui-notify-message:last-child {
3437 margin-bottom: 0;
3438 }
3439 #crm-notification-container div.ui-notify-message-style {
3440 background: rgba(0,0,0,0.8);
3441 box-shadow: 0 0 6px #000;
3442 }
3443 .crm-container div.ui-notify-message-style a,
3444 .crm-container div.ui-notify-message-style a:link {
3445 color: #CCD0FF;
3446 text-decoration: underline;
3447 }
3448 .crm-container div.ui-notify-message-style a:hover,
3449 .crm-container div.ui-notify-message-style a:focus {
3450 color: #B2B8FF;
3451 }
3452 .crm-container div.ui-notify-message-style .ui-button .ui-button-text {
3453 color: #2F2F2F;
3454 text-decoration: none;
3455 }
3456 #crm-notification-container .ui-notify-message .ui-notify-close {
3457 cursor: pointer;
3458 }
3459 #crm-notification-container .ui-notify-message a.ui-notify-cross {
3460 margin-top: -4px;
3461 float: right;
3462 text-decoration: none;
3463 font-size: 13px;
3464 font-weight: bold;
3465 text-shadow: 0 1px 1px #fff;
3466 padding: 2px;
3467 color: #FDFDFD;
3468 }
3469 #crm-notification-container .ui-notify-message .ui-notify-cross:hover,
3470 #crm-notification-container .ui-notify-message .ui-notify-cross:focus {
3471 color: #ffffab;
3472 }
3473 .crm-container div.ui-notify-message table,
3474 .crm-container div.ui-notify-message tbody,
3475 .crm-container div.ui-notify-message tr {
3476 border: 0 none;
3477 font-size: 11px;
3478 }
3479 .crm-container div.ui-notify-message table {
3480 margin: 10px 0;
3481 }
3482 .crm-container div.ui-notify-message td {
3483 background: rgba(255,255,255,0.1);
3484 border: 1px solid #111;
3485 font-size: 11px;
3486 color: #fff;
3487 }
3488 .crm-container div.ui-notify-message th {
3489 background: rgba(200,200,200,0.2);
3490 border: 1px solid #111;
3491 color: #eee;
3492 font-size: 11px;
3493 }
3494 .crm-container div.ui-notify-message table a.action-item {
3495 margin-right: 5px;
3496 }
3497 .crm-container div.ui-notify-message ul,
3498 .crm-container div.ui-notify-message ol {
3499 margin: 0.5em 0 1em;
3500 padding: 0 0 0 0.5em;
3501 }
3502
3503 .crm-container div.ui-notify-message div.icon,
3504 .crm-status-icon {
3505 background: transparent url("../i/message-icons.png") no-repeat 0 0;
3506 width: 24px;
3507 height: 24px;
3508 margin-right: 6px;
3509 }
3510 .crm-container div.ui-notify-message.success div.icon,
3511 .crm-status-icon.success {
3512 background-position: -24px 0;
3513 }
3514 .crm-container div.ui-notify-message.info div.icon,
3515 .crm-status-icon.info {
3516 background-position: -48px 0;
3517 }
3518 .crm-container div.ui-notify-message.error div.icon,
3519 .crm-status-icon.error {
3520 background-position: -72px 0;
3521 }
3522 .crm-container div.ui-notify-message.none div.icon {
3523 display: none;
3524 }
3525
3526 span.crm-status-icon {
3527 display: inline-block;
3528 }
3529
3530 /* Public Pages */
3531
3532 #crm-container.crm-public input[type="text"],
3533 #crm-container.crm-public input[type="password"],
3534 #crm-container.crm-public input[type="email"],
3535 #crm-container.crm-public select {
3536 font-size: 15px;
3537 padding: 5px;
3538 border-radius: 3px;
3539 vertical-align: middle;
3540 max-width: 100%;
3541 }
3542
3543 #crm-container.crm-public .label,
3544 #crm-container.crm-public .price-field-amount {
3545 padding-top: 6px;
3546 font-size: 15px;
3547 }
3548
3549 .crm-container.crm-public .select2-container,
3550 .crm-container.crm-public .select2-results {
3551 font-size: 14px;
3552 }
3553 .crm-container.crm-public .select2-container .select2-choice {
3554 padding: 5px 5px 5px 8px;
3555 }
3556 .crm-container.crm-public .select2-container-multi .select2-choices {
3557 padding: 4px;
3558 }
3559 .crm-public .select2-container .select2-choice .select2-arrow {
3560 width: 20px;
3561 }
3562 .crm-public .select2-container .select2-choice .select2-arrow b {
3563 position: relative;
3564 top: 2px;
3565 left: 2px;
3566 }
3567 .crm-container.crm-public .select2-container-multi .select2-choices .select2-search-choice {
3568 padding: 3px 3px 3px 20px;
3569 }
3570 .crm-container.crm-public .select2-container-multi .select2-choices:before {
3571 top: 9px;
3572 }
3573
3574 .crm-public .crm-profile-view .content {
3575 padding-top: 6px;
3576 }
3577
3578 #crm-container.crm-public .calc-value,
3579 #crm-container.crm-public .content {
3580 padding-top: 6px;
3581 font-size: 15px;
3582 }
3583
3584 #crm-container.crm-public .crm-section,
3585 .crm-section {
3586 margin-bottom: 0;
3587 }
3588
3589 #crm-container.crm-public #crm-submit-buttons {
3590 margin-top: 30px;
3591 }
3592
3593 #crm-container.crm-public #premiums-listings {
3594 margin-top: 10px;
3595 min-width: 450px;
3596 width: 60%;
3597 }
3598
3599 #crm-container.crm-public #premiums-listings .premium {
3600 margin: 5px 0;
3601 }
3602
3603 #crm-container.crm-public #premiums-listings .premium .premium-short {
3604 padding: 10px;
3605 border: 2px solid #ffffff;
3606 background-color: #f0f0f0;
3607 cursor: pointer;
3608 }
3609
3610 #crm-container.crm-public #premiums-listings .premium .premium-short:hover {
3611 border: 2px solid #b0b0b0;
3612 }
3613
3614 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail {
3615 float: left;
3616 width: 50px;
3617 }
3618
3619 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail img {
3620 width: 50px;
3621 }
3622
3623 #crm-container.crm-public #premiums-listings .premium .premium-short-content {
3624 text-align: center;
3625 font-size: 20px;
3626 font-weight: bold;
3627 padding: 20px;
3628 }
3629
3630 #crm-container.crm-public #premiums-listings .premium .premium-full {
3631 display: none;
3632 padding: 5px;
3633 border: 2px solid #cfcfcf;
3634 background-color: #ffffff;
3635 }
3636
3637 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image {
3638 float: left;
3639 width: 200px;
3640 padding: 10px;
3641 }
3642
3643 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image img {
3644 width: 200px;
3645 }
3646
3647 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-title {
3648 text-align: center;
3649 font-size: 1.5em;
3650 font-weight: bold;
3651 padding: 20px;
3652 }
3653
3654 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-min {
3655 font-size: .9em;
3656 font-style: italic;
3657 }
3658
3659 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-short {
3660 text-align: center;
3661 font-size: 1.3em;
3662 padding: 10px;
3663 }
3664
3665 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-full {
3666 text-align: center;
3667 font-size: 1.3em;
3668 font-weight: bold;
3669 padding: 10px;
3670 }
3671
3672 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-short,
3673 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-image,
3674 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-title,
3675 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-description,
3676 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-options,
3677 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-min {
3678 opacity: 0.5;
3679 }
3680 #crm-container.crm-public #premiums-listings .premium .premium-full-disabled {
3681 display: none;
3682 }
3683 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full-disabled {
3684 display: block;
3685 color: #ff0000;
3686 text-align: center;
3687 font-weight: bold;
3688 margin-bottom: .5em;
3689 }
3690
3691 #crm-container.crm-public .price-set-row {
3692 font-size: 15px;
3693 margin-bottom: 5px;
3694 }
3695
3696 #crm-container.crm-public .price-set-row input,
3697 #crm-container.crm-public .price-set-row label {
3698 vertical-align: middle;
3699 cursor: pointer;
3700 }
3701
3702 #crm-container.crm-public .price-set-row .crm-price-amount-amount {
3703 min-width: 2em;
3704 color: #333333;
3705 }
3706
3707 #crm-container.crm-public .price-set-row .crm-price-amount-label {
3708 color: #444444;
3709 font-weight: bold;
3710 }
3711
3712 #crm-container.crm-public .price-set-row .highlight label {
3713 color: #000000;
3714 font-weight: bold;
3715 }
3716
3717 #crm-container.crm-public .price-set-row .highlight .crm-price-amount-label {
3718 color: #222222;
3719 }
3720
3721 #crm-container.crm-public .price-set-option-content > tt {
3722 display: none;
3723 }
3724
3725 #crm-container .sold-out-option,
3726 #crm-container .price-set-row span.sold-out-option .crm-price-amount-label,
3727 #crm-container .price-set-row span.sold-out-option .crm-price-amount-amount {
3728 font-style: italic !important;
3729 font-weight: normal !important;
3730 font-size: 15px;
3731 color: #666 !important;
3732 }
3733
3734 /* Styles for credit card payment logos */
3735 .crm-container .credit_card_type-section .crm-credit_card_type-icons a {
3736 display: block;
3737 float: left;
3738 width: 50px;
3739 height: 30px;
3740 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3741 text-indent: -20000px;
3742 margin-right: 10px;
3743 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
3744 border-radius: 3px;
3745 border: 1px solid #FFFFFF;
3746 }
3747
3748 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-visa {
3749 background-position: -50px 0;
3750 }
3751
3752 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-mastercard {
3753 background-position: -100px 0;
3754 }
3755
3756 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-amex {
3757 background-position: -150px 0;
3758 }
3759
3760 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-discover {
3761 background-position: -200px 0;
3762 }
3763
3764 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-jcb {
3765 background-position: -250px 0;
3766 }
3767
3768 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-unionpay {
3769 background-position: -300px 0;
3770 }
3771
3772 .crm-container .cvv2-icon {
3773 display: inline-block;
3774 width: 50px;
3775 height: 30px;
3776 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3777 }
3778
3779 /* Avoid weird border around the images (some themes will add a border around images) */
3780 #crm-container .credit_card_type-section .crm-credit_card_type-icons a,
3781 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:link,
3782 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:hover,
3783 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:focus,
3784 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:active {
3785 color: #fff;
3786 }
3787
3788 .crm-container .paper-icon {
3789 background-position: -101px -222px;background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
3790 }
3791
3792 .crm-container .strikethrough {
3793 text-decoration: line-through;
3794 }
3795
3796 .crm-container input.ng-invalid.ng-dirty,
3797 .crm-container select.ng-invalid.ng-dirty,
3798 .crm-container textarea.ng-invalid.ng-dirty {
3799 border: 1px solid red;
3800 }
3801 .crm-container input.ng-valid,
3802 .crm-container input.ng-pristine,
3803 .crm-container textarea.ng-valid,
3804 .crm-container textarea.ng-pristine,
3805 .crm-container select.ng-valid,
3806 .crm-container select.ng-pristine{
3807 border: 1px solid #666;
3808 }
3809
3810 /* block-ui */
3811 .crm-container .blockUI.blockOverlay {
3812 background: url("../i/loading-overlay.gif") center center no-repeat white !important;
3813 }
3814
3815 .crm-container table.mergecontact thead th {
3816 width:30%;
3817 }
3818 .crm-container .crm-ui-datetime.ng-dirty input.incomplete {
3819 border: 1px solid red;
3820 }
3821
3822 .crm-container .crm-grip {
3823 cursor: move;
3824 }