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