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