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