Fix doc link
[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
1636/* Styles for Action Items & Action Link pop-up */
1637.crm-container .action-item {
1638 padding: 0px 5px;
1639 border-left: 1px solid #CCC;
1640 white-space: nowrap;
1641}
1642.crm-container .action-item-wrap {
1643 padding: 0px 5px;
1644 border-left: 1px solid #CCC;
1645 white-space: normal;
1646}
1647.crm-container .action-item-first {
1648 border-left: none;
1649 /* last action item should not have right hand border */}
1650
fa3a5fe2
CW
1651
1652/* theming for panel and context menus */
1653.crm-container td ul.panel li {
1654 background-color: #2F2F2E;
1655}
1656
1657.crm-container .panel li a {
1658 color: #DFDFDF;
1659}
1660
1661.crm-container .panel li a:hover,
1662.crm-container .crm-participant-list-inner li a:hover,
1663.crm-container .crm-event-links-list-inner li a:hover,
1664.crm-container .crm-contribpage-links-list-inner li a:hover {
1665 color: #3e3e3e;
1666 background-color: #F5F6F1;
1667 text-decoration: none;
1668}
1669
6a488035
TO
1670.crm-container .panel {
1671 display: none;
1672 z-index: 9999;
1673 position: absolute;
1674 border-bottom: 0px;
1675 background: transparent url(../i/dropdown-pointer.gif) no-repeat scroll 150px 1px;
1676 text-align: left;
1677 padding-top: 5px;
1678 margin: 0px;
1679 width: 180px;
1680}
1681
1682.crm-container td ul.panel {
1683 top: 15px;
1684 right: 0px;
1685}
1686
1687.crm-container td ul.panel li {
1688 margin: 0px;
1689 padding: 2px;
1690 list-style: none;
1691 background-image: none;
1692 width: auto;
1693}
1694
1695.crm-container .btn-slide {
1696 text-align: left;
1697 text-decoration: none;
1698 border: none;
1699 cursor: pointer;
1700 position: relative;
1701 padding: 0px 14px 0 5px;
1702 background: url("../i/TreePlus.gif") no-repeat right 1px;
349a45b7 1703 white-space: nowrap;
6a488035
TO
1704 z-index: 2;
1705}
1706
1707.crm-container .btn-slide-active {
1708 z-index: 10;
1709}
1710
1711.crm-container .crm-configure-actions,
1712.crm-container .crm-event-participants,
1713.crm-container .crm-event-links,
1714.crm-container .crm-event-more {
1715 min-width: 85px;
1716 z-index: 1;
1717}
1718
1719.crm-container .panel li a {
1720 text-decoration: none;
1721 padding: 4px;
1722 display: block;
1723 border: none;
1724 cursor: pointer;
1725}
1726
1727/*class for CMS user name check used in profile*/
1728.crm-container .cmsmessagebox {
1729 position: absolute;
1730 width: auto;
1731 margin-left: 10px;
1732 padding: 3px;
1733}
1734
1735/* class for text area resizer jquery plugin*/
1736div.grippie {
1737 background: #EEEEEE url('../i/grippie.png') no-repeat scroll center 2px;
1738 border-color: #DDDDDD;
1739 border-style: solid;
1740 border-width: 0pt 1px 1px;
1741 cursor: s-resize;
1742 height: 9px;
1743 overflow: hidden;
1744}
1745.crm-container .resizable-textarea textarea {
1746 display: block;
1747 margin-bottom: 0pt;
1748 width: 95%;
1749 height: 20%;
1750}
1751
1752.crm-container ul li.crm-tab-button {
1753 border-bottom: 0 none;
1754 float: left;
1755 margin: 0 0.2em 1px 0;
1756 padding: 0 0 1px;
1757 position: relative;
1758 top: 1px;
1759 white-space: nowrap;
1760}
1761
1762.crm-container .ui-tabs .ui-tabs-nav {
6a488035
TO
1763 padding: 4px;
1764}
1765
1766.crm-container .crm-tab-button a,
1767.crm-container .ui-tabs .ui-tabs-nav li a,
1768.crm-container .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a,
1769.crm-container .ui-tabs .ui-tabs-nav li.ui-tabs-selected a {
1770 font-size: 0.9em;
1771}
1772
1773#mainTabContainer li.crm-tab-button {
1774 margin: 0 2px 2px 0;
1775}
1776
1777.crm-container .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
1778 padding-bottom: 0px;
1779 border: none;
1780}
1781
1782.crm-container .crm-tab-button a,
1783.crm-container .ui-tabs .ui-tabs-nav li a {
1784 padding: 5px !important;
615943a4
CW
1785 color: #fafafa;
1786}
1787
1788.crm-container .crm-tab-button a,
1789.crm-container .ui-tabs .ui-tabs-nav li.ui-state-active a {
1790 color: #090909;
6a488035
TO
1791}
1792
1793.crm-container .crm-tab-button a em {
6a488035
TO
1794 font-style: normal;
1795}
1796
1797#crm-container div.ui-accordion-content {
1798 padding: .5em 1em !important;
1799}
1800
1801/* Styles for Contact Summary start here. dgg */
1802#crm-container .primary {
1803 font-weight: bold;
1804}
1805
1806#crm-container .ui-tabs-panel {
1807 padding: 4px;
9435db16 1808 font-size: 13px;
6a488035
TO
1809}
1810
1811#crm-container div.contact_details {
1812 padding: 4px;
1813 line-height: 1.4em;
1814 clear: both;
1815}
1816
1817#crm-container div#crm-contact-thumbnail {
1818 padding: 4px;
1819 float: right;
1820}
1821
1822#crm-container div.contact_panel {
1823 display: block;
1824}
1825
1826#crm-container .upper {
1827 text-transform: uppercase;
1828}
1829
1830#crm-container table.caseSelector td.status-urgent {
1831 font-weight: bold;
1832 text-transform: uppercase;
1833}
1834
1835#crm-container div.crm-inline-edit {
1836 border: 2px dashed transparent;
1837 background: none;
1838 position: relative;
1839}
1840
1841#crm-container .crm-edit-ready .crm-inline-edit:hover {
1842 cursor: pointer;
1843 border: 2px dashed lightgrey;
1844}
1845
1846#crm-container div.crm-inline-edit.form {
1847 cursor: default;
1848 border: 2px dashed #6665BF;
9d5926e1 1849 overflow: auto;
6a488035
TO
1850}
1851
1852#crm-container .crm-inline-edit.add-new {
1853 min-height: 2.5em;
1854}
1855
1856#crm-container div.crm-inline-edit .crm-edit-help {
1857 display: none;
1858 position: absolute;
1859 right: 0px;
1860 top: 0px;
1861 opacity: .8;
1862 padding: .4em;
1863 border-bottom-left-radius: 1em;
1864}
1865
1866#crm-container .crm-inline-edit.add-new .crm-edit-help {
1867 display: block;
1868 background-color: #EBEBEB;
1869}
1870
1871#crm-container .crm-edit-ready .crm-inline-edit:hover .crm-edit-help {
1872 display: block;
1873 background-color: #DFE1FF;
1874}
1875
1876#crm-container div.crm-inline-edit.form .crm-edit-help {
1877 display: none !important;
1878}
1879
1880#crm-container div.crm-summary-contactname-block {
1881 padding-bottom: 8px;
1882 margin-top: -10px;
1883}
1884
1885#crm-container div.crm-summary-display_name {
1886 font-size: 19px;
1887 padding-bottom: 10px;
1888}
1889
1890#crm-container div.contactCardLeft,
1891#crm-container div#Top {
1892 width: 49%;
1893 display: block;
1894 float: left;
1895 clear: both;
1896}
1897
1898#crm-container div.contactCardRight {
1899 width: 49%;
1900 display: block;
1901 float: right;
1902}
1903
1904#crm-container div.contact_panel table {
1905 margin-bottom: 0px;
1906}
1907
1908#crm-container div.contactCardLeft .label,
1909#crm-container div.contactCardRight .label {
1910 font-size: 11px;
1911 vertical-align: top;
1912 margin-right: 10px;
1913}
1914
1915#crm-container div.contactCardLeft .grouplabel,
1916#crm-container div.contactCardRight .grouplabel {
1917 border-bottom: grey 1px solid;
1918 width: 100%;
1919 font-size: 0.95em;
1920 font-weight: bold;
1921 background-color: #ddd;
1922}
1923
1924#crm-container div.contact_panel .spacer {
1925 padding: 8px;
1926}
1927
1928#crm-container div.contact_panel td {
1929 padding: 4px;
1930 vertical-align: top;
1931 border-bottom: 1px solid #E2E2E2;
1932}
1933
1934#crm-container div.contact_panel td.label {
1935 width: 28%;
1936}
1937
1938#crm-container div.contact_panel td.last {
1939 border-bottom: 0px;
1940}
1941
1942#crm-container #customFields {
1943 width: 100%;
1944}
1945
1946#crm-container #customFields div.contact_panel td.talabel {
1947 padding: 4px 0 0 4px;
1948 border: 0px;
1949}
1950
1951#crm-container #customFields .contact_panel .customFieldGroup {
1952 background-color: #F7F7F7;
1953 line-height: 1.4em;
1954 padding: 4px;
1955 width: 100%;
1956}
1957
1958#crm-container div.contact_panel .crm-address-block {
1959 margin-bottom: 6px;
1960}
1961#crm-container .crm-add-address-wrapper {
1962 height: 25px;
1963}
1964
1965.crm-container .crm-clearfix:after,
1966#crm-container .crm-summary-row:after {
1967 clear: both;
1968 content: ".";
1969 display: block;
1970 height: 0;
1971 visibility: hidden;
1972}
1973
1974.crm-container div.crm-clear {
1975 clear: both;
1976 margin-bottom: 1px;
1977 background-color: #FAFAFA;
1978 font-size: 11px;
1979}
1980
1981#crm-container div.crm-summary-row {
1982 background-color: #F4F4ED;
1983 border-top: 1px solid #ffffff;
1984 margin-bottom: 1px;
1985 min-height: 17px;
1986}
1987
1988#crm-container div.crm-summary-row div.crm-label {
1989 background-color: #FAFAFA;
1990 color: #7A7A60;
1991 text-align: left;
1992 width: 122px;
1993 float: left;
1994 padding: 4px;
1995}
1996
1997#crm-container div.crm-summary-row div.crm-content {
1998 padding: 4px;
1999 margin-left: 130px;
2000}
2001
2002#crm-container div.crm-config-option {
2003 float: right;
2004 padding-right: 10px;
2005 padding-top: 5px;
2006}
2007
2008#crm-container a.crm-link-action {
2009 cursor: pointer;
2010 cursor: hand;
2011}
2012
2013#crm-container span.crm-custom-greeting {
2014 font-size: 9px;
2015}
2016
2017#crm-container table.crm-inline-edit-form td,
2018#crm-container div.crm-inline-edit-form {
2019 background-color: #E6E6DC;
9cce0639
BS
2020 white-space: nowrap;
2021}
2022#crm-container table.crm-inline-edit-form td.crm-label,
2023#crm-container div.crm-inline-edit-form .crm-label {
2024 white-space: normal;
6a488035
TO
2025}
2026
2027#crm-container div.crm-inline-edit-field {
2028 display: inline-block;
2029 padding: 4px 5px;
2030}
2031
2032#crm-container div.buttons {
2033 text-align: right;
2034 margin: 8px 0 0;
2035 padding: 4px 4px 2px 0;
2036 background-color: #fff;
2037 border: none;
2038}
2039
2040#crm-container div.buttons input,
2041#crm-container div.buttons select {
2042 font-size: 0.9em;
2043 vertical-align: top !important;
2044}
2045
2046
2047#crm-container div.buttons #actions {
2048 text-align: left;
2049 float: left;
2050}
2051#crm-container div.buttons ul#actions {
2052 list-style-type: none;
2053 padding-left: 0px;
2054}
2055#crm-container div.buttons #actions li {
2056 float: left;
2057 padding: 0px;
2058 margin: 0 5px 0 0;
2059}
2060
2061#crm-container div.crm-case-dashboard-buttons {
2062 height: 33px;
2063}
2064
2065#crm-container div.crm-case-dashboard-switch-view-buttons {
2066 float: right;
2067}
2068
2069#crm-container .separator {
2070 border-bottom: solid 2px #ccc;
2071}
2072
2073/* reports */
2074#crm-container .report-layout {
2075 border: none;
2076}
2077
2078#crm-container .reports-header-right {
2079 text-align: right;
2080}
2081
2082#crm-container .report-contents {
2083 background-color: #F5F5F5;
2084 border: 1px solid #CDCDC3;
2085 padding: 4px;
2086 width: 20%;
2087 white-space: normal;
2088 font-size: 0.95em;
2089}
2090
2091#crm-container .report-contents-right {
2092 border: 1px solid #CDCDC3;
2093 padding: 4px;
2094 font-size: 0.95em;
2095 text-align: right;
2096}
2097
2098#crm-container table.report-layout td {
2099 padding: 4px;
2100 border-bottom: 1px solid #CDCDC3;
2101 vertical-align: top;
2102}
2103
2104#crm-container table.report-layout tr {
2105 font-size: 0.95em;
2106}
2107
2108#crm-container .report-label {
2109 text-align: right;
2110 font-weight: bold;
2111}
2112
2113#crm-container table.report-layout th.report-contents {
2114 background-color: #F5F5F5;
2115
2116}
2117
2118#crm-container table.report-layout th.statistics {
2119 width: 5%;
2120 white-space: nowrap;
2121}
2122
2123/*override default pager for report*/
2124.crm-container .report-pager .crm-pager-nav a {
2125 color: #000000;
2126}
2127
2128#crm-container table.view-layout {
2129 margin: 0em;
2130 border-collapse: collapse;
2131 border: 0px none;
2132}
2133
2134#crm-container table.view-layout .label {
2135 color: DimGray;
2136 font-size: 0.95em;
2137 vertical-align: top;
2138 font-weight: bold;
2139 margin-right: 10px;
2140 background-color: #EEEEEE;
2141 width: 20%;
2142}
2143
2144#crm-container th.contriTotalRight {
2145 border-right: 1px solid #999999;
2146}
2147
2148#crm-container th.contriTotalLeft {
2149 border-left: 1px solid #999999;
2150}
2151
2152/* TimeEntry styles */
2153.crm-container .timeEntry_control {
2154 vertical-align: middle;
2155 margin-left: 2px;
2156}
2157* html .timeEntry_control {
2158 /* IE only */
2159 margin-top: -4px;
2160}
2161
2162/* This is the style for the trigger icon. The margin-bottom value causes the icon to shift down to center it. */
2163.crm-container .ui-datepicker-trigger {
2164 margin-top: 4px;
2165 margin-bottom: -6px;
2166}
2167
2168.crm-container .ui-datepicker {
2169 width: 17em;
2170 padding: .2em .2em 0;
2171 z-index: 9999 !important;
2172}
2173
2174#crm-container .cke_editor {
2175 border: 0px none;
2176}
2177
2178
2179/* Set/alter ICONS */
2180
2181#crm-container div#printer-friendly {
2182 float: right;
2183 position: relative;
2184 margin: -2em 0.5em 0 0;
2185}
2186/* For Joomla, margin 0 works correctly */
2187#crm-container table#crm-content div#printer-friendly {
2188 margin: 0;
2189}
2190
2191#crm-container .order-icon {
2192 height: 15px;
2193 width: 10px;
2194 padding-top: 4px;
2195 padding-right: 4px;
2196}
2197
2198/* crm button style */
2199
23223213
CW
2200.crm-container .crm-submit-buttons,
2201.crm-container .action-link {
6a488035
TO
2202 height: 27px;
2203 margin: 4px 0px 4px 2px;
2204}
2205
23223213 2206.crm-container .register_link-top {
6a488035
TO
2207 float: right;
2208 margin-left: 8px;
2209}
2210
6a488035
TO
2211#crm-container .crm-button {
2212 border: medium none;
2213 cursor: pointer;
2214 display: block;
2215 float: left !important;
2216 overflow: hidden;
2217 text-shadow: 0 1px 0 black;
2218 margin: 0px 12px 0 0;
2219 padding: 0px 4px;
2220 cursor: pointer;
2221}
2222#crm-container .crm-button input {
2223 background: none;
2224 _background: #6C6C6C;
2225 /* IE6 only */
2226 border: medium none;
2227 color: #FFF;
2228 cursor: pointer;
9435db16 2229 font-size: 13px;
6a488035
TO
2230 font-weight: normal;
2231 margin: 0 0 0 0px;
2232 padding: 1px 8px 2px 4px;
2233}
2234#crm-container .crm-button-type-cancel,
2235#crm-container .crm-button-type-back {
2236 margin-left: 20px;
2237}
2238#crm-container .crm-button-type-cancel input {
2239 color: #E6E6DC!important;
2240}
2241
2242.crm-container a.button,
2243.crm-container a.button:link,
a75fac1d 2244.crm-container a.button:visited,
6a488035
TO
2245.crm-container input.form-submit,
2246#crm-container input[type=button],
2247#crm-container input.form-submit-inline,
2248#crm-container .crm-button {
2249 text-shadow: 0 1px 0 black;
2250 background: #70716B url(../i/crm-button-bg.gif) repeat-x top left;
2251 color: #FFF;
9435db16 2252 font-size: 13px;
6a488035
TO
2253 font-weight: normal;
2254 margin-right: 6px;
2255 padding: 2px 6px;
2256 text-decoration: none;
2257 cursor: pointer;
2258 border: 1px solid #3e3e3e;
2259}
2260
2261#crm-container .crm-button {
bf6d0ec8 2262 padding: 1px;
6a488035
TO
2263}
2264
2265.crm-container input.form-submit,
2266#crm-container input[type=button],
2267#crm-container input.form-submit-inline {
2268 padding: 2px 6px;
2269}
2270
2271#crm-container .crm-button input[type=button],
2272#crm-container .crm-button input.form-submit,
2273#crm-container .crm-button input.form-submit-inline {
2274 padding: 2px 4px;
2275 margin: 0px;
2276 background: none;
2277 _background: #6C6C6C;
2278 /* IE6 only */
2279 border: none;
2280}
2281
2282.crm-container a.button,
a75fac1d
CW
2283.crm-container a.button:link,
2284.crm-container a.button:visited {
6a488035
TO
2285 display: block;
2286 float: left;
2287}
2288
2289.crm-container a.button span {
2290 display: block;
2291 line-height: 14px;
2292 padding: 2px 0px;
2293}
2294
2295.crm-container .button .red {
2296 background-image: url(../i/icons/jquery-ui-FFFFFF.png);
2297}
2298
2299.crm-container a.button:active {
2300 color: #000;
2301 outline: none;
2302 /* hide dotted outline in Firefox */
2303}
2304
2305.crm-container .crm-button:hover,
2306.crm-container .crm-button:focus,
2307.crm-container input[type=submit]:hover,
2308.crm-container input[type=button]:hover,
2309.crm-container a.button:hover,
2310.crm-container a.button:focus {
2311 background-position: 0px -25px;
2312}
2313
2314/* No button styling for PayPal Express buttons */
2315#crm-container input#_qf_Register_upload_express,
2316#crm-container input#_qf_Main_upload_express {
2317 background: none;
2318 margin: 0px;
2319 padding: 0px;
2320 border: none;
2321}
2322
2323/* create new XXX style (drupal block) */
2324
2325#crm-participant-wrapper,
2326#crm-event-links-wrapper,
2327#crm-contribpage-links-wrapper,
2328#crm-create-new-wrapper,
2329#crm-contact-actions-wrapper {
2330 position: relative;
2331 float: left;
2332}
2333
2334#crm-event-links-list,
2335#crm-contribpage-links-list,
2336#crm-create-new-list,
2337#crm-contact-actions-list,
2338#crm-participant-list {
2339 position: absolute;
2340 display: none;
2341 top: 24px;
2342 width: 220px;
2343 left: 0px;
2344 z-index: 15;
2345}
2346
2347#crm-create-new-list {
2348 width: 124px;
2349}
2350#crm-contact-actions-list .icon {
2351 background-image: url("../i/icons/jquery-ui-FFFFFF.png");
2352}
2353
2354#crm-contact-actions-list .crm-contact_activities-list select {
2355 margin-top: 4px;
2356}
2357
2358#crm-contact-actions-list .crm-contact_activities-list,
2359#crm-contact-actions-list .crm-contact_print-list,
2360#crm-contact-actions-list .crm-contact_actions-list {
2361 width: 160px;
2362}
2363
2364#crm-contact-actions-list .crm-contact_activities-list ul,
2365#crm-contact-actions-list .crm-contact_print-list ul,
2366#crm-contact-actions-list .crm-contact_actions-list ul,
2367#crm-event-links-list .crm-event-info ul,
2368#crm-event-links-list .crm-event-test ul,
2369#crm-event-links-list .crm-event-live ul,
2370#crm-contribpage-links-list .crm-contribpage-contribution ul,
2371#crm-contribpage-links-list .crm-contribpage-test ul,
2372#crm-contribpage-links-list .crm-contribpage-live ul,
2373#crm-participant-list .crm-participant-counted ul,
2374#crm-participant-list .crm-participant-not-counted ul,
2375#crm-participant-list .crm-participant-listing ul,
2376#crm-create-new-list ul {
2377 width: auto;
2378 margin: 0px;
2379 padding: 0px;
2380}
2381
2382#crm-contact-actions-list .crm-contact_activities-list ul {
2383 padding-right: 4px;
2384}
2385#crm-contact-actions-list .crm-contact_print-list ul {
2386 padding-left: 4px;
2387}
2388#crm-contact-actions-list .crm-contact_actions-list ul {
2389 padding-left: 4px;
2390}
2391
2392#crm-contact-actions-list .crm-contact_activities-list {
2393 float: left;
2394}
2395#crm-contact-actions-list .crm-contact_print-list {
2396 float: right;
2397}
2398#crm-contact-actions-list .crm-contact_actions-list {
2399 margin-left: 160px;
2400 margin-right: 161px;
2401 border-left: 1px solid #a7a7a7;
2402 border-right: 1px solid #a7a7a7;
2403}
2404
2405/* =================== */
2406/* ! contact actions */
2407/* =================== */
2408
2409
2410#crm-contact-actions-wrapper {
2411 width: 85px;
2412 /* fixes ie bug where button is toooooo long */
2413}
2414#crm-contact-actions-list {
2415 width: 495px;
2416 /* fixes ie bug caused by above*/
2417}
2418
2419/* setup for icons */
2420
2421.ac_results ul li {
2422 background-image: url('');
2423}
2424
2425.crm-container .ui-icon {
2426 background-image: url("../i/icons/jquery-ui-52534D.png")
2427}
2428.crm-container .icon {
2429 height: 16px;
2430 width: 16px;
2431 background: transparent url("../i/icons/jquery-ui-52534D.png") no-repeat top right;
2432 float: left;
2433 text-indent: -10000px;
2434}
2435
2436.crm-container span.icon {
2437 float: none;
2438 display: inline-block;
2439}
2440
2441.crm-container .button .icon,
0bdc50a1
CW
2442.crm-container .crm-button .icon,
2443.crm-accordion-header .icon {
6a488035
TO
2444 background-image: url("../i/icons/jquery-ui-FFFFFF.png");
2445}
2446.crm-container .button:hover .icon,
2447.crm-container .crm-button:hover .icon {
2448 background-image: url("../i/icons/jquery-ui-2786C2.png");
2449}
2450
2451.crm-container .crm-button .icon {
2452 margin-top: 3px;
2453}
2454
2455.crm-container .dark-icon {
dbe0bbc6 2456 background-image: url("../packages/jquery/jquery-ui/css/black-tie/images/ui-icons_222222_256x240.png")}
6a488035
TO
2457.crm-container .red-icon {
2458 background-image: url("../i/icons/jquery-ui-8A1F11.png")}
2459
2460.crm-container .edit-icon {
20a88318 2461 background-position: -64px -112px;
6a488035
TO
2462}
2463.crm-container .previous-icon {
20a88318 2464 background-position: -80px -160px;
6a488035
TO
2465}
2466.crm-container .next-icon {
20a88318 2467 background-position: -64px -160px;
6a488035
TO
2468}
2469.crm-container .add-icon {
20a88318 2470 background-position: 0 -192px;
6a488035
TO
2471}
2472.crm-container .back-icon {
20a88318 2473 background-position: 0 -64px;
6a488035
TO
2474}
2475.crm-container .delete-icon {
20a88318 2476 background-position: -176px -96px;
6a488035
TO
2477}
2478.crm-container .details-icon {
20a88318 2479 background-position: -128px -112px;
6a488035
TO
2480}
2481.crm-container .button:hover .delete-icon {
dbe0bbc6 2482 background-image: url("../i/icons/jquery-ui-8A1F11.png")!important;
6a488035
TO
2483}
2484
2485.crm-container .restore-icon {
dbe0bbc6
CW
2486 background-position: 0px -66px;
2487 background-image: url("../i/icons/jquery-ui-91CE00.png");
6a488035
TO
2488}
2489.crm-container .button:hover .restore-icon {
2490 background-image: url("../i/icons/jquery-ui-91CE00.png");
2491}
2492
2493.crm-container .vcard-icon {
77115934 2494 background-position: -32px -80px;
6a488035
TO
2495}
2496
2497.crm-container .print-icon {
77115934 2498 background-position: -160px -96px;
6a488035
TO
2499}
2500
2501.crm-container .dashboard-icon {
77115934 2502 background-position: -192px -128px;
6a488035
TO
2503}
2504
79ae07d9 2505.crm-container .new_individual-icon,
6a488035 2506.crm-container .user-record-icon {
79ae07d9
CW
2507 background-position: -144px -96px;
2508}
2509.crm-container .new_household-icon {
2510 background-position: 0 -112px;
2511}
2512.crm-container .new_organization-icon {
2513 background-position: -112px -112px;
6a488035 2514}
6a488035
TO
2515.crm-container .inform-icon {
2516 background-position: -16px -144px;
2517 margin-right: 5px;
2518}
2519
2520.crm-container .dropdown-icon {
77115934 2521 background-position: -48px -32px;
6a488035
TO
2522 float: right;
2523}
2524
2525.crm-container .tip-icon {
2526 background-position: -128px -128px;
2527}
2528
2529.crm-container .alert-icon {
2530 background-position: 0 -144px;
2531}
2532.crm-container .check-icon {
77115934 2533 background-position: -64px -144px;
6a488035
TO
2534}
2535.crm-container .refresh-icon {
77115934 2536 background-position: -64px -80px;
6a488035
TO
2537}
2538.crm-container .settings-icon {
77115934 2539 background-position: -176px -112px;
6a488035
TO
2540}
2541.crm-container .search-icon {
77115934 2542 background-position: -160px -112px;
6a488035
TO
2543}
2544.crm-container .email-icon {
77115934 2545 background-position: -80px -96px;
6a488035
TO
2546}
2547.crm-container .preview-icon {
77115934 2548 background-position: -224px -128px;
6a488035
TO
2549}
2550.crm-container .play-icon {
77115934 2551 background-position: 0 -160px;
6a488035 2552}
4a143c04 2553.crm-container .close-icon {
79ae07d9 2554 background-position: -80px -128px;
4a143c04 2555}
094ea729 2556.crm-container .swap-icon {
77115934 2557 background-position: -80px -80px;
9285bb0f
AH
2558}
2559
6a488035
TO
2560#crm-container .geotag {
2561 padding: 2px 0 2px 20px !important;
2562 background: url('../i/geotag_16.png') left center no-repeat;
2563 font-size: .9em;
2564}
2565
2566/* These .crm-icon classes use item_sprites.png */
2567
2568.crm-container .crm-icon {
2569 background-image: url('../i/item_sprites.png');
2570 margin: 2px 4px 0 0;
2571 text-indent: -10000px;
2572 /* for accessibility reason, put the name of the type/subtype in the icon div (it will be hidden and replaced by the icon) */
2573}
2574
4a7803a1 2575.select2-results .select2-highlighted .Individual-icon,
6a488035
TO
2576.crm-container .Individual-icon {
2577 background-position: 0px 0px;
2578}
4a7803a1
CW
2579.select2-results .select2-highlighted .Organization-icon,
2580.crm-container .Organization-icon {
2581 background-position: -48px 0px;
6a488035 2582}
4a7803a1 2583.select2-results .select2-highlighted .Household-icon,
6a488035
TO
2584.crm-container .Household-icon {
2585 background-position: -32px 0px;
2586}
4a7803a1
CW
2587.crm-container .Group-icon {
2588 background-position: -16px 0px;
2589}
2590.select2-results .Individual-icon,
6a488035
TO
2591.crm-container .Individual-subtype-icon {
2592 background-position: 0px -48px;
2593}
4a7803a1 2594.select2-results .Household-icon,
6a488035
TO
2595.crm-container .Household-subtype-icon {
2596 background-position: -32px -48px;
2597}
4a7803a1 2598.select2-results .Organization-icon,
6a488035
TO
2599.crm-container .Organization-subtype-icon {
2600 background-position: -48px -48px;
2601}
2602
6a488035
TO
2603.crm-container .Activity-icon {
2604 background-position: -64px 0px;
2605}
2606.crm-container .Case-icon {
2607 background-position: -80px 0px;
2608}
2609.crm-container .Grant-icon {
2610 background-position: 0px -16px;
2611}
2612.crm-container .Contribution-icon {
2613 background-position: -16px -16px;
2614}
2615.crm-container .Pledge-icon {
2616 background-position: -16px -16px;
2617}
2618.crm-container .Membership-icon {
2619 background-position: -32px -16px;
2620}
2621.crm-container .Participant-icon {
2622 background-position: 0px -32px;
2623}
2624.crm-container .Note-icon {
2625 background-position: -16px -32px;
2626}
2627.crm-container .Relationship-icon {
2628 background-position: -32px -32px;
2629}
2630
dafd2d75 2631/* Icon hover-buttons */
79ae07d9 2632.crm-container a.crm-hover-button {
dafd2d75 2633 display: inline-block;
4a143c04 2634 border: 1px solid transparent;
79ae07d9
CW
2635 text-decoration: none;
2636 font-size: .8em;
2637 color: #000;
4a7803a1 2638 padding: 1px 2px 1px 0;
0bdc50a1
CW
2639 opacity: .7;
2640}
2641.crm-container .crm-accordion-header a.crm-hover-button {
2642 opacity: 1;
dafd2d75 2643}
79ae07d9
CW
2644.crm-container a.crm-hover-button:hover,
2645.crm-container a.crm-hover-button:active {
dafd2d75
CW
2646 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(1, #ccc));
2647 background-image: -webkit-linear-gradient(center bottom, #eee 0%, #ccc 100%);
2648 background-image: -moz-linear-gradient(center bottom, #eee 0%, #ccc 100%);
2649 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#cccccc', endColorstr = '#eeeeee', GradientType = 0);
2650 background-image: linear-gradient(top, #eee 0%, #ccc 100%);
2651 border: 1px solid #AAAAAA;
2652 border-radius: 4px;
0bdc50a1 2653 opacity: 1;
79ae07d9 2654 color: #2786C2;
dafd2d75
CW
2655}
2656.crm-container .crm-hover-button .icon {
2657 margin-left: 3px;
20a88318
CW
2658 position: relative;
2659 top: 2px;
dafd2d75
CW
2660}
2661.crm-container .crm-hover-button:hover .icon,
2662.crm-container .crm-hover-button:active .icon {
2663 background-image: url("../i/icons/jquery-ui-2786C2.png");
2664}
6a488035
TO
2665/* accordion styles */
2666
201ddbaf 2667.crm-container .crm-accordion-header {
6a488035
TO
2668 background-image: url("../i/TreeMinusWhite.gif");
2669 background-repeat: no-repeat;
2670 background-position: 2px center;
2671 cursor: pointer;
2672 color: #F5F6F1;
2673 font-weight: normal;
2674 padding: 4px 8px 4px 20px;
2675 background-color: #5D677B;
2676}
2677
201ddbaf 2678.crm-container .crm-accordion-header:hover {
6a488035
TO
2679 background-color: #32414f;
2680}
2681
201ddbaf 2682.crm-container .collapsed .crm-accordion-header {
6a488035
TO
2683 background-image: url("../i/TreePlusWhite.gif");
2684}
2685
201ddbaf
CW
2686.crm-container .collapsed .crm-accordion-body,
2687.crm-container .crm-collapsible.collapsed .collapsible-title + * {
6a488035
TO
2688 display: none;
2689}
2690
201ddbaf
CW
2691.crm-container .crm-accordion-inner .crm-accordion-header,
2692.crm-container .crm-accordion-wrapper .crm-master-accordion-header,
2693.crm-container .crm-collapsible .collapsible-title {
6a488035
TO
2694 background-image: url("../i/TreeMinus.gif");
2695 background-color: transparent;
2696 color: #3E3E3E;
2697}
2698
201ddbaf
CW
2699.crm-container .crm-accordion-inner.collapsed .crm-accordion-header,
2700.crm-container .crm-accordion-wrapper.collapsed .crm-master-accordion-header,
2701.crm-container .crm-collapsible.collapsed .collapsible-title {
6a488035
TO
2702 background-image: url("../i/TreePlus.gif");
2703}
2704
201ddbaf 2705.crm-container .crm-accordion-wrapper .crm-master-accordion-header {
6a488035
TO
2706 background-color: transparent;
2707 font-size: 16px;
2708 color: #3e3e3e;
2709 margin-bottom: 0px;
2710}
2711
201ddbaf 2712.crm-container .crm-accordion-inner .crm-accordion-header {
9435db16 2713 font-size: 13px;
6a488035
TO
2714}
2715
201ddbaf 2716.crm-container .crm-accordion-wrapper {
6a488035
TO
2717 margin-bottom: 4px;
2718}
2719
201ddbaf 2720.crm-container .crm-accordion-header {
6a488035
TO
2721 -moz-border-radius: 4px 4px 0px 0px;
2722 -webkit-border-radius: 4px 4px 0px 0px;
2723 -khtml-border-radius: 4px 4px 0px 0px;
2724 border-radius: 4px 4px 0px 0px;
2725}
2726
201ddbaf 2727.crm-container .collapsed .crm-accordion-header {
6a488035
TO
2728 -moz-border-radius: 4px;
2729 -webkit-border-radius: 4px;
2730 -khtml-border-radius: 4px;
2731 border-radius: 4px;
2732}
2733
201ddbaf 2734.crm-container .crm-accordion-body {
6a488035
TO
2735 -moz-border-radius: 0px 0px 4px 4px;
2736 -webkit-border-radius: 0px 0px 4px 4px;
2737 -khtml-border-radius: 0px 0px 4px 4px;
2738 border-radius: 0px 0px 4px 4px;
2739 border: 1px solid #70716B;
2740 border-top: 0px;
2741 padding: 4px 0px;
2742}
2743
201ddbaf 2744.crm-container .crm-collapsible .collapsible-title {
6a488035
TO
2745 padding-left: 19px;
2746 text-decoration: none;
2747 background-repeat: no-repeat;
2748 background-position: 0px center;
2749 cursor: pointer;
2750}
2751
201ddbaf 2752.crm-container .crm-master-accordion-header+.crm-accordion-body {
6a488035
TO
2753 border: none;
2754 padding: 0px;
2755}
2756
201ddbaf 2757.crm-container .crm-accordion-header.active {
6a488035
TO
2758 font-weight: bold;
2759 background-color: #41477E;
2760}
2761
201ddbaf 2762.crm-container .crm-accordion-header.active:hover {
6a488035
TO
2763 background-color: #2E3471;
2764}
2765
201ddbaf
CW
2766.crm-container .crm-master-accordion-header.crm-accordion-header:hover,
2767.crm-container .crm-collapsible .collapsible-title:hover {
6a488035
TO
2768 background-color: transparent;
2769 color: #0200A0;
2770}
2771
2772/* civicrm admin menu */
2773#civicrm-menu {
2774 height: 27px;
2775}
2776
ccc656b8
CW
2777#civicrm-menu .ui-autocomplete-input,
2778.crm-container .ui-autocomplete-input,
6a488035 2779.crm-container .ac_input {
e3a35c35 2780 background: white url("../packages/jquery/plugins/select2/select2.png") no-repeat scroll right -23px;
6a488035
TO
2781 padding-right: 16px;
2782 /* so that text doesn't flow on top of icon */
2783}
2784#crm-container .ac_input {
2785 width: 20em;
2786}
2787
2788#civicrm-menu #crm-qsearch {
2789 padding: 1px 3px 1px 2px;
2790 height: 20px;
2791}
2792
2793#civicrm-menu #crm-qsearch input {
2794 background-color: #ffffff;
2795 border: 1px solid black;
2796 margin: 0px;
2797 padding: 2px 16px 3px 2px;
2798}
2799
8960d9b9
CW
2800/* Status message bar */
2801#civicrm-menu .crm-menubar-status-container {
2802 position: absolute;
2803 right: 2px;
2804 top: 0;
2805 border-top: 1px solid #1B1B1B;
2806}
2807
2808#civicrm-menu .crm-menubar-status-progressbar {
2809 padding: 3px 14px;
2810 font-size: 14px !important;
2811 font-weight: bold;
2812 background: rgba(142, 136, 0, 0.9);
2813 text-align: center;
2814}
2815
2816#civicrm-menu .status-busy {
2817 background: #F8FF03 url("../packages/jquery/jquery-ui/css/black-tie/images/animated-overlay.gif");
2818}
2819
2820#civicrm-menu .status-done .crm-menubar-status-progressbar {
2821 background: rgba(41, 152, 32, 0.7);
6a488035
TO
2822}
2823
2824/* Pop-up help icon - eliminate forced line break */
2825.crm-container a.helpicon,
2826.crm-container .crm-master-accordion-header a.helpicon {
005da0f2
CW
2827 background-color: #6177D5;
2828 background-image: url("../i/icons/jquery-ui-F5F6F1.png");
2829 background-position: -50px -146px;
2830 border-radius: 6px;
6a488035 2831 display: inline-block;
005da0f2
CW
2832 height: 12px;
2833 width: 12px;
2834 opacity: .7;
2835 position: relative;
2836 top: 2px;
6a488035
TO
2837}
2838
2839div.crm-accordion-header a.helpicon {
005da0f2
CW
2840 background-color: #F5F6F1;
2841 background-image: url(../i/icons/jquery-ui-2786C2.png);
6a488035
TO
2842}
2843
2844div a.helpicon:hover,
2845div a.helpicon:focus {
005da0f2 2846 opacity: 1;
6a488035
TO
2847}
2848
2849.crm-container .crm-summary-link {
2850 position: relative;
2851 z-index: 16;
2852}
2853
2854.crm-container .crm-tooltip-wrapper {
2855 position: absolute;
2856 bottom: 0px;
2857 left: -36px;
2858 overflow: hidden;
2859 z-index: 1000;
2860 padding-bottom: 10px;
2861 background: transparent url('../i/overlay-pointer.png') no-repeat bottom left;
9435db16 2862 font-size: 13px;
6a488035
TO
2863 display: none;
2864}
2865
2866.crm-container .crm-tooltip-down .crm-tooltip-wrapper {
2867 top: 20px;
2868 padding-top: 10px;
2869 background: transparent url('../i/overlay-pointer.png') no-repeat top left;
2870 overflow: visible;
2871}
2872
2873.crm-container .crm-tooltip-active {
2874 z-index: 20;
2875}
2876
2877.crm-container .crm-tooltip-active .crm-tooltip-wrapper {
2878 display: block;
2879}
2880
2881.crm-container .crm-tooltip {
2882 padding: 4px;
2883 background-color: #2f2f2e;
2884 color: #FFF;
2885 margin-left: 11px;
2886 min-width: 20px;
2887 min-height: 20px;
2888}
2889#crm-container .crm-tooltip table,
2890#crm-container .crm-tooltip table tr td {
2891 border: none;
7944a554 2892 color: #FFF;
6a488035
TO
2893}
2894.crm-container .crm-tooltip .crm-summary-group {
2895 width: 700px;
2896 margin-bottom: 0px;
2897}
2898
2899.crm-container .crm-tooltip .crm-report-overlay {
2900 width: 500px;
2901 margin-bottom: 0px;
2902}
2903
2904.crm-container .crm-tooltip .crm-report-overlay thead td {
2905 font-weight: bold;
2906}
2907
2908.crm-container .crm-summary-group h2 {
2909 padding: 2px 4px 0 4px;
2910 font-size: 14px;
2911 color: #FFF;
2912 margin-bottom: 0px;
2913}
2914
2915/* crm-summary-group appears outside crm-container for contact summary icon overlay */
2916#crm-container .crm-summary-group .crm-section .label,
2917.crm-container .crm-summary-group .crm-section .label {
2918 text-align: left;
2919 width: 40%;
2920 font-size: 11px;
2921 color: #A7A7A7;
2922}
2923
2924#crm-container .crm-summary-group .crm-section .content,
2925.crm-container .crm-summary-group .crm-section .content {
2926 margin-left: 41%;
2927}
2928
6a488035
TO
2929/* Class for tokens and helpicon */
2930.crm-container .helpIcon {
2931 float: right;
2932 position: relative;
2933 z-index: 1;
2934 margin-right: 45px;
2935}
2936
2937#crm-container ul.token-input-list-facebook, ul.token-input-list-facebook li.leaf,
2938#crm-container ul li {
2939 list-style-image: none;
2940}
2941
2942/* privacy icons */
2943#crm-container div span.privacy-flag {
2944 background-repeat: no-repeat;
2945 background-image: url("../i/stop-icon.png");
2946 float: right;
2947}
2948
2949/* specific, targeted fixes */
2950#crm-container .dashboard-elements,
2951#crm-container #membership-listings,
2952#crm-container #premiums-listings,
2953#crm-container #searchForm table {
2954 margin: 0em;
2955 border-collapse: collapse;
2956 border: 0px none;
2957}
2958
2959/* Override Drupal .2em margin-bottom on forms (we don't want to give up that space) */
2960div#crm-container form {
2961 margin-bottom: 0em;
2962}
2963
2964/* This is the style for the trigger icon. The margin-bottom value causes the icon to shift down to center it. */
2965.crm-container .ui-datepicker-trigger {
2966 margin-top: 4px;
2967 margin-bottom: -6px;
2968}
2969
2970.crm-container .ui-datepicker {
2971 z-index: 1;
2972}
2973
2974#activity-content table {
2975 width: 100%!important;
2976}
2977
6a488035
TO
2978#Tag .tree .collapsable .hit,
2979#Tag .tree .expandable .hit {
2980 padding-left: 16px;
2981}
2982
eb71347f
CW
2983/** DATATABLES **/
2984/*
2985 * jQuery UI specific styling
2986 */
2987
2988.crm-container .paging_two_button .ui-button {
2989 float: left;
2990 cursor: pointer;
2991 * cursor: hand;
2992}
2993
2994.crm-container .paging_full_numbers .ui-button {
2995 padding: 2px 6px;
2996 margin: 0;
2997 cursor: pointer;
2998 * cursor: hand;
2999 color: white !important;
3000}
3001
3002.crm-container .dataTables_paginate .ui-button {
3003 margin-right: -0.1em !important;
3004}
3005
3006.crm-container .paging_full_numbers {
3007 width: 350px !important;
3008}
3009
3010.crm-container .dataTables_wrapper .ui-toolbar {
3011 padding: 5px;
3012}
3013
3014.crm-container .dataTables_paginate {
3015 width: auto;
3016}
3017
3018.crm-container .dataTables_info {
3019 padding-top: 3px;
3020}
3021
eb71347f
CW
3022.crm-container div.dataTables_wrapper .ui-widget-header {
3023 font-weight: normal;
3024}
3025
3026
3027/*
3028 * Sort arrow icon positioning
3029 */
3030.crm-container table.display thead th div.DataTables_sort_wrapper {
3031 position: relative;
3032 padding-right: 20px;
3033}
3034
3035.crm-container table.display thead th div.DataTables_sort_wrapper span {
3036 position: absolute;
3037 top: 50%;
3038 margin-top: -8px;
3039 right: 0;
3040}
3041
3042/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3043 * DataTables features
3044 */
3045
3046.crm-container .dataTables_wrapper {
3047 position: relative;
3048 clear: both;
3049 zoom: 1; /* Feeling sorry for IE */
3050}
3051
3052.crm-container .dataTables_processing {
3053 position: absolute;
3054 top: 50%;
3055 left: 50%;
3056 width: 250px;
3057 height: 30px;
3058 margin-left: -125px;
3059 margin-top: -15px;
3060 padding: 14px 0 2px 0;
3061 border: 1px solid #ddd;
3062 text-align: center;
3063 color: #999;
3064 font-size: 14px;
3065 background-color: white;
3066}
3067
3068.crm-container .dataTables_length {
3069 width: 40%;
6a488035
TO
3070 float: none;
3071 padding-bottom: 5px;
3072}
eb71347f
CW
3073
3074.crm-container .dataTables_filter {
3075 width: 50%;
3076 float: right;
3077 text-align: right;
3078}
3079
3080.crm-container .dataTables_info {
3081 width: 60%;
3082 float: left;
3083}
3084
3085.crm-container .dataTables_paginate {
3086 float: right;
3087 text-align: right;
3088}
3089
3090
3091/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3092 * DataTables display
3093 */
3094.crm-container table.display {
3095 margin: 0 auto;
3096 clear: both;
3097 width: 100%;
3098}
3099
3100.crm-container table.display thead th {
3101 padding: 3px 18px 3px 10px;
3102 border-bottom: 1px solid black;
3103 font-weight: bold;
3104 cursor: pointer;
93dee6ee
CW
3105}
3106
3107.crm-container table.display thead th.sorting_disabled {
3108 cursor: default;
eb71347f
CW
3109}
3110
3111.crm-container table.display tfoot th {
3112 padding: 3px 18px 3px 10px;
3113 border-top: 1px solid black;
3114 font-weight: bold;
3115}
3116
3117.crm-container table.display tr.heading2 td {
3118 border-bottom: 1px solid #aaa;
3119}
3120
3121.crm-container table.display td {
3122 padding: 3px 10px;
3123}
3124
3125.crm-container table.display td.center {
3126 text-align: center;
3127}
3128
3129/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3130 * DataTables row classes
3131 */
3132.crm-container table.display tr.odd.gradeA {
3133 background-color: #ddffdd;
3134}
3135
3136.crm-container table.display tr.even.gradeA {
3137 background-color: #eeffee;
3138}
3139
3140.crm-container table.display tr.odd.gradeC {
3141 background-color: #ddddff;
3142}
3143
3144.crm-container table.display tr.even.gradeC {
3145 background-color: #eeeeff;
3146}
3147
3148.crm-container table.display tr.odd.gradeX {
3149 background-color: #ffdddd;
3150}
3151
3152.crm-container table.display tr.even.gradeX {
3153 background-color: #ffeeee;
3154}
3155
3156.crm-container table.display tr.odd.gradeU {
3157 background-color: #ddd;
3158}
3159
3160.crm-container table.display tr.even.gradeU {
3161 background-color: #eee;
3162}
3163
3164
3165.crm-container tr.odd {
3166 background-color: #E2E4FF;
3167}
3168
3169.crm-container tr.even {
3170 background-color: white;
3171}
3172
3173/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3174 * Misc
3175 */
3176.crm-container .dataTables_scroll {
3177 clear: both;
3178}
3179
3180.crm-container .dataTables_scrollBody {
3181 *margin-top: -1px;
3182 -webkit-overflow-scrolling: touch;
3183}
3184
3185.crm-container .top, .bottom {
3186 padding: 15px;
3187 background-color: #F5F5F5;
3188 border: 1px solid #CCCCCC;
3189}
3190
3191.crm-container .top .dataTables_info {
3192 float: none;
3193}
3194
3195.crm-container .dataTables_empty {
3196 text-align: center;
3197}
3198
3199.crm-container tfoot input {
3200 margin: 0.5em 0;
3201 width: 100%;
3202 color: #444;
3203}
3204
3205.crm-container tfoot input.search_init {
3206 color: #999;
3207}
3208
3209.crm-container td.group {
3210 background-color: #d1cfd0;
3211 border-bottom: 2px solid #A19B9E;
3212 border-top: 2px solid #A19B9E;
3213}
3214
3215.crm-container td.details {
3216 background-color: #d1cfd0;
3217 border: 2px solid #A19B9E;
3218}
3219
3220
3221.crm-container .example_alt_pagination div.dataTables_info {
3222 width: 40%;
3223}
3224
3225.crm-container .paging_full_numbers {
3226 width: 400px;
3227 height: 22px;
3228 line-height: 22px;
3229}
3230
3231.crm-container .paging_full_numbers a:active {
3232 outline: none
3233}
3234
3235.crm-container .paging_full_numbers a:hover {
3236 text-decoration: none;
3237}
3238
3239.crm-container .paging_full_numbers a.paginate_button,
3240.crm-container .paging_full_numbers a.paginate_active {
3241 border: 1px solid #aaa;
3242 -webkit-border-radius: 5px;
3243 -moz-border-radius: 5px;
3244 padding: 2px 5px;
3245 margin: 0 3px;
3246 cursor: pointer;
3247 *cursor: hand;
3248 color: #333 !important;
3249}
3250
3251.crm-container .paging_full_numbers a.paginate_button {
3252 background-color: #ddd;
3253}
3254
3255.crm-container .paging_full_numbers a.paginate_button:hover {
3256 background-color: #ccc;
3257 text-decoration: none !important;
3258}
3259
3260.crm-container .paging_full_numbers a.paginate_active {
3261 background-color: #99B3FF;
3262}
3263
3264.crm-container table.display tr.even.row_selected td {
3265 background-color: #B0BED9;
3266}
3267
3268.crm-container table.display tr.odd.row_selected td {
3269 background-color: #9FAFD1;
3270}
3271
3272/*
3273 * Sorting classes for columns
3274 */
3275/* For the standard odd/even */
3276.crm-container tr.odd td.sorting_1 {
3277 background-color: #D3D6FF;
3278}
3279
3280.crm-container tr.odd td.sorting_2 {
3281 background-color: #DADCFF;
3282}
3283
3284.crm-container tr.odd td.sorting_3 {
3285 background-color: #E0E2FF;
3286}
3287
3288.crm-container tr.even td.sorting_1 {
3289 background-color: #EAEBFF;
3290}
3291
3292.crm-container tr.even td.sorting_2 {
3293 background-color: #F2F3FF;
3294}
3295
3296.crm-container tr.even td.sorting_3 {
3297 background-color: #F9F9FF;
3298}
3299
3300
3301/* For the Conditional-CSS grading rows */
3302/*
3303 Colour calculations (based off the main row colours)
3304 Level 1:
3305 dd > c4
3306 ee > d5
3307 Level 2:
3308 dd > d1
3309 ee > e2
3310 */
3311.crm-container tr.odd.gradeA td.sorting_1 {
3312 background-color: #c4ffc4;
3313}
3314
3315.crm-container tr.odd.gradeA td.sorting_2 {
3316 background-color: #d1ffd1;
3317}
3318
3319.crm-container tr.odd.gradeA td.sorting_3 {
3320 background-color: #d1ffd1;
3321}
3322
3323.crm-container tr.even.gradeA td.sorting_1 {
3324 background-color: #d5ffd5;
3325}
3326
3327.crm-container tr.even.gradeA td.sorting_2 {
3328 background-color: #e2ffe2;
3329}
3330
3331.crm-container tr.even.gradeA td.sorting_3 {
3332 background-color: #e2ffe2;
3333}
3334
3335.crm-container tr.odd.gradeC td.sorting_1 {
3336 background-color: #c4c4ff;
3337}
3338
3339.crm-container tr.odd.gradeC td.sorting_2 {
3340 background-color: #d1d1ff;
3341}
3342
3343.crm-container tr.odd.gradeC td.sorting_3 {
3344 background-color: #d1d1ff;
3345}
3346
3347.crm-container tr.even.gradeC td.sorting_1 {
3348 background-color: #d5d5ff;
3349}
3350
3351.crm-container tr.even.gradeC td.sorting_2 {
3352 background-color: #e2e2ff;
3353}
3354
3355.crm-container tr.even.gradeC td.sorting_3 {
3356 background-color: #e2e2ff;
3357}
3358
3359.crm-container tr.odd.gradeX td.sorting_1 {
3360 background-color: #ffc4c4;
3361}
3362
3363.crm-container tr.odd.gradeX td.sorting_2 {
3364 background-color: #ffd1d1;
3365}
3366
3367.crm-container tr.odd.gradeX td.sorting_3 {
3368 background-color: #ffd1d1;
3369}
3370
3371.crm-container tr.even.gradeX td.sorting_1 {
3372 background-color: #ffd5d5;
3373}
3374
3375.crm-container tr.even.gradeX td.sorting_2 {
3376 background-color: #ffe2e2;
3377}
3378
3379.crm-container tr.even.gradeX td.sorting_3 {
3380 background-color: #ffe2e2;
3381}
3382
3383.crm-container tr.odd.gradeU td.sorting_1 {
3384 background-color: #c4c4c4;
3385}
3386
3387.crm-container tr.odd.gradeU td.sorting_2 {
3388 background-color: #d1d1d1;
3389}
3390
3391.crm-container tr.odd.gradeU td.sorting_3 {
3392 background-color: #d1d1d1;
3393}
3394
3395.crm-container tr.even.gradeU td.sorting_1 {
3396 background-color: #d5d5d5;
3397}
3398
3399.crm-container tr.even.gradeU td.sorting_2 {
3400 background-color: #e2e2e2;
3401}
3402
3403.crm-container tr.even.gradeU td.sorting_3 {
3404 background-color: #e2e2e2;
3405}
3406
3407/*
3408 * KeyTable
3409 */
3410.crm-container table.KeyTable td {
3411 border: 3px solid transparent;
3412}
3413
3414.crm-container table.KeyTable td.focus {
3415 border: 3px solid #3366FF;
3416}
3417
3418.crm-container table.display tr.gradeA {
3419 background-color: #eeffee;
3420}
3421
3422.crm-container table.display tr.gradeC {
3423 background-color: #ddddff;
3424}
3425
3426.crm-container table.display tr.gradeX {
3427 background-color: #ffdddd;
3428}
3429
3430.crm-container table.display tr.gradeU {
3431 background-color: #ddd;
3432}
3433
3434/* DataTables fixes */
3435.crm-container .crm-datatable-pager-top {
6a488035
TO
3436 padding-top: 5px;
3437 padding-bottom: 25px;
3438}
eb71347f 3439.crm-container .crm-datatable-pager-bottom {
6a488035
TO
3440 padding-top: 10px;
3441 padding-bottom: 25px;
3442}
eb71347f 3443.crm-container .crm-datatable-pager-top .dataTables_length {
6a488035
TO
3444 float: left;
3445}
eb71347f 3446.crm-container .css_right {
6a488035
TO
3447 float: right;
3448}
3449
3450/* Date plugin */
9435db16 3451.crm-container input.dateplugin {
6a488035
TO
3452 background: white url(../i/cal.gif) no-repeat scroll right center;
3453 padding-right: 16px;
3454 /* so that text doesn't flow on top of icon */
3455 width: 9em;
3456}
3457
3458/* Date plugin */
9435db16 3459.crm-container div.batch-update {
124139c4 3460 overflow: visible;
3461}
3462
6a488035
TO
3463/* Help text in Send Mail*/
3464#crm-container div.messageHelp {
3465 z-index: 1;
3466 position: absolute;
3467 margin: 6px 0px 0px 115px;
3468}
3469/*chart */
3470#chartData {
3471 overflow: auto;
3472}
3473
3474#crm-container .signature {
3475 width: 495px;
3476}
3477
3478/* editor skin tweaks */
3479
3480#crm-container span.cke_skin_kama {
3481 border: none;
3482}
3483#crm-container .cke_skin_kama .cke_wrapper {
3484 background-image: none;
3485}
3486
3487/* skin */
3488
3489#crm-container .crm-title {
3490 margin-bottom: 8px;
3491}
3492
3493/* tables */
3494.crm-container table {
3495 border: 1px solid #efefef;
3496}
3497
3498.crm-container .crm-form-block table {
3499 border: none;
3500}
3501.crm-container tr.even,
3502.crm-container tr.odd,
3503.crm-container tbody th {
3504 border-color: #FFF #FFF #efefef #FFF;
3505}
3506
3507.crm-container tr.even-row td,
3508.crm-container tr.odd-row td,
3509.crm-container table.display td,
3510.crm-container table.pagerDisplay td {
3511 border-color: #efefef;
3512 border-right: 1px solid #efefef;
3513}
3514.crm-container .odd-row,
3515.crm-container .odd,
3516tbody.scrollContent {
3517 background-color: #FAFAFA;
3518}
3519.crm-container .even-row,
3520.crm-container .even,
3521tbody.scrollContent tr.alternateRow {
3522 background-color: #EFEFEF;
3523}
3524
3525.crm-container td.checkbox {
3526 vertical-align: middle;
3527 text-align: center;
3528}
3529.crm-container tr.columnheader a.sorting {
3530 color: #a7a7a7;
3531}
3532
3533.crm-container a.sorting {
3534 color: #A7A7A7;
3535}
3536.crm-container a.sorting_desc,
3537.crm-container a.sorting_asc {
3538 color: #000;
3539}
3540
3541.crm-container tr a.sorting,
3542.crm-container tr a.sorting_asc,
3543.crm-container tr a.sorting_desc {
3544 color: #52534D;
3545}
3546
3547/*contact summary page */
6a488035
TO
3548#crm-container div.contact_details,
3549#crm-container #customFields .contact_panel .customFieldGroup {
3550 background-color: transparent;
3551}
3552
3553#crm-container div.contact_panel td,
3554.crm-container table.crm-info-panel td {
3555 border-bottom: 1px solid #FFF;
3556}
3557
3558#crm-container div.contactCardLeft .label,
3559#crm-container div.contactCardRight .label,
3560.crm-container table.crm-info-panel .label {
3561 color: #2f2f2f;
3562 font-weight: normal;
3563}
3564
3565.crm-container .disabled,
3566.crm-container .cancelled {
3567 color: #999999 !important;
3568}
3569#mainTabContainer li.disabled {
3570 text-decoration: none;
3571}
a07afa53
CW
3572#mainTabContainer li.disabled a.ui-tabs-anchor,
3573#mainTabContainer li.crm-count-0 a.ui-tabs-anchor {
6a488035
TO
3574 color: #999999 !important;
3575}
3576#crm-container tr.crm-job {
3577 text-decoration: none !important;
3578}
3579
3580#crm-container table.selector td {
3581 border-right: 1px dotted #DDDDDD;
3582}
3583#crm-container #customFields div.contact_panel td {
3584 border-bottom: 1px solid #FFFFFF;
3585 padding: 4px;
3586 vertical-align: top;
3587}
3588
3589#crm-container div.contact_panel td,
3590.crm-container table.crm-info-panel td {
3591 background-color: #f4f4ed;
3592}
3593
3594#crm-container div.contact_panel td.label,
3595#crm-container #customFields div.contact_panel td.label,
3596.crm-container table.crm-info-panel td.label {
3597 background-color: #fafafa;
3598 width: 120px;
3599 text-align: left;
3600 color: #7a7a60;
3601}
3602.crm-container table.crm-info-panel td.label {
3603 width: 150px;
3604}
3605
3606#crm-container .form-layout td.label,
3607#crm-container .form-layout-compressed td.label {
3608 width: 150px;
3609 text-align: right;
3610 color: #7a7a60;
3611}
3612
3613#crm-container .form-layout td.label,
3614#crm-container form table.report .label,
3615#crm-container form table label,
3616#crm-container form table.report label {
3617 color: #3e3e3e;
3618}
3619
3620#crm-container div.contact_panel td.grouplabel {
3621 border-bottom: 2px solid #D7D7D0 !important;
3622}
3623
3624#tagGroup table .label {
3625 color: #FFF;
3626}
3627#tagGroup table {
3628 color: #000;
3629}
3630
3631
3632/* search results */
3633
3634.crm-container .crm-search-tasks,
3635.crm-container .crm-tasks {
3636 background-color: #F0F0E8;
3637 color: #52534D;
3638}
3639
3640#crm-container .crm-tasks table {
3641 margin: 0;
3642}
3643
3644.crm-container .crm-results-block {
3645 position: relative;
3646}
3647
3648/* warning labels and messages */
3649.crm-container del,
3650.crm-container .crm-is_deleted,
3651.crm-container table.caseSelector td.status-urgent,
3652.crm-container .font-red,
3653.crm-container .status-removed,
3654.crm-container .status-overdue,
3655.crm-container .status-fatal,
3656.crm-container .status-hold,
3657.crm-container .status-past,
3658.crm-container .status-warning {
3659 color: #E43D2B !important;
3660}
3661
3662/* rounded corners - we will call dd_roundies on all this */
3663.crm-container .crm-button,
3664.crm-container a.button,
3665.crm-container a.button:link,
3666.crm-container input.form-submit,
3667.crm-container input[type=button],
3668.crm-container input.form-submit-inline {
3669 -moz-border-radius: 3px;
3670 -webkit-border-radius: 3px;
3671 -khtml-border-radius: 3px;
3672 border-radius: 3px;
3673}
3674
3675
3676.crm-container div.status,
3677div.m ul#civicrm-menu,
3678.crm-container #help,
3679.crm-container .help,
3680.crm-container .ui-tabs-panel,
3681.crm-container .crm-content-block,
3682#full-screen-header,
3683.crm-container .crm-pager,
3684.crm-container form .section-hidden-border,
3685.crm-container #search-status,
3686.crm-container .crm-form-block,
3687.crm-container .crm-search-tasks,
3688.crm-container .crm-tasks,
3689.crm-container div.form-item,
3690.crm-container div.messages {
3691 -moz-border-radius: 4px;
3692 -webkit-border-radius: 4px;
3693 -khtml-border-radius: 4px;
3694 border-radius: 4px;
3695}
3696
3697/* autocomplete */
3698
3699.ac_results {
3700 background: transparent url(../i/dropdown-pointer.gif) no-repeat 25px 1px;
3701 padding-top: 5px;
3702 border: none;
3703 text-align: left;
3704}
3705
3706.ac_results-inner,
3707.crm-participant-list-inner,
3708.crm-event-links-list-inner,
3709.crm-contribpage-links-list-inner,
3710.crm-create-new-list-inner,
3711.crm-contact-actions-list-inner {
3712 background-color: #2f2f2e;
3713 padding: 4px;
3714}
3715
3716.crm-create-new-list-inner {
3717 width: 124px!important;
3718}
3719
3720.ac_even {
3721 background-color: transparent;
3722}
3723.ac_odd {
3724 background-color: #4F4F4F;
3725}
3726
3727.ac_results li a {
3728 display: block;
3729}
3730
3731.ac_results li,
3732.ac_results li a,
3733.ac_results li a:visited,
3734.crm-container .ac_results li,
3735.crm-container .ac_results li a,
3736.crm-container .ac_results li a:visited {
3737 color: #DFDFDF;
3738 text-decoration: none;
3739}
3740
3741.ac_results li strong {
3742 color: #FFF;
3743 font-weight: normal;
3744}
3745
3746.ac_results li .icon,
3747.ac_results li a .icon,
3748.ac_results li a:visited .icon,
3749.crm-container .ac_results li .icon,
3750.crm-container .ac_results li a .icon,
3751.crm-container .ac_results li a:visited .icon {
3752 background-image: url(../i/icons/jquery-ui-FFFFFF.png);
3753}
3754
3755.ac_results li a:hover .icon,
3756.ac_results li.ac_over a .icon,
3757.crm-container .ac_results li a:hover .icon {
3758 background-image: url(../i/icons/jquery-ui-3E3E3E.png);
3759}
3760
3761.ac_results li.ac_over,
3762.ac_results li:hover,
3763.ac_results li:hover a,
3764.ac_results li.ac_over a,
3765.ac_results li a:hover,
3766.ac_results li.ac_over a:visited {
3767 background-color: #F5F6F1;
3768 color: #666;
3769}
3770.ac_results li.ac_over strong,
3771.ac_results li:hover strong,
3772.crm-container .ac_results li.ac_over strong {
3773 color: #000;
3774}
3775
3776/* loader autocomplete */
3777
ccc656b8
CW
3778#civicrm-menu .ui-autocomplete-loading,
3779.crm-container .ui-autocomplete-loading,
6a488035
TO
3780.crm-container .ac_loading {
3781 background: white url('../i/loading.gif') no-repeat right center;
3782}
3783
955b23bd 3784/* select2 */
ab345ca5
CW
3785.crm-select2 {
3786 width: 15em;
3787}
3788.crm-container .select2-container {
8a6cfaa9 3789 min-width: 6em !important;
969c7859 3790 font-size: 11px;
ab345ca5 3791}
969c7859
CW
3792/* Style civi form inputs to match select2 */
3793.crm-container input.crm-form-text {
955b23bd
CW
3794 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
3795 background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
3796 background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
3797 background-image: linear-gradient(top, #eee 1%, #fff 15%);
3798}
4f95329c
CW
3799.crm-container select.crm-form-select {
3800 border: 1px solid #aaa;
3801 color: #444;
3802 height: 2.2em;
3803 padding: 4px;
3804 border-radius: 4px;
3805 background-color: #fff;
3806 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
3807 background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
3808 background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
3809 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
3810 background-image: linear-gradient(top, #fff 0%, #eee 50%);
3811}
e3a35c35 3812/* Add arrow icon to multi-selects */
969c7859
CW
3813.crm-container .select2-container-multi .select2-choices:before {
3814 background: url("../packages/jquery/plugins/select2/select2.png") no-repeat scroll 0 -4px;
3815 content: "";
3816 display: block;
3817 height: 15px;
3818 position: absolute;
3819 right: 0;
3820 top: 5px;
3821 width: 20px;
ab345ca5 3822}
e3a35c35 3823/* Add search icon to ajax multi-selects and opened multi-selects */
969c7859
CW
3824.crm-container .select2-container-multi.select2-container-active .select2-choices:before,
3825.crm-container .select2-container-multi.crm-ajax-select .select2-choices:before {
3826 background-position: right -26px;
3827}
3828/* Reduce select2 size to match other inputs */
3829.crm-container .select2-container-multi .select2-choices {
3830 min-height: 25px;
3831}
3832.crm-container .select2-container-multi .select2-choices .select2-search-choice {
3833 padding: 2px 5px 2px 18px;
3834}
3835.crm-container .select2-container-multi .select2-choices .select2-search-field input {
3836 padding: 4px;
3837}
3838.crm-container .select2-search-choice-close {
3839 top: 2px;
955b23bd 3840}
e869b07d
CW
3841.crm-container .select2-container .select2-choice abbr {
3842 top: 6px;
3843}
c7130c3e
CW
3844.crm-container .select2-container .select2-choice > .select2-chosen {
3845 font-size: 1.1em;
3846}
e3a35c35
CW
3847/* Add search icon to ajax single-selects */
3848.crm-container .crm-ajax-select .select2-arrow b {
3849 background-position: -39px -22px;
3850}
3851/* Restore normal icon when searchable field is open */
3852.crm-container .select2-dropdown-open .select2-choice .select2-arrow b {
3853 background-position: -18px 1px;
3854}
3a9e5e69 3855/* Style autocomplete results */
54bee7df
CW
3856.crm-container .select2-results table.crm-select2-row,
3857.crm-container .select2-results table.crm-select2-row tbody,
3858.crm-container .select2-results table.crm-select2-row tr,
3859.crm-container .select2-results table.crm-select2-row td {
3a9e5e69
CW
3860 border: 0 none;
3861 padding: 0;
3862 margin: 0;
3863 border-collapse: collapse;
3864}
54bee7df 3865.crm-container .select2-results table.crm-select2-row .crm-select2-row-label {
3a9e5e69
CW
3866 font-size: 1.1em;
3867}
54bee7df 3868.crm-container .select2-results table.crm-select2-row .crm-select2-row-description {
3a9e5e69
CW
3869 font-size: 0.8em;
3870 line-height: 1.5em;
3871 color: #696969;
3872}
54bee7df 3873.crm-container .select2-results .select2-highlighted table.crm-select2-row .crm-select2-row-description {
3a9e5e69
CW
3874 color: #f0f0f0;
3875}
54bee7df
CW
3876.crm-container .select2-results td.crm-select2-icon {
3877 width: 20px;
3878}
3879.crm-container .select2-results td.crm-select2-icon .crm-icon {
3880 width: 16px;
3881 height: 16px;
3882 margin: 0;
3883}
4a7803a1
CW
3884.crm-container .select2-results {
3885 padding: 0;
3886}
3887.crm-container .select2-results li.select2-no-results {
3888 padding-left: 4px;
3889 padding-top: 4px;
3890 margin-left: 4px;
3891}
3892.crm-container .select2-results li {
3893 margin: 0;
3894 padding: 0;
3895}
955b23bd 3896
6a488035
TO
3897/* Special styling for specific form buttons */
3898#crm-container span.crm-button_qf_Main_upload input,
3899#crm-container span.crm-button_qf_Confirm_next input,
3900#crm-container span.crm-button_qf_Register_upload input {
3901 font-size: 1.2em;
3902}
3903
3904/*Import progress bar */
3905.crm-container .ui-progressbar-value {
3906 background-image: url("../packages/jquery/css/images/pbar-ani.gif");
3907}
3908
3909/*Needed for jstree contextmenu */
3910#vakata-contextmenu.jstree-default-context li {
3911 background: none repeat scroll 0 0 transparent;
3912}
3913
3914/* Class for successful upgrade */
3915.crm-container .upgrade-success {
3916 background-color: #00CC00;
3917 color: white;
3918}
3919
3920.crm-container .extension-upgradable {
3921 background-color: #FFFFCC !important;
3922}
3923
3924.crm-container .extension-installed {
3925 background-color: #DDFFDD !important;
3926}
3927
3928.crm-container .extension-missing {
3929 color: #E43D2B !important;
3930}
3931
3932/* table row highlightng */
32155ad6 3933.crm-container table.row-highlight tr:hover {
6a488035
TO
3934 background-color: #FFFFCC !important;
3935}
3936#crm-container .civicrm-drupal-wysiwyg .collapsed {
3937 background: transparent;
3938 padding-left: 0px;
3939}
3940
3941#manageTags {
3942 position: static;
3943 z-index: -100;
3944}
3945
3946#crm-container .crm-socialnetwork {
3947 margin-top: 1em;
3948}
3949
3950#crm-container .crm-fb-tweet-buttons {
3951 width: 93%;
3952}
3953#crm-container div.finalconf-button {
3954 float: right;
3955 padding: 5px 0 0 0;
3956}
3957#crm-container div.finalconf-button input {
3958 margin: 0;
3959}
3960#crm-container div.finalconf-intro {
3961 padding-bottom: 12px;
3962 font-style: italic;
3963}
3964#crm-container h4.finalconf-item {
3965 border-top: 1px solid #ccc;
3966 padding: 8px 0 8px 10px;
3967 margin: 0;
3968}
3969#crm-container div.finalconf-itemdesc {
3970 font-style: italic;
3971 padding: 6px 12px 6px 12px;
3972 color: #666;
3973 float: right;
3974 width: 60%;
3975}
3976#crm-container h4.finalconf-btm {
3977 border-bottom: 1px solid #ccc;
3978 margin-bottom: 20px;
3979}
3980
3981/* classes related to batch entry operation */
e6acae69 3982.crm-container span.batch-edit {
6a488035
TO
3983 padding: 2px 9px 2px 3px;
3984 margin: 2px 2px 3px 2px;
3985 cursor: pointer;
3986 cursor: hand;
3987 background-position: -66px -114px;
dbe0bbc6 3988 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
6a488035
TO
3989}
3990
e6acae69 3991.crm-container span.batch-valid {
6a488035
TO
3992 padding: 2px 9px 2px 3px;
3993 margin: 2px 2px 3px 2px;
3994 cursor: pointer;
3995 cursor: hand;
3996 background-position: -322px -143px;
dbe0bbc6 3997 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
6a488035
TO
3998}
3999
e6acae69 4000.crm-container span.batch-invalid {
6a488035
TO
4001 padding: 2px 9px 2px 3px;
4002 margin: 2px 2px 3px 2px;
4003 cursor: pointer;
4004 cursor: hand;
4005 background-position: -258px -143px;
dbe0bbc6 4006 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
6a488035
TO
4007}
4008
e6acae69 4009.crm-container #Entry ul#errorList {
6a488035
TO
4010 display: none;
4011}
4012
e6acae69 4013.crm-container table.batch-totals {
6a488035
TO
4014 border: 1px solid #7A7A60 !important;
4015 margin-top: 10px !important;
4016}
4017
4018/* grid div as table */
e6acae69 4019.crm-container .crm-grid-table {
6a488035
TO
4020 display: table;
4021 border-collapse: collapse;
4022 border: 1px solid #7A7A60;
4023 background-color: #FFFFFF;
4024 margin: 10px 3px 10px !important;
4025}
4026
e6acae69 4027.crm-container .crm-batch-entry-table {
6a488035
TO
4028 border-right: 2px solid #7A7A60 !important;
4029}
4030
e6acae69
CW
4031.crm-container .crm-grid-row,
4032.crm-container .crm-grid-header {
6a488035
TO
4033 display: table-row;
4034}
4035
e6acae69 4036.crm-container .crm-grid-header {
6a488035
TO
4037 white-space: nowrap;
4038}
4039
e6acae69 4040.crm-container .crm-grid-cell {
6a488035
TO
4041 display: table-cell;
4042 border-right: 1px solid #EFEFEF;
4043 padding: 2px;
4044 vertical-align: top;
4045}
4046
4047/* Responsive layout changes */
4048
4049#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed,
4050#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed tbody,
4051#crm-container .contact_basic_information-section.narrowform.xnarrowform table.form-layout-compressed tr {
4052 display: block;
4053 width: 100%;
4054}
4055
4056#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed tr {
4057 display: inline-block;
4058 width: 49%;
4059 vertical-align: top;
4060}
4061
4062#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed td {
4063 display: block;
4064 clear: left;
4065 vertical-align: top;
4066 margin-bottom: .5ex;
4067}
4068
4069#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed td.hashelpicon {
4070 position: relative;
4071}
4072
4073#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed td.hashelpicon label {
4074 padding-bottom: 16px;
4075}
4076
4077#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed td .helpicon {
4078 position: absolute;
4079 bottom: -12px;
4080 left: 2px;
4081}
4082
4083#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed td br {
4084 display: none;
4085}
4086
4087#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed td label {
4088 display: block;
4089 box-sizing: border-box;
4090 -moz-box-sizing: border-box;
4091 width: 25%;
4092 float: left;
4093 padding-right: 1%;
4094}
4095
4096#crm-container .contact_basic_information-section.narrowform table.form-layout-compressed td input {
4097 box-sizing: border-box;
4098 -moz-box-sizing: border-box;
4099 width: 75%;
4100}
4101
4102#crm-container #mainTabContainer.narrowpage #contact-summary div.customFieldGroup,
4103#crm-container #mainTabContainer.narrowpage #contact-summary div.contactCardLeft,
4104#crm-container #mainTabContainer.narrowpage #contact-summary div.contactCardRight {
4105 box-sizing: border-box;
4106 -moz-box-sizing: border-box;
4107 float: none;
4108 width: 100%;
4109}
4110
4111/* in place edit */
7d644ac8 4112.crm-container .crm-editable-enabled {
b315947c 4113 white-space: nowrap;
7d644ac8
CW
4114 padding-left: 2px;
4115 border: 2px dashed transparent;
4116}
4117.crm-container .crm-editable-textarea-enabled {
6a488035
TO
4118 padding-left: 2px;
4119 border: 2px dashed transparent;
4120}
4121
7d644ac8
CW
4122.crm-container .crm-editable-enabled:hover,
4123.crm-container .crm-editable-textarea-enabled:hover {
6a488035 4124 border: 2px dashed lightgrey;
b315947c 4125 cursor: pointer;
6a488035
TO
4126}
4127
7d644ac8
CW
4128.crm-container span.crm-editable-textarea-enabled {
4129 display: inline-block !important;
4130 width: 96%;
4131}
4132.crm-container span.crm-editable-enabled {
4133 display: inline-block !important;
4134}
4135
6a488035
TO
4136.crm-container .crm-editable-placeholder {
4137 background: url("../i/icons/jquery-ui-2786C2.png") -66px -114px no-repeat;
4138 text-indent: -10000px;
4139 display: block;
4140 width: 12px;
4141}
4142
4143.crm-container .crm-editable-saving {
4144 background: #FFFFCC!important;
4145 opacity: 0.8;
4146}
4147
4148.crm-container .crm-editable-error,
4149.crm-container .crm-editable-error input {
4150 background: red!important;
4151 opacity: 0.8;
4152}
4153
4154.crm-container h2.crm-editable-enabled input {
4155 min-height: 1.4em;
4156}
7d644ac8
CW
4157.crm-container .crm-editable-textarea-enabled textarea {
4158 min-height: 5em;
b315947c
CW
4159}
4160
6a488035
TO
4161/*crm-10345*/
4162.crm-container .field-action {
4163 word-wrap: normal;
4164}
4165
4166.crm-container .field-action span.btn-slide {
4167 padding-left: 0px;
4168 padding-right: 11px;
4169}
4170/*end crm-10345*/
4171
4172/* alter display of parent and child groups in Manage Groups selector */
4173#crm-container .crm-group-parent td.crm-group-name {
4174 padding-left: 20px;
4175 text-indent: -20px;
4176}
4177
4178#crm-container .crm-group-child td.crm-group-name.level_2 {
4179 padding-left: 40px;
4180 text-indent: -20px;
4181}
4182#crm-container .crm-group-child td.crm-group-name.level_3 {
4183 padding-left: 60px;
4184 text-indent: -20px;
4185}
7d644ac8
CW
4186#crm-container .crm-group-name span.crm-editable-enabled {
4187 text-indent: 0;
4188}
6a488035
TO
4189
4190#crm-container div.crm-row-parent-name {
4191 padding: 3px 0px 0px .5em;
4192 opacity: 0.75;
4193}
4194#crm-container td span.show-children,
4195#crm-container td span.crm-no-children {
4196 padding-left: 20px;
4197}
4198
4199#crm-container span.collapsed,
4200#crm-container a.collapsed {
4201 background: url("../i/TreePlus.gif") no-repeat 0 0;
4202 padding-left: 19px;
4203 cursor: pointer;
4204}
4205
4206#crm-container span.expanded,
4207#crm-container a.expanded {
4208 background: url("../i/TreeMinus.gif") no-repeat 0 0;
4209 padding-left: 19px;
4210 cursor: pointer;
4211}
4212
4213/* Notifications */
8e3272a1 4214#crm-notification-container {
6a488035
TO
4215 width: 350px;
4216 position: fixed;
4217 top: 45px;
4218 right: 15px;
4219 z-index: 999999;
4220}
80ccdf8c 4221#crm-notification-container div.ui-notify-message {
6a488035
TO
4222 padding: 10px;
4223 margin-bottom: 15px;
4224 color: #fff;
4225 -moz-border-radius: 8px;
4226 -webkit-border-radius: 8px;
4227 border-radius: 8px;
4228 max-height: 600px;
4229 overflow: auto;
4230}
80ccdf8c 4231#crm-notification-container div.ui-notify-message h1 {
6a488035
TO
4232 font-size: 14px;
4233 margin: 0;
4234 padding: 4px;
4235 font-weight: bold;
4236 color: #fff;
4237}
80ccdf8c 4238#crm-notification-container div.ui-notify-message p {
6a488035
TO
4239 margin: 3px 0;
4240 padding: 0;
4241 line-height: 18px;
4242}
80ccdf8c 4243#crm-notification-container div.ui-notify-message:last-child {
6a488035
TO
4244 margin-bottom: 0;
4245}
80ccdf8c 4246#crm-notification-container div.ui-notify-message-style {
6a488035 4247 background: rgba(0,0,0,0.8);
6a488035
TO
4248 box-shadow: 0 0 6px #000;
4249}
4250.crm-container div.ui-notify-message-style a,
4251.crm-container div.ui-notify-message-style a:link {
4252 color: #CCD0FF;
4253 text-decoration: underline;
4254}
4255.crm-container div.ui-notify-message-style a:hover,
4256.crm-container div.ui-notify-message-style a:focus {
4257 color: #B2B8FF;
4258}
80ccdf8c 4259#crm-notification-container .ui-notify-message .ui-notify-close {
6a488035
TO
4260 cursor: pointer;
4261}
80ccdf8c 4262#crm-notification-container .ui-notify-message a.ui-notify-cross {
6a488035
TO
4263 margin-top: -4px;
4264 float: right;
4265 text-decoration: none;
9435db16 4266 font-size: 13px;
6a488035
TO
4267 font-weight: bold;
4268 text-shadow: 0 1px 1px #fff;
4269 padding: 2px;
4270 color: #FDFDFD;
4271}
80ccdf8c
CW
4272#crm-notification-container .ui-notify-message .ui-notify-cross:hover,
4273#crm-notification-container .ui-notify-message .ui-notify-cross:focus {
6a488035
TO
4274 color: #ffffab;
4275}
8e3272a1
CW
4276.crm-container div.ui-notify-message table,
4277.crm-container div.ui-notify-message tbody,
4278.crm-container div.ui-notify-message tr {
6a488035
TO
4279 border: 0 none;
4280 font-size: 11px;
4281}
8e3272a1 4282.crm-container div.ui-notify-message td {
6a488035
TO
4283 background: rgba(255,255,255,0.1);
4284 border: 1px solid #111;
4285 font-size: 11px;
4286}
8e3272a1 4287.crm-container div.ui-notify-message th {
6a488035
TO
4288 background: rgba(200,200,200,0.2);
4289 border: 1px solid #111;
4290 color: #eee;
4291 font-size: 11px;
4292}
8e3272a1
CW
4293.crm-container div.ui-notify-message ul,
4294.crm-container div.ui-notify-message ol {
6a488035
TO
4295 margin: 0.5em 0 1em;
4296 padding: 0 0 0 0.5em;
4297}
4498c471
CW
4298
4299.crm-container div.ui-notify-message div.icon,
4300.crm-status-icon {
6a488035
TO
4301 background: transparent url("../i/message-icons.png") no-repeat 0 0;
4302 width: 24px;
4303 height: 24px;
4304 margin-right: 6px;
4305}
4498c471
CW
4306.crm-container div.ui-notify-message.success div.icon,
4307.crm-status-icon.success {
6a488035
TO
4308 background-position: -24px 0px;
4309}
4498c471
CW
4310.crm-container div.ui-notify-message.info div.icon,
4311.crm-status-icon.info {
6a488035
TO
4312 background-position: -48px 0px;
4313}
4498c471
CW
4314.crm-container div.ui-notify-message.error div.icon,
4315.crm-status-icon.error {
6a488035
TO
4316 background-position: -72px 0px;
4317}
4318
4498c471
CW
4319span.crm-status-icon {
4320 display: inline-block;
4321}
4322
6a488035
TO
4323/* Public Pages */
4324
4325#crm-container.crm-public input[type="text"],
f52b4671 4326#crm-container.crm-public input[type="password"],
6a488035
TO
4327#crm-container.crm-public select {
4328 font-size: 15px;
4329 padding: 5px;
4330 border-radius: 2px;
4331 vertical-align: middle;
4332}
4333
4334#crm-container.crm-public .label {
4335 padding-top: 6px;
4336}
4337
a17a96df
DG
4338.crm-public .crm-profile-view .content {
4339 padding-top: 6px;
4340}
4341
71447ba5
DG
4342#crm-container.crm-public .calc-value {
4343 padding-top: 6px;
4344 font-size: 15px;
4345}
4346
6a488035
TO
4347#crm-container.crm-public .crm-section,
4348.crm-section {
4349 margin-bottom: 0;
4350}
4351
4352#crm-container.crm-public #crm-submit-buttons {
4353 margin-top: 30px;
4354}
4355
4356#crm-container.crm-public #crm-submit-buttons input#_qf_Main_upload-bottom {
4357 font-size: 1.5em;
4358 padding: 3px 10px;
4359}
4360
4361#crm-container.crm-public #premiums-listings {
4362 margin-top: 10px;
4363 min-width: 450px;
4364 width: 60%;
4365}
4366
4367#crm-container.crm-public #premiums-listings .premium {
4368 margin: 5px 0;
4369}
4370
4371#crm-container.crm-public #premiums-listings .premium .premium-short {
4372 padding: 10px;
4373 border: 2px solid #ffffff;
4374 background-color: #f0f0f0;
4375 cursor: pointer;
4376}
4377
4378#crm-container.crm-public #premiums-listings .premium .premium-short:hover {
4379 border: 2px solid #b0b0b0;
4380}
4381
4382#crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail {
4383 float: left;
4384 width: 50px;
4385}
4386
4387#crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail img {
4388 width: 50px;
4389}
4390
4391#crm-container.crm-public #premiums-listings .premium .premium-short-content {
4392 text-align: center;
4393 font-size: 20px;
4394 font-weight: bold;
4395 padding: 20px;
4396}
4397
4398#crm-container.crm-public #premiums-listings .premium .premium-full {
4399 display: none;
4400 padding: 5px;
4401 border: 2px solid #cfcfcf;
4402 background-color: #ffffff;
4403}
4404
4405#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image {
4406 float: left;
4407 width: 200px;
4408 padding: 10px;
4409}
4410
4411#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image img {
4412 width: 200px;
4413}
4414
4415#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-title {
4416 text-align: center;
4417 font-size: 1.5em;
4418 font-weight: bold;
4419 padding: 20px;
4420}
4421
4422#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-min {
4423 font-size: .9em;
4424 font-style: italic;
4425}
4426
4427#crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-short {
4428 text-align: center;
4429 font-size: 1.3em;
4430 padding: 10px;
4431}
4432
4433#crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-full {
4434 text-align: center;
4435 font-size: 1.3em;
4436 font-weight: bold;
4437 padding: 10px;
4438}
4439
4440#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-short,
4441#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-image,
4442#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-title,
4443#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-description,
4444#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-options,
4445#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-min {
4446 opacity: 0.5;
4447}
4448#crm-container.crm-public #premiums-listings .premium .premium-full-disabled {
4449 display: none;
4450}
4451#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full-disabled {
4452 display: block;
4453 color: #ff0000;
4454 text-align: center;
4455 font-weight: bold;
4456 margin-bottom: .5em;
4457}
4458
4459#crm-container.crm-public .price-set-row {
4460 font-size: 15px;
4461 margin-bottom: 5px;
4462}
4463
4464#crm-container.crm-public .price-set-row input,
4465#crm-container.crm-public .price-set-row label {
4466 vertical-align: middle;
4467 cursor: pointer;
4468}
4469
4470#crm-container.crm-public .price-set-row .crm-price-amount-amount {
4471 font-weight: bold;
4472 min-width: 2em;
4473 color: #333333;
4474}
4475
4476#crm-container.crm-public .price-set-row .crm-price-amount-label {
4477 color: #444444;
4478}
4479
4480#crm-container.crm-public .price-set-row.highlight label {
4481 color: #000000;
4482 font-weight: bold;
4483}
4484
4485#crm-container.crm-public .price-set-row.highlight .crm-price-amount-label {
4486 color: #222222;
4487}
4488
4489#crm-container .crm-extensions-upgrade {
4490 background: #ffb;
4491 border: 1px solid #000;
4492 text-align: center;
4493}
55a9a4f4 4494
4f7f49d5 4495/* Styles for credit card payment logos */
bef9421f 4496.crm-container .credit_card_type-section .crm-credit_card_type-icons a {
222fa502
ML
4497 display: block;
4498 float: left;
4499 width: 50px;
4500 height: 30px;
4501 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
4502 text-indent: -20000px;
4f7f49d5
CW
4503 margin-right: 10px;
4504 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
4505 border-radius: 3px;
4506 border: 1px solid #FFFFFF;
55a9a4f4
ML
4507}
4508
bef9421f 4509.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-visa {
4f7f49d5 4510 background-position: -50px 0;
55a9a4f4
ML
4511}
4512
bef9421f 4513.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-mastercard {
4f7f49d5 4514 background-position: -100px 0;
55a9a4f4
ML
4515}
4516
bef9421f 4517.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-amex {
4f7f49d5 4518 background-position: -150px 0;
54be855c
ML
4519}
4520
bef9421f 4521.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-discover {
4f7f49d5 4522 background-position: -200px 0;
55a9a4f4
ML
4523}
4524
bef9421f 4525.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-jcb {
4f7f49d5 4526 background-position: -250px 0;
55a9a4f4
ML
4527}
4528
bef9421f 4529.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-unionpay {
4f7f49d5
CW
4530 background-position: -300px 0;
4531}
4532
bef9421f 4533.crm-container .cvv2-icon {
4f7f49d5
CW
4534 display: inline-block;
4535 width: 50px;
4536 height: 30px;
4537 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
54be855c
ML
4538}
4539
222fa502
ML
4540/* Avoid weird border around the images (some themes will add a border around images) */
4541#crm-container .credit_card_type-section .crm-credit_card_type-icons a,
4542#crm-container .credit_card_type-section .crm-credit_card_type-icons a:link,
4543#crm-container .credit_card_type-section .crm-credit_card_type-icons a:hover,
4544#crm-container .credit_card_type-section .crm-credit_card_type-icons a:focus,
4545#crm-container .credit_card_type-section .crm-credit_card_type-icons a:active {
55a9a4f4
ML
4546 color: #fff;
4547}
4548
34f51a07
N
4549.crm-container .paper-icon {
4550 background-position: -101px -222px;background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
6b253248
TO
4551}
4552
ab2089fe 4553.crm-container .survey-completed {
4554 text-decoration: line-through;
4555}