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