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