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