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