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