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