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