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