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