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