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