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