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