Merge pull request #20394 from eileenmcnaughton/entry
[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 }
1857
1858 /* crm button style */
1859
1860 .crm-container .crm-submit-buttons,
1861 .crm-container .action-link {
1862 height: 27px;
1863 margin: 4px 0 4px 2px;
1864 }
1865
1866 .crm-container .register_link-top {
1867 float: right;
1868 margin-left: 8px;
1869 }
1870
1871 .crm-container .crm-clear-link {
1872 margin-left: .5em;
1873 }
1874
1875 .crm-container .crm-button-type-cancel,
1876 .crm-container .crm-button-type-back {
1877 margin-left: 20px;
1878 }
1879
1880 /* Reset WP backend min-height for buttons */
1881
1882 .wp-core-ui .crm-container .button {
1883 min-height: 0;
1884 }
1885
1886 .crm-container a.button,
1887 .crm-container a.button:link,
1888 .crm-container a.button:visited,
1889 .crm-container .ui-dialog-buttonset .ui-button,
1890 .crm-container .crm-button {
1891 text-shadow: 0 1px 0 black;
1892 background: #696969;
1893 color: #FFF;
1894 font-size: 13px;
1895 font-weight: normal;
1896 margin: 0 6px 0 0;
1897 padding: 2px 6px;
1898 text-decoration: none;
1899 cursor: pointer;
1900 border: 1px solid #3e3e3e;
1901 display: block;
1902 float: left;
1903 overflow: hidden;
1904 line-height: 135%;
1905 border-radius: 3px;
1906 }
1907
1908 .crm-container .crm-button:hover,
1909 .crm-container .crm-button:focus,
1910 .crm-container .ui-dialog-buttonset .ui-button:hover,
1911 .crm-container .ui-dialog-buttonset .ui-button:focus,
1912 .crm-container a.button:hover,
1913 .crm-container a.button:focus {
1914 background: #3e3e3e;
1915 }
1916
1917 .crm-container .crm-button-disabled,
1918 .crm-container .crm-button.crm-button-disabled,
1919 .crm-container .ui-dialog-buttonset .ui-button[disabled],
1920 .crm-container .crm-button[disabled] {
1921 opacity: .6;
1922 cursor: default;
1923 }
1924
1925 .crm-container .ui-dialog-buttonpane {
1926 background: linear-gradient(to bottom, #f2f2f2 0%,#ffffff 35%);
1927 }
1928
1929 .crm-container .ui-dialog-buttonset .ui-button .ui-icon {
1930 background-image: url("../i/icons/jquery-ui-FFFFFF.png");
1931 }
1932
1933 /* Override of a line in crm-i.css that may not be important anymore */
1934 .crm-container .ui-dialog-buttonset .ui-button .ui-icon[class*=" fa-"] {
1935 margin-top: 0;
1936 }
1937
1938 /* No crm-button styling for PayPal Express buttons */
1939 .crm-container input#_qf_Register_upload_express,
1940 .crm-container input#_qf_Payment_upload_express,
1941 .crm-container input#_qf_Main_upload_express {
1942 background: none;
1943 margin: 0;
1944 padding: 0;
1945 border: none;
1946 }
1947
1948 /* create new XXX style (drupal block) */
1949
1950 #crm-participant-wrapper,
1951 #crm-event-links-wrapper,
1952 #crm-contribpage-links-wrapper,
1953 #crm-create-new-wrapper {
1954 position: relative;
1955 float: left;
1956 }
1957
1958 #crm-event-links-list,
1959 #crm-contribpage-links-list,
1960 #crm-create-new-list,
1961 #crm-contact-actions-list,
1962 #crm-participant-list {
1963 position: absolute;
1964 display: none;
1965 top: 24px;
1966 width: 220px;
1967 left: 0;
1968 z-index: 15;
1969 }
1970
1971 #crm-create-new-list {
1972 width: 160px;
1973 }
1974
1975 #crm-event-links-list .crm-event-info ul,
1976 #crm-event-links-list .crm-event-test ul,
1977 #crm-event-links-list .crm-event-live ul,
1978 #crm-contribpage-links-list .crm-contribpage-contribution ul,
1979 #crm-contribpage-links-list .crm-contribpage-test ul,
1980 #crm-contribpage-links-list .crm-contribpage-live ul,
1981 #crm-participant-list .crm-participant-counted ul,
1982 #crm-participant-list .crm-participant-not-counted ul,
1983 #crm-participant-list .crm-participant-listing ul,
1984 #crm-create-new-list ul {
1985 width: auto;
1986 margin: 0;
1987 padding: 0;
1988 }
1989
1990 /* setup for icons */
1991
1992 .ac_results ul li {
1993 background-image: url('');
1994 }
1995
1996 .crm-container .ui-icon,
1997 .crm-container .icon {
1998 background-image: url("../i/icons/jquery-ui-52534D.png")
1999 }
2000
2001 .crm-container .icon {
2002 height: 16px;
2003 width: 16px;
2004 float: left;
2005 text-indent: -10000px;
2006 }
2007
2008 .crm-container span.icon,
2009 .crm-container a.ui-icon {
2010 float: none;
2011 display: inline-block;
2012 }
2013
2014 .crm-container .button .icon,
2015 .crm-container a.invoiceButton .icon,
2016 .crm-container .crm-button .icon,
2017 .crm-accordion-header .icon {
2018 position: relative;
2019 top: -2px;
2020 background-image: url("../i/icons/jquery-ui-FFFFFF.png");
2021 }
2022
2023 .crm-container span.crm-button .icon {
2024 margin-top: 3px;
2025 }
2026
2027 .crm-container .button .icon {
2028 float: left;
2029 display: block;
2030 margin-right: 3px;
2031 top: -1px;
2032 }
2033
2034 .crm-container .button .icon.css_right {
2035 float: right;
2036 margin-right: 0;
2037 margin-left: 3px;
2038 }
2039
2040 .crm-container .delete-icon {
2041 background-position: -176px -96px;
2042 }
2043 .crm-container .red-icon,
2044 .crm-container a:hover .icon.delete-icon,
2045 .crm-container .crm-button:hover .icon.ui-icon-trash,
2046 .crm-container .crm-hover-button:hover .icon.ui-icon-trash,
2047 .crm-container span:hover > .icon.delete-icon {
2048 background-image: url("../i/icons/jquery-ui-8A1F11.png");
2049 }
2050
2051 /* Font Awesome */
2052
2053 .crm-container a .crm-i,
2054 .crm-container a:link .crm-i,
2055 .crm-container a:visited .crm-i,
2056 .crm-container a:active .crm-i,
2057 .crm-container a:hover .crm-i,
2058 .crm-container a .ui-icon[class*=" fa-"],
2059 .crm-container a:link .ui-icon[class*=" fa-"],
2060 .crm-container a:visited .ui-icon[class*=" fa-"],
2061 .crm-container a:active .ui-icon[class*=" fa-"],
2062 .crm-container a:hover .ui-icon[class*=" fa-"] {
2063 color: inherit;
2064 }
2065
2066 a.crm-i:hover {
2067 text-decoration: none;
2068 }
2069
2070 .crm-container a:hover .crm-i.fa-trash,
2071 .crm-container .crm-button:hover .crm-i.fa-trash,
2072 .crm-container .crm-hover-button:hover .crm-i.fa-trash,
2073 .crm-container span:hover > .crm-i.fa-trash,
2074 .crm-i.crm-i-red {
2075 color: #8A1F11;
2076 }
2077
2078 .crm-i.crm-i-blue {
2079 color: #6177D5;
2080 }
2081
2082 .crm-i.crm-i-green {
2083 color: #86c661;
2084 }
2085
2086 .crm-container a.helpicon {
2087 opacity: .8;
2088 }
2089
2090 .crm-container a.helpicon:hover,
2091 .crm-container a.helpicon:focus {
2092 opacity: 1;
2093 }
2094
2095 /* Same as fa-question-circle */
2096 .crm-container a.helpicon:before {
2097 content: "\f059";
2098 }
2099
2100 div.crm-accordion-header a.helpicon {
2101 color: inherit;
2102 }
2103 div.crm-master-accordion-header a.helpicon {
2104 color: #2786c2;
2105 }
2106
2107 /* These .crm-icon classes use item_sprites.png */
2108
2109 .crm-container .crm-icon {
2110 background-image: url('../i/item_sprites.png');
2111 margin: 2px 4px 0 0;
2112 text-indent: -10000px;
2113 /* for accessibility reason, put the name of the type/subtype in the icon div (it will be hidden and replaced by the icon) */
2114 }
2115
2116 .select2-results .select2-highlighted .Individual-icon,
2117 .crm-container .Individual-icon {
2118 background-position: 0 0;
2119 }
2120 .select2-results .select2-highlighted .Organization-icon,
2121 .crm-container .Organization-icon {
2122 background-position: -48px 0;
2123 }
2124 .select2-results .select2-highlighted .Household-icon,
2125 .crm-container .Household-icon {
2126 background-position: -32px 0;
2127 }
2128 .crm-container .Group-icon {
2129 background-position: -16px 0;
2130 }
2131 .select2-results .Individual-icon,
2132 .crm-container .Individual-subtype-icon {
2133 background-position: 0 -48px;
2134 }
2135 .select2-results .Household-icon,
2136 .crm-container .Household-subtype-icon {
2137 background-position: -32px -48px;
2138 }
2139 .select2-results .Organization-icon,
2140 .crm-container .Organization-subtype-icon {
2141 background-position: -48px -48px;
2142 }
2143
2144 .crm-container .Activity-icon {
2145 background-position: -64px 0;
2146 }
2147 .crm-container .Case-icon {
2148 background-position: -80px 0;
2149 }
2150 .crm-container .Grant-icon {
2151 background-position: 0 -16px;
2152 }
2153 .crm-container .Contribution-icon {
2154 background-position: -16px -16px;
2155 }
2156 .crm-container .Pledge-icon {
2157 background-position: -16px -16px;
2158 }
2159 .crm-container .Membership-icon {
2160 background-position: -32px -16px;
2161 }
2162 .crm-container .Participant-icon {
2163 background-position: 0 -32px;
2164 }
2165 .crm-container .Note-icon {
2166 background-position: -16px -32px;
2167 }
2168 .crm-container .Relationship-icon {
2169 background-position: -32px -32px;
2170 }
2171
2172 /* accordion styles */
2173
2174 .crm-container .crm-accordion-header,
2175 .crm-container .crm-collapsible .collapsible-title,
2176 .crm-container span.collapsed,
2177 .crm-container a.collapsed,
2178 .crm-container .crm-expand-row {
2179 cursor: pointer;
2180 }
2181
2182 .crm-container .crm-accordion-wrapper {
2183 margin-bottom: 4px;
2184 }
2185
2186 /* Specific types of headers */
2187
2188 #crm-container .widget-content .crm-accordion-header {
2189 background-color: #EFEFE5;
2190 color: #080808;
2191 }
2192
2193 .crm-container a.crm-expand-row:before,
2194 .crm-container a.crm-expand-row:link::before,
2195 .crm-container a.crm-expand-row:visited::before {
2196 color: #3E3E3E;
2197 }
2198
2199 .crm-container .crm-accordion-header {
2200 color: #F5F6F1;
2201 font-weight: normal;
2202 padding: 4px 8px;
2203 background-color: #5D677B;
2204 border-radius: 4px 4px 0 0;
2205 }
2206
2207 .crm-container .collapsed .crm-accordion-header {
2208 border-radius: 4px;
2209 }
2210
2211 .crm-container .crm-accordion-header.active {
2212 font-weight: bold;
2213 background-color: #3E3E3E;
2214 }
2215
2216 .crm-container .crm-accordion-header:hover {
2217 background-color: #2F2F2E;
2218 }
2219
2220 #crm-container .widget-content .crm-accordion-header:hover {
2221 background-color: #e8e8de;
2222 }
2223
2224 .crm-container .crm-accordion-wrapper .crm-master-accordion-header {
2225 background-color: transparent;
2226 color: #3E3E3E;
2227 }
2228
2229 .crm-container .crm-accordion-wrapper .crm-master-accordion-header {
2230 font-size: 16px;
2231 }
2232
2233 .crm-container .crm-master-accordion-header.crm-accordion-header:hover,
2234 .crm-container .crm-collapsible .collapsible-title:hover {
2235 color: #121A2D;
2236 }
2237
2238 .crm-container .collapsed .crm-accordion-body,
2239 .crm-container .crm-collapsible.collapsed .collapsible-title + * {
2240 display: none;
2241 }
2242
2243 /* Collapse icon */
2244
2245 /* General icon settings for all collapsible things */
2246 .crm-container .crm-accordion-header:before,
2247 .crm-container .crm-collapsible .collapsible-title:before,
2248 .crm-container span.collapsed:before,
2249 .crm-container a.collapsed:before,
2250 .crm-container .crm-expand-row:before {
2251 font-family: "FontAwesome";
2252 display: inline-block;
2253 width: 1em;
2254 content: "\f0da";
2255 font-size: 13px;
2256 }
2257
2258 /* Collapsed icon */
2259 .crm-container .collapsed .crm-accordion-header:before,
2260 .crm-container .crm-collapsible.collapsed .collapsible-title:before,
2261 .crm-container span.collapsed:before,
2262 .crm-container a.collapsed:before,
2263 .crm-container .crm-expand-row:before {
2264 content: "\f0da";
2265 }
2266
2267 /* Expanded icon */
2268 .crm-container .crm-accordion-header:before,
2269 .crm-container .crm-collapsible .collapsible-title:before,
2270 .crm-container span.expanded:before,
2271 .crm-container a.expanded:before,
2272 .crm-container .crm-expand-row.expanded:before {
2273 font-family: "FontAwesome";
2274 content: "\f0d7";
2275 }
2276
2277 /* Accordion bodies */
2278
2279 .crm-container .crm-accordion-body {
2280 border-radius: 0 0 4px 4px;
2281 border: 1px solid #70716B;
2282 border-top: 0;
2283 padding: 4px 0;
2284 }
2285
2286 #crm-container .widget-content .crm-accordion-body {
2287 border-color: #e8e8de;
2288 }
2289
2290 .crm-container .crm-master-accordion-header+.crm-accordion-body {
2291 border: none;
2292 padding: 0;
2293 }
2294
2295 #crm-container .widget-content .crm-accordion-body,
2296 .crm-container .crm-accordion-body.padded {
2297 padding-left: .5em;
2298 padding-right: .5em;
2299 }
2300
2301 .crm-container .crm-child-row > td {
2302 padding-left: 1.8em;
2303 }
2304
2305 /* Status message box */
2306 .crm-status-box-outer {
2307 position: fixed;
2308 z-index: 99999;
2309 right: 0;
2310 top: 0;
2311 }
2312
2313 .crm-status-box-outer.status-start {
2314 background: #F8FF03 url("../i/animated-overlay.gif");
2315 }
2316
2317 .crm-status-box-outer .crm-status-box-inner {
2318 padding: 3px 14px;
2319 font-size: 13px !important;
2320 color: #eee;
2321 font-weight: bold;
2322 text-align: center;
2323 background: rgba(94, 91, 31, 0.9);
2324 }
2325
2326 .crm-status-box-outer.status-success .crm-status-box-inner {
2327 background: rgba(30, 143, 36, 0.7);
2328 }
2329
2330 .crm-status-box-outer.status-error .crm-status-box-inner {
2331 background: rgba(255, 7, 0, 0.7);
2332 }
2333
2334 .crm-container .crm-summary-link {
2335 position: relative;
2336 z-index: 16;
2337 }
2338
2339 .crm-container .crm-tooltip-wrapper {
2340 position: absolute;
2341 bottom: 0;
2342 left: -36px;
2343 overflow: hidden;
2344 z-index: 1000;
2345 padding-bottom: 10px;
2346 background: transparent url('../i/overlay-pointer.png') no-repeat bottom left;
2347 font-size: 13px;
2348 display: none;
2349 }
2350
2351 .crm-container .crm-tooltip-down .crm-tooltip-wrapper {
2352 top: 20px;
2353 padding-top: 10px;
2354 background: transparent url('../i/overlay-pointer.png') no-repeat top left;
2355 overflow: visible;
2356 }
2357
2358 .crm-container .crm-tooltip-active {
2359 z-index: 20;
2360 }
2361
2362 .crm-container .crm-tooltip-active .crm-tooltip-wrapper {
2363 display: block;
2364 }
2365
2366 .crm-container .crm-tooltip {
2367 padding: 4px;
2368 background-color: #2f2f2e;
2369 color: #FFF;
2370 margin-left: 11px;
2371 min-width: 20px;
2372 min-height: 20px;
2373 }
2374 #crm-container .crm-tooltip table,
2375 #crm-container .crm-tooltip table tr td {
2376 background-color: #2f2f2e;
2377 border: none;
2378 color: #FFF;
2379 word-wrap: break-word;
2380 }
2381 .crm-container .crm-tooltip .crm-summary-group {
2382 width: 700px;
2383 margin-bottom: 0;
2384 }
2385
2386 .crm-container .crm-tooltip .crm-report-overlay {
2387 width: 500px;
2388 margin-bottom: 0;
2389 }
2390
2391 .crm-container .crm-tooltip .crm-report-overlay thead td {
2392 font-weight: bold;
2393 }
2394
2395 .crm-container .crm-summary-group h2 {
2396 padding: 2px 4px 0 4px;
2397 font-size: 14px;
2398 color: #FFF;
2399 margin-bottom: 0;
2400 }
2401
2402 /* crm-summary-group appears outside crm-container for contact summary icon overlay */
2403 .crm-container .crm-summary-group .crm-section .label {
2404 text-align: left;
2405 width: 40%;
2406 font-size: 11px;
2407 color: #A7A7A7;
2408 background-color: transparent;
2409 }
2410
2411 .crm-container .crm-summary-group .crm-section .content {
2412 margin-left: 41%;
2413 }
2414
2415 .crm-container .crm-tooltip table .crm-summary-col-1 {
2416 width: 350px;
2417 }
2418
2419 .crm-container .crm-tooltip table .crm-summary-col-1 div {
2420 width: auto;
2421 }
2422
2423 /* Class for tokens and helpicon */
2424 .crm-container .helpIcon {
2425 float: right;
2426 position: relative;
2427 z-index: 1;
2428 margin-right: 45px;
2429 }
2430
2431 #crm-container ul li {
2432 list-style-image: none;
2433 }
2434
2435 /* privacy icons */
2436 #crm-container div span.privacy-flag {
2437 float: right;
2438 font-size: 80%;
2439 }
2440
2441 /* specific, targeted fixes */
2442 #crm-container .dashboard-elements,
2443 #crm-container #membership-listings,
2444 #crm-container #premiums-listings,
2445 #crm-container #searchForm table {
2446 margin: 0;
2447 border-collapse: collapse;
2448 border: 0 none;
2449 }
2450
2451 /* ID selector is needed to override Drupal 2em margin-bottom on forms (we don't want to give up that space) */
2452 div#crm-container form,
2453 div.crm-container form {
2454 margin-bottom: 0;
2455 }
2456
2457 /** DATATABLES **/
2458 /*
2459 * jQuery UI specific styling
2460 */
2461
2462 .crm-container .paging_two_button .ui-button {
2463 float: left;
2464 cursor: pointer;
2465 }
2466
2467 .crm-container .paging_full_numbers .ui-button {
2468 padding: 2px 6px;
2469 margin: 0;
2470 cursor: pointer;
2471 }
2472
2473 .crm-container .dataTables_paginate .ui-button {
2474 margin-right: -0.1em !important;
2475 }
2476
2477 .crm-container .paging_full_numbers {
2478 width: 350px !important;
2479 }
2480
2481 .crm-container .dataTables_wrapper .ui-toolbar {
2482 padding: 5px;
2483 }
2484
2485 .crm-container .dataTables_paginate {
2486 width: auto;
2487 }
2488
2489 .crm-container .dataTables_info {
2490 padding-top: 3px;
2491 }
2492
2493 .crm-container div.dataTables_wrapper .ui-widget-header {
2494 font-weight: normal;
2495 }
2496
2497
2498 /*
2499 * Sort arrow icon positioning
2500 */
2501 .crm-container table.display thead th div.DataTables_sort_wrapper {
2502 position: relative;
2503 padding-right: 20px;
2504 }
2505
2506 .crm-container table.display thead th div.DataTables_sort_wrapper span {
2507 position: absolute;
2508 top: 50%;
2509 margin-top: -8px;
2510 right: 0;
2511 }
2512
2513 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2514 * DataTables features
2515 */
2516
2517 .crm-container .dataTables_wrapper {
2518 position: relative;
2519 clear: both;
2520 zoom: 1; /* Feeling sorry for IE */
2521 }
2522
2523 .crm-container .dataTables_processing {
2524 position: absolute;
2525 top: 0;
2526 left: 0;
2527 width: 100%;
2528 height: 100%;
2529 margin: 0;
2530 padding: 0;
2531 background: url("../i/loading-overlay.gif") center center no-repeat white;
2532 opacity: 0.6;
2533 cursor: wait;
2534 }
2535
2536 .crm-container .dataTables_length {
2537 width: 40%;
2538 float: none;
2539 padding-bottom: 5px;
2540 }
2541
2542 .crm-container .dataTables_filter {
2543 width: 50%;
2544 float: right;
2545 text-align: right;
2546 }
2547
2548 .crm-container .dataTables_info {
2549 width: 60%;
2550 float: left;
2551 }
2552
2553 .crm-container .dataTables_paginate {
2554 float: right;
2555 text-align: right;
2556 }
2557
2558
2559 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2560 * DataTables display
2561 */
2562 .crm-container table.display {
2563 margin: 0 auto;
2564 clear: both;
2565 width: 100%;
2566 }
2567
2568 .crm-container table.display thead th {
2569 padding: 3px 18px 3px 10px;
2570 border-bottom: 1px solid black;
2571 font-weight: bold;
2572 cursor: pointer;
2573 }
2574
2575 .crm-container table.display thead th.sorting_disabled {
2576 cursor: default;
2577 }
2578
2579 .crm-container table.display tfoot th {
2580 padding: 3px 18px 3px 10px;
2581 border-top: 1px solid black;
2582 font-weight: bold;
2583 }
2584
2585 .crm-container table.display tr.heading2 td {
2586 border-bottom: 1px solid #aaa;
2587 }
2588
2589 .crm-container table.display td {
2590 padding: 3px 10px;
2591 }
2592
2593 .crm-container table td.center {
2594 text-align: center;
2595 }
2596 /* Fix weird color added to some datatables' sort column */
2597 .crm-container table.dataTable.display tbody tr > td.sorting_1 {
2598 background-color: transparent;
2599 }
2600
2601 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2602 * Datatables misc
2603 */
2604 .crm-container .dataTables_scroll {
2605 clear: both;
2606 }
2607
2608 .crm-container .dataTables_scrollBody {
2609 *margin-top: -1px;
2610 -webkit-overflow-scrolling: touch;
2611 }
2612
2613 .crm-container .top .dataTables_info {
2614 float: none;
2615 }
2616
2617 .crm-container .dataTables_empty {
2618 text-align: center;
2619 }
2620
2621 .crm-container tfoot input {
2622 margin: 0.5em 0;
2623 width: 100%;
2624 color: #444;
2625 }
2626
2627 /* DataTables fixes */
2628 .crm-container .crm-datatable-pager-top {
2629 padding-top: 5px;
2630 padding-bottom: 25px;
2631 }
2632 .crm-container .crm-datatable-pager-bottom {
2633 padding-top: 10px;
2634 padding-bottom: 25px;
2635 }
2636 .crm-container .crm-datatable-pager-top .dataTables_length {
2637 float: left;
2638 }
2639 .crm-container .css_right {
2640 float: right;
2641 }
2642
2643 /* Date plugin */
2644 .crm-container input.dateplugin,
2645 .crm-container input.crm-form-date {
2646 width: 9em;
2647 }
2648
2649 .crm-container input.crm-placeholder-icon::placeholder {
2650 font-family: "FontAwesome";
2651 text-align: right;
2652 }
2653 .crm-container input.crm-placeholder-icon::-ms-input-placeholder {
2654 font-family: "FontAwesome";
2655 text-align: right;
2656 }
2657 .crm-container input.crm-placeholder-icon:-ms-input-placeholder {
2658 font-family: "FontAwesome";
2659 text-align: right;
2660 }
2661
2662 .crm-container div.batch-update {
2663 overflow: visible;
2664 }
2665
2666 /*chart */
2667 #chartData {
2668 overflow: auto;
2669 }
2670
2671 #crm-container .signature {
2672 width: 495px;
2673 }
2674
2675 /* editor skin tweaks */
2676
2677 #crm-container span.cke_skin_kama {
2678 border: none;
2679 }
2680 #crm-container .cke_skin_kama .cke_wrapper {
2681 background-image: none;
2682 }
2683
2684 /* skin */
2685
2686 #crm-container .crm-title {
2687 line-height: 1.1;
2688 margin-bottom: 8px;
2689 }
2690
2691 /* tables */
2692 .crm-container table {
2693 border: 1px solid #efefef;
2694 }
2695
2696 .crm-container .crm-form-block table {
2697 border: none;
2698 }
2699 .crm-container tr.even,
2700 .crm-container tr.odd,
2701 .crm-container tbody th {
2702 border-color: #FFF #FFF #efefef #FFF;
2703 }
2704
2705 .crm-container tr.even-row td,
2706 .crm-container tr.odd-row td,
2707 .crm-container table.display td,
2708 .crm-container table.pagerDisplay td {
2709 border-color: #efefef;
2710 border-right: 1px solid #efefef;
2711 border-collapse: collapse;
2712 }
2713 .crm-container .odd-row,
2714 .crm-container .odd,
2715 tbody.scrollContent {
2716 background-color: #FAFAFA;
2717 }
2718 .crm-container .even-row,
2719 .crm-container .even,
2720 tbody.scrollContent tr.alternateRow {
2721 background-color: #EFEFEF;
2722 }
2723
2724 .crm-container td.checkbox {
2725 vertical-align: middle;
2726 text-align: center;
2727 }
2728 .crm-container tr.columnheader a.sorting {
2729 color: #a7a7a7;
2730 }
2731
2732 .crm-container a.sorting,
2733 .crm-container a.sorting_desc,
2734 .crm-container a.sorting_asc {
2735 color: #A7A7A7;
2736 background: url("../bower_components/datatables/media/images/sort_both.png") no-repeat left center;
2737 padding-left: 20px;
2738 }
2739 .crm-container a.sorting_desc,
2740 .crm-container a.sorting_asc {
2741 color: #000;
2742 }
2743
2744 .crm-container tr a.sorting,
2745 .crm-container tr a.sorting_asc,
2746 .crm-container tr a.sorting_desc {
2747 color: #52534D;
2748 }
2749
2750 .crm-container table thead a.sorting_asc {
2751 background: url("../bower_components/datatables/media/images/sort_asc.png") no-repeat left center;
2752 }
2753 .crm-container table thead a.sorting_desc {
2754 background: url("../bower_components/datatables/media/images/sort_desc.png") no-repeat left center;
2755 }
2756 .crm-container table thead a.sorting_asc_disabled {
2757 background: url("../bower_components/datatables/media/images/sort_asc_disabled.png") no-repeat left center;
2758 }
2759 .crm-container table thead a.sorting_desc_disabled {
2760 background: url("../bower_components/datatables/media/images/sort_desc_disabled.png") no-repeat left center;
2761 }
2762
2763 /* Otherwise for some reason we have 2 sort icons */
2764 .crm-container th.sorting .DataTables_sort_icon {
2765 display: none;
2766 }
2767
2768
2769 /*contact summary page */
2770 #crm-container div.contact_details {
2771 background-color: transparent;
2772 }
2773
2774 .crm-container table.crm-info-panel td {
2775 border-bottom: 1px solid #FFF;
2776 }
2777
2778 .crm-container table.crm-info-panel .label {
2779 color: #2f2f2f;
2780 font-weight: normal;
2781 }
2782
2783 .crm-container .disabled,
2784 .crm-container .disabled *,
2785 .crm-container .cancelled,
2786 .crm-container .cancelled td,
2787 .crm-container li.disabled a.ui-tabs-anchor,
2788 .crm-container li.crm-count-0 a.ui-tabs-anchor,
2789 .crm-container li.crm-count-0 a.ui-tabs-anchor em {
2790 color: #999999 !important;
2791 }
2792
2793 #crm-container tr.crm-job {
2794 text-decoration: none !important;
2795 }
2796
2797 .crm-container table.selector td {
2798 border-right: 1px dotted #DDDDDD;
2799 }
2800
2801 .crm-container div.contact_panel td,
2802 .crm-container table.crm-info-panel td {
2803 background-color: #f4f4ed;
2804 }
2805
2806 .crm-container div.contact_panel td.label,
2807 .crm-container #customFields div.contact_panel td.label,
2808 .crm-container table.crm-info-panel td.label {
2809 background-color: #fafafa;
2810 width: 120px;
2811 text-align: left;
2812 color: #7a7a60;
2813 }
2814 .crm-container table.crm-info-panel td.label {
2815 width: 150px;
2816 }
2817
2818 .crm-container .form-layout td.label,
2819 .crm-container .form-layout-compressed td.label {
2820 width: 150px;
2821 text-align: right;
2822 color: #7a7a60;
2823 }
2824
2825 .crm-container .form-layout td.label,
2826 .crm-container form table.report .label,
2827 .crm-container form table label,
2828 .crm-container form table.report label {
2829 color: #3e3e3e;
2830 }
2831
2832 .crm-container a.crm-icon-picker-button {
2833 min-width: 10em;
2834 text-align: inherit;
2835 color: #3e3e3e;
2836 }
2837
2838 .crm-container a.crm-icon-picker-button .ui-button-icon {
2839 margin: 5px 0 5px 5px;
2840 }
2841
2842 .crm-container a.crm-icon-picker-button .ui-button-text {
2843 color: #9f9f9f;
2844 }
2845
2846 .crm-container a.crm-icon-picker-button.ui-button-text-only .ui-button-text {
2847 padding: .4em .2em;
2848 }
2849
2850 /* search results */
2851 .crm-container .crm-search-tasks,
2852 .crm-container .crm-tasks {
2853 background-color: #F0F0E8;
2854 color: #52534D;
2855 }
2856
2857 #crm-container .crm-tasks table {
2858 margin: 0;
2859 }
2860
2861 .crm-container .crm-results-block {
2862 position: relative;
2863 }
2864
2865 /* warning labels and messages */
2866 .crm-container del,
2867 .crm-container .crm-is_deleted,
2868 .crm-container table.caseSelector td.status-urgent,
2869 .crm-container .font-red,
2870 .crm-container .status-removed,
2871 .crm-container .status-overdue,
2872 .crm-container .status-fatal,
2873 .crm-container .status-hold,
2874 .crm-container .status-past,
2875 .crm-contact-deceased,
2876 .crm-container .status-warning {
2877 color: #E43D2B !important;
2878 }
2879
2880 /* rounded corners */
2881 .crm-container div.status,
2882 .crm-container #help,
2883 .crm-container .help,
2884 .crm-container .ui-tabs-panel,
2885 .crm-container .crm-content-block,
2886 #full-screen-header,
2887 .crm-container .crm-pager,
2888 .crm-container form .section-hidden-border,
2889 .crm-container #search-status,
2890 .crm-container .crm-form-block,
2891 .crm-container .crm-search-tasks,
2892 .crm-container .crm-tasks,
2893 .crm-container div.form-item,
2894 .crm-container div.messages {
2895 border-radius: 4px;
2896 }
2897
2898 /* deprecated autocomplete styles */
2899
2900 .ac_results {
2901 background: transparent url(../i/dropdown-pointer.gif) no-repeat 25px 1px;
2902 padding-top: 5px;
2903 border: none;
2904 text-align: left;
2905 }
2906
2907 .ac_results-inner,
2908 .crm-participant-list-inner,
2909 .crm-event-links-list-inner,
2910 .crm-contribpage-links-list-inner,
2911 .crm-contact-actions-list-inner {
2912 background-color: #2f2f2e;
2913 padding: 4px;
2914 }
2915
2916 .crm-create-new-list-inner, .crm-create-new-list-inner ul {
2917 width: 160px!important;
2918 }
2919
2920 .ac_results li a {
2921 display: block;
2922 }
2923
2924 .crm-container .ac_results li,
2925 .crm-container .ac_results li a,
2926 .crm-container .ac_results li a:visited {
2927 color: #DFDFDF;
2928 text-decoration: none;
2929 }
2930
2931 .ac_results li strong {
2932 color: #FFF;
2933 font-weight: normal;
2934 }
2935
2936 .crm-container .ac_results li .icon,
2937 .crm-container .ac_results li a .icon,
2938 .crm-container .ac_results li a:visited .icon {
2939 background-image: url(../i/icons/jquery-ui-FFFFFF.png);
2940 }
2941
2942 .crm-container .ac_results li a:hover .icon {
2943 background-image: url(../i/icons/jquery-ui-3E3E3E.png);
2944 }
2945
2946 .ac_results li:hover,
2947 .ac_results li:hover a,
2948 .ac_results li a:hover {
2949 background-color: #F5F6F1;
2950 color: #666;
2951 }
2952 .crm-container .ac_results li:hover strong {
2953 color: #000;
2954 }
2955
2956 /* loader autocomplete */
2957
2958 .crm-container .ui-autocomplete-loading {
2959 background: white url('../i/loading.gif') no-repeat right center;
2960 }
2961
2962 /* select2 */
2963 .crm-container div.select2-container {
2964 min-width: 6em;
2965 font-size: 11px;
2966 }
2967 /* Add arrow icon to multi-selects */
2968 .crm-container .select2-container-multi .select2-choices:before {
2969 background: url("../bower_components/select2/select2.png") no-repeat scroll 0 -4px;
2970 content: "";
2971 display: block;
2972 height: 15px;
2973 position: absolute;
2974 right: 0;
2975 top: 5px;
2976 width: 20px;
2977 }
2978 /* Add search icon to ajax multi-selects and opened multi-selects */
2979 .crm-container .select2-container-multi.select2-container-active .select2-choices:before,
2980 .crm-container .select2-container-multi.crm-ajax-select .select2-choices:before {
2981 background-position: right -26px;
2982 }
2983 .crm-container .select2-container.select2-container-disabled .select2-choice .select2-arrow b {
2984 visibility: hidden;
2985 }
2986 .crm-container .select2-container-multi.loading .select2-choices:before,
2987 .crm-container .select2-container.loading .select2-choice .select2-arrow b {
2988 background: url('../i/loading.gif') no-repeat center center !important;
2989 visibility: visible;
2990 }
2991 /* Reduce select2 size to match other inputs */
2992 .crm-container .select2-container-multi .select2-choices {
2993 min-height: 25px;
2994 }
2995 .crm-container .select2-container-multi .select2-choices .select2-search-choice {
2996 padding: 2px 5px 2px 18px;
2997 }
2998 .crm-container .select2-container-multi .select2-choices .select2-search-field input {
2999 padding: 4px;
3000 min-height: unset; /* Overide style imposed by WordPress 5.3 - see https://lab.civicrm.org/dev/wordpress/issues/46 */
3001 }
3002 .crm-container .select2-search-choice-close {
3003 top: 2px;
3004 }
3005 .crm-container .select2-container .select2-choice abbr {
3006 top: 6px;
3007 }
3008 .crm-container .select2-container .select2-choice > .select2-chosen {
3009 font-size: 1.1em;
3010 }
3011 /* Add search icon to ajax single-selects */
3012 .crm-container .crm-ajax-select .select2-arrow b {
3013 background-position: -39px -22px;
3014 }
3015 /* Restore normal icon when searchable field is open */
3016 .crm-container .select2-dropdown-open .select2-choice .select2-arrow b {
3017 background-position: -18px 1px;
3018 }
3019 .select2-drop .crm-entityref-links {
3020 border-top: 1px solid #d3d3d3;
3021 margin-top: 9px;
3022 }
3023 .select2-drop .crm-entityref-filters {
3024 margin-top: 4px;
3025 }
3026 .select2-drop .crm-entityref-filters select,
3027 .select2-drop .crm-entityref-filters input {
3028 border-radius: 3px;
3029 border: 1px solid #f2f2f2;
3030 background-color: #f6f6f6;
3031 color: #494949;
3032 font-size: 11px;
3033 max-width: 60%;
3034 }
3035 .select2-drop .crm-entityref-filters select:hover,
3036 .select2-drop .crm-entityref-filters select:focus,
3037 .select2-drop .crm-entityref-filters select.active,
3038 .select2-drop .crm-entityref-filters input {
3039 border: 1px solid #808080;
3040 }
3041 .select2-drop .crm-entityref-filter-value {
3042 margin-left: 1em;
3043 }
3044 .select2-drop .crm-entityref-filters input {
3045 padding-left: .5em;
3046 background-color: #fefefe;
3047 }
3048 /* Style autocomplete results */
3049 .crm-container .select2-results {
3050 font-size: 12px;
3051 padding: 0;
3052 text-align: left;
3053 }
3054 .crm-container .select2-results li,
3055 .crm-container .select2-results .crm-select2-row,
3056 .crm-container .select2-results .crm-select2-row-description p {
3057 padding: 0;
3058 margin: 0;
3059 }
3060 .crm-container .select2-results .crm-select2-row .crm-select2-row-label {
3061 font-size: 1.1em;
3062 }
3063 .crm-container .select2-results .crm-select2-row-description p {
3064 font-size: 0.8em;
3065 line-height: 1.5em;
3066 color: #696969;
3067 width: 100%;
3068 white-space: nowrap;
3069 overflow: hidden;
3070 text-overflow: ellipsis;
3071 font-weight: normal;
3072 }
3073 .crm-container .select2-results .select2-highlighted > .select2-result-label .crm-select2-row-description p {
3074 color: #f0f0f0;
3075 }
3076 .select2-container .crm-select2-row-description {
3077 display: none;
3078 }
3079 .crm-container .select2-results .crm-select2-icon {
3080 width: 20px;
3081 height: 100%;
3082 float: left;
3083 }
3084 .crm-container .select2-results .crm-select2-icon .crm-icon {
3085 width: 16px;
3086 height: 16px;
3087 margin: 0;
3088 }
3089 .crm-container .select2-results li.select2-no-results {
3090 padding-left: 4px;
3091 padding-top: 4px;
3092 margin-left: 4px;
3093 }
3094 .crm-container .select2-results li {
3095 margin: 0;
3096 padding: 0;
3097 }
3098 .crm-container .crm-action-menu .select2-default span.select2-chosen {
3099 color: #2786C2;
3100 }
3101 .crm-container .select2-container[class*=" fa-"]:before {
3102 display: none;
3103 }
3104 .crm-container .select2-results .select2-result.select2-disabled > .select2-result-label {
3105 opacity: .6;
3106 cursor: default;
3107 }
3108
3109 /* Restore this property otherwise our css overrides it */
3110 .select2-search input {
3111 box-sizing: border-box;
3112 }
3113
3114 /* Collapsible optgroups for select2 */
3115 div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children:not(.optgroup-expanded) > .select2-result-sub > li.select2-result {
3116 display: none;
3117 }
3118 div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children > .select2-result-label:before {
3119 font-family: FontAwesome;
3120 content: "\f0da";
3121 display: inline-block;
3122 padding-right: 3px;
3123 vertical-align: middle;
3124 font-weight: normal;
3125 }
3126 div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children.optgroup-expanded > .select2-result-label:before {
3127 content: "\f0d7";
3128 }
3129
3130 span.crm-select-item-color {
3131 display: inline-block;
3132 width: .8em;
3133 height: .7em;
3134 border-radius: 2px;
3135 border: 1px solid grey;
3136 }
3137
3138 /* jQuery UI styles */
3139 .crm-container .ui-progressbar-value {
3140 background-image: url("../packages/jquery/css/images/pbar-ani.gif");
3141 }
3142
3143 .crm-container.ui-dialog {
3144 box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
3145 }
3146 .crm-container.ui-dialog.ui-resizable:before {
3147 display:block;
3148 content: " ";
3149 width: 16px;
3150 height: 16px;
3151 background: url("../i/icons/jquery-ui-52534D.png") no-repeat -80px -224px;
3152 position: absolute;
3153 bottom: 0;
3154 right: 0;
3155 }
3156 .crm-container .ui-dialog-titlebar.ui-widget-header {
3157 background: #5D677B;
3158 color: #F5F6F1;
3159 }
3160 .crm-container .ui-dialog-title {
3161 background: url("../i/item_sprites.png") no-repeat scroll -79px -47px;
3162 margin-left: -5px;
3163 padding-left: 25px;
3164 }
3165 .crm-container .ui-dialog-titlebar .ui-button {
3166 background-color: transparent;
3167 background-image: none;
3168 border: 1px none;
3169 color: inherit;
3170 }
3171 .crm-container .ui-dialog-titlebar .ui-button:hover {
3172 background-color: #cdcdcd;
3173 color: #555;
3174 }
3175
3176 /* unset the styling for the li in jstree */
3177 #tagtree ul {
3178 list-style: none;
3179 margin: 0px;
3180 padding: 0px;
3181 }
3182
3183 /* table row highlightng */
3184 .crm-container .crm-row-ok {
3185 background-color: #EFFFE7;
3186 border-bottom: 1px solid #ccc;
3187 }
3188 .crm-container .crm-row-error {
3189 background-color: #FFECEC;
3190 border-bottom: 1px solid #ccc;
3191 }
3192 .crm-container table.row-highlight tr:hover,
3193 .crm-container .crm-row-selected {
3194 background-color: #FFFFCC;
3195 }
3196 .crm-container table.row-highlight tr.even-row:hover,
3197 .crm-container table.row-highlight tr.even:hover,
3198 .crm-container .even-row.crm-row-selected,
3199 .crm-container .even.crm-row-selected {
3200 background-color: #fffdb2;
3201 }
3202
3203 #crm-container .crm-socialnetwork {
3204 margin-top: 1em;
3205 }
3206
3207 #crm-container .crm-fb-tweet-buttons {
3208 width: 93%;
3209 }
3210
3211 /* Checkbox gropus */
3212 .crm-container ul.crm-checkbox-list {
3213 list-style: none;
3214 margin: 0;
3215 padding: 0;
3216 background-color: white;
3217 border: 1px solid #a5a5a5;
3218 width: 300px;
3219 max-width: 100%;
3220 max-height: 300px;
3221 overflow-y: auto;
3222 }
3223 .crm-container ul.crm-checkbox-list li {
3224 position: relative;
3225 margin: 0;
3226 padding: 0;
3227 }
3228 .crm-container ul.crm-checkbox-list li input {
3229 position: absolute;
3230 left: 5px;
3231 top: 4px;
3232 }
3233 .crm-container ul.crm-checkbox-list li label {
3234 display: block;
3235 padding: 2px 0 2px 22px;
3236 margin: 0;
3237 word-break: break-all;
3238 }
3239 .crm-container ul.crm-checkbox-list li:nth-child(even) label {
3240 background-color: #FAFAFA;
3241 }
3242 .crm-container ul.crm-checkbox-list li input:checked + label {
3243 background-color: #FFFFCC;
3244 }
3245 .crm-container ul.crm-checkbox-list li:nth-child(even) input:checked + label {
3246 background-color: #fffdb2
3247 }
3248
3249 .crm-container ul.crm-sortable-list li label {
3250 padding-left: 40px;
3251 cursor: move;
3252 }
3253 .crm-container ul.crm-sortable-list li label:after {
3254 display: block;
3255 font-family: "FontAwesome";
3256 content: "\f047";
3257 position: absolute;
3258 left: 4px;
3259 top: 2px;
3260 font-size: 10px;
3261 color: grey;
3262 }
3263 .crm-container ul.crm-sortable-list li:hover label:after {
3264 color: inherit;
3265 }
3266 .crm-container ul.crm-checkbox-list.crm-sortable-list li input {
3267 left: 23px;
3268 }
3269
3270 /* classes related to batch entry operation */
3271 .crm-container span.batch-edit,
3272 .crm-container span.batch-valid,
3273 .crm-container span.batch-invalid {
3274 padding: 2px 9px 2px 3px;
3275 margin: 2px 2px 3px 2px;
3276 cursor: pointer;
3277 background-position: -66px -114px;
3278 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
3279 }
3280
3281 .crm-container span.batch-valid {
3282 background-position: -322px -143px;
3283 }
3284
3285 .crm-container span.batch-invalid {
3286 background-position: -258px -143px;
3287 }
3288
3289 .crm-container #Entry ul#errorList {
3290 display: none;
3291 }
3292
3293 .crm-container table.batch-totals {
3294 border: 1px solid #7A7A60 !important;
3295 margin-top: 10px !important;
3296 }
3297
3298 /* grid div as table */
3299 .crm-container .crm-grid-table {
3300 display: table;
3301 border-collapse: collapse;
3302 border: 1px solid #7A7A60;
3303 background-color: #FFFFFF;
3304 margin: 10px 3px 10px !important;
3305 }
3306
3307 .crm-container .crm-batch-entry-table {
3308 border-right: 2px solid #7A7A60 !important;
3309 }
3310
3311 .crm-container .crm-grid-row,
3312 .crm-container .crm-grid-header {
3313 display: table-row;
3314 }
3315
3316 .crm-container .crm-grid-header {
3317 white-space: nowrap;
3318 }
3319
3320 .crm-container .crm-grid-cell {
3321 display: table-cell;
3322 border-right: 1px solid #EFEFEF;
3323 padding: 2px;
3324 vertical-align: top;
3325 }
3326
3327 /* editable placeholder containers - share some styles with crm-editable below */
3328 .crm-container .replace-plain,
3329 .crm-container textarea,
3330 .crm-container select.crm-form-multiselect {
3331 border: 1px solid #999;
3332 }
3333
3334 .crm-container .replace-plain {
3335 cursor: pointer;
3336 background: rgba(255,255,255,0.6);
3337 min-height: 1.4em;
3338 position: relative;
3339 padding: .4em 1.5em .3em .4em;
3340 }
3341
3342 .crm-container .replace-plain p {
3343 padding: .2em 0;
3344 margin: 0;
3345 }
3346
3347 .crm-container .replace-plain:focus,
3348 .crm-container .replace-plain:hover {
3349 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3350 background: rgba(255,255,255,0.8);
3351 }
3352
3353 .crm-container .replace-plain:before {
3354 content: "\f040";
3355 position: absolute;
3356 top: .4em;
3357 right: .5em;
3358 opacity: .5;
3359 }
3360
3361 /* in place edit */
3362 .crm-container .crm-editable-enabled {
3363 padding-left: 2px;
3364 border: 2px dashed transparent;
3365 }
3366 .crm-container .crm-editable-textarea-enabled {
3367 white-space: normal;
3368 }
3369
3370 .crm-container .crm-editable-enabled:hover {
3371 border: 2px dashed #d1d1d1;
3372 cursor: pointer;
3373 }
3374
3375 .crm-container .crm-editable-enabled.crm-editable-editing:hover {
3376 border: 2px dashed transparent;
3377 cursor: auto;
3378 }
3379
3380 .crm-container span.crm-editable-textarea-enabled {
3381 width: 96%;
3382 }
3383 .crm-container span.crm-editable-enabled {
3384 display: inline-block !important;
3385 padding-right: 2px;
3386 min-height: 1em;
3387 min-width: 3em;
3388 }
3389
3390 .crm-container .crm-editable-enabled .crm-i {
3391 opacity: .5;
3392 }
3393
3394 .crm-container .replace-plain a:active:before,
3395 .crm-container .replace-plain:focus:before,
3396 .crm-container .replace-plain:hover:before,
3397 .crm-container .crm-editable-enabled:hover .crm-i {
3398 opacity: 1;
3399 }
3400
3401 .crm-container .crm-editable-saving {
3402 background: #FFFFCC!important;
3403 opacity: 0.8;
3404 }
3405
3406 .crm-container h2.crm-editable-enabled input {
3407 min-height: 1.4em;
3408 }
3409 .crm-container .crm-editable-textarea-enabled textarea {
3410 min-height: 5em;
3411 }
3412
3413 .crm-editable-form {
3414 margin: 0 !important;
3415 padding: 0 !important;
3416 width: auto !important;
3417 position: relative;
3418 overflow: visible;
3419 }
3420
3421 .crm-editable-form input,
3422 .crm-editable-form textarea {
3423 margin-bottom: 0;
3424 padding-bottom: 0;
3425 }
3426
3427 .crm-editable-form button {
3428 position: absolute;
3429 bottom: -22px;
3430 left: 0;
3431 text-align: center;
3432 height: 23px;
3433 width: 32px;
3434 z-index: 1;
3435 }
3436
3437 .crm-editable-form button[type=cancel] {
3438 left: 32px;
3439 }
3440
3441 /*crm-10345*/
3442 .crm-container .field-action {
3443 word-wrap: normal;
3444 }
3445
3446 .crm-container .field-action span.btn-slide {
3447 padding-left: 0;
3448 padding-right: 11px;
3449 }
3450 /*end crm-10345*/
3451
3452 /* alter display of parent and child groups in Manage Groups selector */
3453 #crm-container .crm-group-parent td.crm-group-name {
3454 padding-left: 20px;
3455 text-indent: -20px;
3456 }
3457
3458 #crm-container .crm-group-child td.crm-group-name.level_2 {
3459 padding-left: 40px;
3460 text-indent: -20px;
3461 }
3462 #crm-container .crm-group-child td.crm-group-name.level_3 {
3463 padding-left: 60px;
3464 text-indent: -20px;
3465 }
3466 #crm-container .crm-group-name span.crm-editable-enabled {
3467 text-indent: 0;
3468 }
3469
3470 #crm-container div.crm-row-parent-name {
3471 padding: 3px 0 0 .5em;
3472 opacity: 0.75;
3473 }
3474 #crm-container td span.show-children,
3475 #crm-container td span.crm-no-children {
3476 padding-left: 20px;
3477 }
3478
3479 /* Notifications */
3480 #crm-notification-container {
3481 width: 350px;
3482 position: fixed;
3483 top: 45px;
3484 right: 15px;
3485 z-index: 999999;
3486 }
3487 #crm-notification-container div.ui-notify-message {
3488 padding: 10px;
3489 margin-bottom: 15px;
3490 color: #fff;
3491 border-radius: 8px;
3492 max-height: 600px;
3493 overflow: auto;
3494 }
3495 #crm-notification-container div.ui-notify-message h1 {
3496 font-size: 14px;
3497 margin: 0;
3498 padding: 4px;
3499 font-weight: bold;
3500 color: #fff;
3501 }
3502 #crm-notification-container div.ui-notify-message p {
3503 margin: 3px 0;
3504 padding: 0;
3505 line-height: 18px;
3506 }
3507 #crm-notification-container div.ui-notify-message:last-child {
3508 margin-bottom: 0;
3509 }
3510 #crm-notification-container div.ui-notify-message-style {
3511 background: rgba(0,0,0,0.8);
3512 box-shadow: 0 0 6px #000;
3513 }
3514 .crm-container div.ui-notify-message-style a,
3515 .crm-container div.ui-notify-message-style a:link {
3516 color: #CCD0FF;
3517 text-decoration: underline;
3518 }
3519 .crm-container div.ui-notify-message-style a:hover,
3520 .crm-container div.ui-notify-message-style a:focus {
3521 color: #B2B8FF;
3522 }
3523 .crm-container div.ui-notify-message-style .ui-button .ui-button-text {
3524 color: #2F2F2F;
3525 text-decoration: none;
3526 }
3527 #crm-notification-container .ui-notify-message .ui-notify-close {
3528 cursor: pointer;
3529 }
3530 #crm-notification-container .ui-notify-message a.ui-notify-cross {
3531 margin-top: -4px;
3532 float: right;
3533 text-decoration: none;
3534 font-size: 13px;
3535 font-weight: bold;
3536 text-shadow: 0 1px 1px #fff;
3537 padding: 2px;
3538 color: #FDFDFD;
3539 }
3540 #crm-notification-container .ui-notify-message .ui-notify-cross:hover,
3541 #crm-notification-container .ui-notify-message .ui-notify-cross:focus {
3542 color: #ffffab;
3543 }
3544 .crm-container div.ui-notify-message table,
3545 .crm-container div.ui-notify-message tbody,
3546 .crm-container div.ui-notify-message tr {
3547 border: 0 none;
3548 font-size: 11px;
3549 }
3550 .crm-container div.ui-notify-message table {
3551 margin: 10px 0;
3552 }
3553 .crm-container div.ui-notify-message td {
3554 background: rgba(255,255,255,0.1);
3555 border: 1px solid #111;
3556 font-size: 11px;
3557 color: #fff;
3558 }
3559 .crm-container div.ui-notify-message th {
3560 background: rgba(200,200,200,0.2);
3561 border: 1px solid #111;
3562 color: #eee;
3563 font-size: 11px;
3564 }
3565 .crm-container div.ui-notify-message table a.action-item {
3566 margin-right: 5px;
3567 }
3568 .crm-container div.ui-notify-message ul,
3569 .crm-container div.ui-notify-message ol {
3570 margin: 0.5em 0 1em;
3571 padding: 0 0 0 0.5em;
3572 }
3573
3574 .crm-container div.ui-notify-message div.icon,
3575 .crm-status-icon {
3576 background: transparent url("../i/message-icons.png") no-repeat 0 0;
3577 width: 24px;
3578 height: 24px;
3579 margin-right: 6px;
3580 }
3581 .crm-container div.ui-notify-message.success div.icon,
3582 .crm-status-icon.success {
3583 background-position: -24px 0;
3584 }
3585 .crm-container div.ui-notify-message.info div.icon,
3586 .crm-status-icon.info {
3587 background-position: -48px 0;
3588 }
3589 .crm-container div.ui-notify-message.error div.icon,
3590 .crm-status-icon.error {
3591 background-position: -72px 0;
3592 }
3593 .crm-container div.ui-notify-message.none div.icon {
3594 display: none;
3595 }
3596
3597 span.crm-status-icon {
3598 display: inline-block;
3599 }
3600
3601 /* Public Pages */
3602
3603 #crm-container.crm-public input[type="text"],
3604 #crm-container.crm-public input[type="password"],
3605 #crm-container.crm-public input[type="email"],
3606 #crm-container.crm-public select {
3607 font-size: 15px;
3608 padding: 5px;
3609 border-radius: 3px;
3610 vertical-align: middle;
3611 max-width: 100%;
3612 }
3613
3614 #crm-container.crm-public .label,
3615 #crm-container.crm-public .price-field-amount {
3616 padding-top: 6px;
3617 font-size: 15px;
3618 }
3619
3620 .crm-container.crm-public .select2-container,
3621 .crm-container.crm-public .select2-results {
3622 font-size: 14px;
3623 }
3624 .crm-container.crm-public .select2-container * {
3625 box-sizing: content-box;
3626 }
3627 .crm-container.crm-public .select2-container .select2-choice {
3628 padding: 5px 5px 5px 8px;
3629 }
3630 .crm-container.crm-public .select2-container-multi .select2-choices {
3631 padding: 4px;
3632 }
3633 .crm-public .select2-container .select2-choice .select2-arrow {
3634 width: 20px;
3635 }
3636 .crm-public .select2-container .select2-choice .select2-arrow b {
3637 position: relative;
3638 top: 2px;
3639 left: 2px;
3640 }
3641 .crm-container.crm-public .select2-container-multi .select2-choices .select2-search-choice {
3642 padding: 3px 3px 3px 20px;
3643 }
3644 .crm-container.crm-public .select2-container-multi .select2-choices:before {
3645 top: 9px;
3646 }
3647
3648 .crm-public .crm-profile-view .content {
3649 padding-top: 6px;
3650 }
3651
3652 #crm-container.crm-public .calc-value,
3653 #crm-container.crm-public .content {
3654 padding-top: 6px;
3655 font-size: 15px;
3656 }
3657
3658 #crm-container.crm-public .crm-section,
3659 .crm-section {
3660 margin-bottom: 0;
3661 }
3662
3663 #crm-container.crm-public #crm-submit-buttons {
3664 margin-top: 30px;
3665 }
3666
3667 #crm-container.crm-public #premiums-listings {
3668 margin-top: 10px;
3669 min-width: 450px;
3670 width: 60%;
3671 }
3672
3673 #crm-container.crm-public #premiums-listings .premium {
3674 margin: 5px 0;
3675 }
3676
3677 #crm-container.crm-public #premiums-listings .premium .premium-short {
3678 padding: 10px;
3679 border: 2px solid #ffffff;
3680 background-color: #f0f0f0;
3681 cursor: pointer;
3682 }
3683
3684 #crm-container.crm-public #premiums-listings .premium .premium-short:hover {
3685 border: 2px solid #b0b0b0;
3686 }
3687
3688 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail {
3689 float: left;
3690 width: 50px;
3691 }
3692
3693 #crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail img {
3694 width: 50px;
3695 }
3696
3697 #crm-container.crm-public #premiums-listings .premium .premium-short-content {
3698 text-align: center;
3699 font-size: 20px;
3700 font-weight: bold;
3701 padding: 20px;
3702 }
3703
3704 #crm-container.crm-public #premiums-listings .premium .premium-full {
3705 display: none;
3706 padding: 5px;
3707 border: 2px solid #cfcfcf;
3708 background-color: #ffffff;
3709 }
3710
3711 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image {
3712 float: left;
3713 width: 200px;
3714 padding: 10px;
3715 }
3716
3717 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image img {
3718 width: 200px;
3719 }
3720
3721 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-title {
3722 text-align: center;
3723 font-size: 1.5em;
3724 font-weight: bold;
3725 padding: 20px;
3726 }
3727
3728 #crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-min {
3729 font-size: .9em;
3730 font-style: italic;
3731 }
3732
3733 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-short {
3734 text-align: center;
3735 font-size: 1.3em;
3736 padding: 10px;
3737 }
3738
3739 #crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-full {
3740 text-align: center;
3741 font-size: 1.3em;
3742 font-weight: bold;
3743 padding: 10px;
3744 }
3745
3746 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-short,
3747 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-image,
3748 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-title,
3749 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-description,
3750 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-options,
3751 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-min {
3752 opacity: 0.5;
3753 }
3754 #crm-container.crm-public #premiums-listings .premium .premium-full-disabled {
3755 display: none;
3756 }
3757 #crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full-disabled {
3758 display: block;
3759 color: #ff0000;
3760 text-align: center;
3761 font-weight: bold;
3762 margin-bottom: .5em;
3763 }
3764
3765 #crm-container.crm-public .price-set-row {
3766 font-size: 15px;
3767 margin-bottom: 5px;
3768 }
3769
3770 #crm-container.crm-public .price-set-row input,
3771 #crm-container.crm-public .price-set-row label {
3772 vertical-align: middle;
3773 cursor: pointer;
3774 }
3775
3776 #crm-container.crm-public .price-set-row .crm-price-amount-amount {
3777 min-width: 2em;
3778 color: #333333;
3779 }
3780
3781 #crm-container.crm-public .price-set-row .crm-price-amount-label {
3782 color: #444444;
3783 font-weight: bold;
3784 }
3785
3786 #crm-container.crm-public .price-set-row .highlight label {
3787 color: #000000;
3788 font-weight: bold;
3789 }
3790
3791 #crm-container.crm-public .price-set-row .highlight .crm-price-amount-label {
3792 color: #222222;
3793 }
3794
3795 #crm-container.crm-public .price-set-option-content > tt {
3796 display: none;
3797 }
3798
3799 #crm-container .sold-out-option,
3800 #crm-container .price-set-row span.sold-out-option .crm-price-amount-label,
3801 #crm-container .price-set-row span.sold-out-option .crm-price-amount-amount {
3802 font-style: italic !important;
3803 font-weight: normal !important;
3804 font-size: 15px;
3805 color: #666 !important;
3806 }
3807
3808 /* Styles for credit card payment logos */
3809 .crm-container .credit_card_type-section .crm-credit_card_type-icons a {
3810 display: block;
3811 float: left;
3812 width: 50px;
3813 height: 30px;
3814 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3815 text-indent: -20000px;
3816 margin-right: 10px;
3817 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
3818 border-radius: 3px;
3819 border: 1px solid #FFFFFF;
3820 }
3821
3822 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-visa {
3823 background-position: -50px 0;
3824 }
3825
3826 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-mastercard {
3827 background-position: -100px 0;
3828 }
3829
3830 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-amex {
3831 background-position: -150px 0;
3832 }
3833
3834 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-discover {
3835 background-position: -200px 0;
3836 }
3837
3838 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-jcb {
3839 background-position: -250px 0;
3840 }
3841
3842 .crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-unionpay {
3843 background-position: -300px 0;
3844 }
3845
3846 .crm-container .cvv2-icon {
3847 display: inline-block;
3848 width: 50px;
3849 height: 30px;
3850 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3851 }
3852
3853 /* Avoid weird border around the images (some themes will add a border around images) */
3854 #crm-container .credit_card_type-section .crm-credit_card_type-icons a,
3855 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:link,
3856 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:hover,
3857 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:focus,
3858 #crm-container .credit_card_type-section .crm-credit_card_type-icons a:active {
3859 color: #fff;
3860 }
3861
3862 .crm-container .strikethrough {
3863 text-decoration: line-through;
3864 }
3865
3866 .crm-container input.ng-invalid.ng-dirty,
3867 .crm-container select.ng-invalid.ng-dirty,
3868 .crm-container textarea.ng-invalid.ng-dirty {
3869 border: 1px solid red;
3870 }
3871 .crm-container input.ng-valid,
3872 .crm-container input.ng-pristine,
3873 .crm-container textarea.ng-valid,
3874 .crm-container textarea.ng-pristine,
3875 .crm-container select.ng-valid,
3876 .crm-container select.ng-pristine{
3877 border: 1px solid #666;
3878 }
3879
3880 /* block-ui */
3881 .crm-container .blockUI.blockOverlay {
3882 background: url("../i/loading-overlay.gif") center center no-repeat white !important;
3883 }
3884
3885 .crm-container table.mergecontact thead th {
3886 width:30%;
3887 }
3888 .crm-container .crm-ui-datetime.ng-dirty input.incomplete {
3889 border: 1px solid red;
3890 }
3891
3892 .crm-container .crm-grip {
3893 cursor: move;
3894 }
3895
3896 .crm-tag-item {
3897 display: inline-block;
3898 padding: 1px 5px;
3899 border-radius: 3px;
3900 border: 1px solid grey;
3901 }