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