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