Merge pull request #20752 from samuelsov/ReportGroup
[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
2090.crm-container a.helpicon:hover,
2091.crm-container a.helpicon:focus {
2092 opacity: 1;
2093}
2094
3c590042 2095/* Same as fa-question-circle */
7337847b
AH
2096.crm-container a.helpicon:before {
2097 content: "\f059";
2098}
2099
3c590042
CW
2100div.crm-accordion-header a.helpicon {
2101 color: inherit;
2102}
72fb5207
CW
2103div.crm-master-accordion-header a.helpicon {
2104 color: #2786c2;
2105}
3c590042 2106
6a488035
TO
2107/* These .crm-icon classes use item_sprites.png */
2108
2109.crm-container .crm-icon {
2110 background-image: url('../i/item_sprites.png');
2111 margin: 2px 4px 0 0;
2112 text-indent: -10000px;
2113 /* for accessibility reason, put the name of the type/subtype in the icon div (it will be hidden and replaced by the icon) */
2114}
2115
4a7803a1 2116.select2-results .select2-highlighted .Individual-icon,
6a488035 2117.crm-container .Individual-icon {
b5efa2c8 2118 background-position: 0 0;
6a488035 2119}
4a7803a1
CW
2120.select2-results .select2-highlighted .Organization-icon,
2121.crm-container .Organization-icon {
b5efa2c8 2122 background-position: -48px 0;
6a488035 2123}
4a7803a1 2124.select2-results .select2-highlighted .Household-icon,
6a488035 2125.crm-container .Household-icon {
b5efa2c8 2126 background-position: -32px 0;
6a488035 2127}
4a7803a1 2128.crm-container .Group-icon {
b5efa2c8 2129 background-position: -16px 0;
4a7803a1
CW
2130}
2131.select2-results .Individual-icon,
6a488035 2132.crm-container .Individual-subtype-icon {
b5efa2c8 2133 background-position: 0 -48px;
6a488035 2134}
4a7803a1 2135.select2-results .Household-icon,
6a488035
TO
2136.crm-container .Household-subtype-icon {
2137 background-position: -32px -48px;
2138}
4a7803a1 2139.select2-results .Organization-icon,
6a488035
TO
2140.crm-container .Organization-subtype-icon {
2141 background-position: -48px -48px;
2142}
2143
6a488035 2144.crm-container .Activity-icon {
b5efa2c8 2145 background-position: -64px 0;
6a488035
TO
2146}
2147.crm-container .Case-icon {
b5efa2c8 2148 background-position: -80px 0;
6a488035
TO
2149}
2150.crm-container .Grant-icon {
b5efa2c8 2151 background-position: 0 -16px;
6a488035
TO
2152}
2153.crm-container .Contribution-icon {
2154 background-position: -16px -16px;
2155}
2156.crm-container .Pledge-icon {
2157 background-position: -16px -16px;
2158}
2159.crm-container .Membership-icon {
2160 background-position: -32px -16px;
2161}
2162.crm-container .Participant-icon {
b5efa2c8 2163 background-position: 0 -32px;
6a488035
TO
2164}
2165.crm-container .Note-icon {
2166 background-position: -16px -32px;
2167}
2168.crm-container .Relationship-icon {
2169 background-position: -32px -32px;
2170}
2171
2172/* accordion styles */
2173
e9f4c0da
AH
2174.crm-container .crm-accordion-header,
2175.crm-container .crm-collapsible .collapsible-title,
2176.crm-container span.collapsed,
2177.crm-container a.collapsed,
2178.crm-container .crm-expand-row {
6a488035 2179 cursor: pointer;
e9f4c0da
AH
2180}
2181
2182.crm-container .crm-accordion-wrapper {
2183 margin-bottom: 4px;
2184}
2185
2186/* Specific types of headers */
2187
2188#crm-container .widget-content .crm-accordion-header {
2189 background-color: #EFEFE5;
2190 color: #080808;
2191}
2192
2193.crm-container a.crm-expand-row:before,
2194.crm-container a.crm-expand-row:link::before,
2195.crm-container a.crm-expand-row:visited::before {
2196 color: #3E3E3E;
2197}
2198
2199.crm-container .crm-accordion-header {
6a488035
TO
2200 color: #F5F6F1;
2201 font-weight: normal;
e9f4c0da 2202 padding: 4px 8px;
6a488035 2203 background-color: #5D677B;
e9f4c0da 2204 border-radius: 4px 4px 0 0;
6a488035
TO
2205}
2206
e9f4c0da
AH
2207.crm-container .collapsed .crm-accordion-header {
2208 border-radius: 4px;
6a488035
TO
2209}
2210
e9f4c0da
AH
2211.crm-container .crm-accordion-header.active {
2212 font-weight: bold;
2213 background-color: #3E3E3E;
6a488035
TO
2214}
2215
e9f4c0da
AH
2216.crm-container .crm-accordion-header:hover {
2217 background-color: #2F2F2E;
6a488035
TO
2218}
2219
e9f4c0da
AH
2220#crm-container .widget-content .crm-accordion-header:hover {
2221 background-color: #e8e8de;
3154780c
CW
2222}
2223
e9f4c0da 2224.crm-container .crm-accordion-wrapper .crm-master-accordion-header {
6a488035
TO
2225 background-color: transparent;
2226 color: #3E3E3E;
2227}
2228
201ddbaf 2229.crm-container .crm-accordion-wrapper .crm-master-accordion-header {
6a488035 2230 font-size: 16px;
6a488035
TO
2231}
2232
e9f4c0da
AH
2233.crm-container .crm-master-accordion-header.crm-accordion-header:hover,
2234.crm-container .crm-collapsible .collapsible-title:hover {
2235 color: #121A2D;
6a488035
TO
2236}
2237
e9f4c0da
AH
2238.crm-container .collapsed .crm-accordion-body,
2239.crm-container .crm-collapsible.collapsed .collapsible-title + * {
2240 display: none;
6a488035
TO
2241}
2242
e9f4c0da
AH
2243/* Collapse icon */
2244
2245/* General icon settings for all collapsible things */
2246.crm-container .crm-accordion-header:before,
2247.crm-container .crm-collapsible .collapsible-title:before,
2248.crm-container span.collapsed:before,
2249.crm-container a.collapsed:before,
2250.crm-container .crm-expand-row:before {
2251 font-family: "FontAwesome";
2252 display: inline-block;
2253 width: 1em;
2254 content: "\f0da";
2255 font-size: 13px;
6a488035
TO
2256}
2257
e9f4c0da
AH
2258/* Collapsed icon */
2259.crm-container .collapsed .crm-accordion-header:before,
2260.crm-container .crm-collapsible.collapsed .collapsible-title:before,
2261.crm-container span.collapsed:before,
2262.crm-container a.collapsed:before,
2263.crm-container .crm-expand-row:before {
2264 content: "\f0da";
6a488035
TO
2265}
2266
e9f4c0da
AH
2267/* Expanded icon */
2268.crm-container .crm-accordion-header:before,
2269.crm-container .crm-collapsible .collapsible-title:before,
2270.crm-container span.expanded:before,
2271.crm-container a.expanded:before,
2272.crm-container .crm-expand-row.expanded:before {
f2403471 2273 font-family: "FontAwesome";
e9f4c0da 2274 content: "\f0d7";
6a488035
TO
2275}
2276
e9f4c0da
AH
2277/* Accordion bodies */
2278
201ddbaf 2279.crm-container .crm-accordion-body {
b5efa2c8 2280 border-radius: 0 0 4px 4px;
6a488035 2281 border: 1px solid #70716B;
b5efa2c8
CW
2282 border-top: 0;
2283 padding: 4px 0;
6a488035
TO
2284}
2285
e9f4c0da
AH
2286#crm-container .widget-content .crm-accordion-body {
2287 border-color: #e8e8de;
6a488035
TO
2288}
2289
201ddbaf 2290.crm-container .crm-master-accordion-header+.crm-accordion-body {
6a488035 2291 border: none;
b5efa2c8 2292 padding: 0;
6a488035
TO
2293}
2294
e9f4c0da
AH
2295#crm-container .widget-content .crm-accordion-body,
2296.crm-container .crm-accordion-body.padded {
2297 padding-left: .5em;
2298 padding-right: .5em;
6a488035
TO
2299}
2300
18face18
CW
2301.crm-container .crm-child-row > td {
2302 padding-left: 1.8em;
d5289e53 2303}
6a488035 2304
1b2475e1
CW
2305/* Status message box */
2306.crm-status-box-outer {
2307 position: fixed;
ac30fed8 2308 z-index: 99999;
1b2475e1 2309 right: 0;
8960d9b9 2310 top: 0;
8960d9b9
CW
2311}
2312
1b2475e1 2313.crm-status-box-outer.status-start {
0f383b36 2314 background: #F8FF03 url("../i/animated-overlay.gif");
1b2475e1
CW
2315}
2316
2317.crm-status-box-outer .crm-status-box-inner {
8960d9b9 2318 padding: 3px 14px;
1b2475e1
CW
2319 font-size: 13px !important;
2320 color: #eee;
8960d9b9 2321 font-weight: bold;
8960d9b9 2322 text-align: center;
1b2475e1 2323 background: rgba(94, 91, 31, 0.9);
8960d9b9
CW
2324}
2325
1b2475e1
CW
2326.crm-status-box-outer.status-success .crm-status-box-inner {
2327 background: rgba(30, 143, 36, 0.7);
8960d9b9
CW
2328}
2329
1b2475e1
CW
2330.crm-status-box-outer.status-error .crm-status-box-inner {
2331 background: rgba(255, 7, 0, 0.7);
6a488035
TO
2332}
2333
6a488035
TO
2334.crm-container .crm-summary-link {
2335 position: relative;
2336 z-index: 16;
2337}
2338
2339.crm-container .crm-tooltip-wrapper {
2340 position: absolute;
b5efa2c8 2341 bottom: 0;
6a488035
TO
2342 left: -36px;
2343 overflow: hidden;
2344 z-index: 1000;
2345 padding-bottom: 10px;
2346 background: transparent url('../i/overlay-pointer.png') no-repeat bottom left;
9435db16 2347 font-size: 13px;
6a488035
TO
2348 display: none;
2349}
2350
2351.crm-container .crm-tooltip-down .crm-tooltip-wrapper {
2352 top: 20px;
2353 padding-top: 10px;
2354 background: transparent url('../i/overlay-pointer.png') no-repeat top left;
2355 overflow: visible;
2356}
2357
2358.crm-container .crm-tooltip-active {
2359 z-index: 20;
2360}
2361
2362.crm-container .crm-tooltip-active .crm-tooltip-wrapper {
2363 display: block;
2364}
2365
2366.crm-container .crm-tooltip {
2367 padding: 4px;
2368 background-color: #2f2f2e;
2369 color: #FFF;
2370 margin-left: 11px;
2371 min-width: 20px;
2372 min-height: 20px;
2373}
2374#crm-container .crm-tooltip table,
2375#crm-container .crm-tooltip table tr td {
81f8f858 2376 background-color: #2f2f2e;
6a488035 2377 border: none;
7944a554 2378 color: #FFF;
81f8f858 2379 word-wrap: break-word;
6a488035
TO
2380}
2381.crm-container .crm-tooltip .crm-summary-group {
2382 width: 700px;
b5efa2c8 2383 margin-bottom: 0;
6a488035
TO
2384}
2385
2386.crm-container .crm-tooltip .crm-report-overlay {
2387 width: 500px;
b5efa2c8 2388 margin-bottom: 0;
6a488035
TO
2389}
2390
2391.crm-container .crm-tooltip .crm-report-overlay thead td {
2392 font-weight: bold;
2393}
2394
2395.crm-container .crm-summary-group h2 {
2396 padding: 2px 4px 0 4px;
2397 font-size: 14px;
2398 color: #FFF;
b5efa2c8 2399 margin-bottom: 0;
6a488035
TO
2400}
2401
2402/* crm-summary-group appears outside crm-container for contact summary icon overlay */
6a488035
TO
2403.crm-container .crm-summary-group .crm-section .label {
2404 text-align: left;
2405 width: 40%;
2406 font-size: 11px;
2407 color: #A7A7A7;
b62c416f 2408 background-color: transparent;
6a488035
TO
2409}
2410
6a488035
TO
2411.crm-container .crm-summary-group .crm-section .content {
2412 margin-left: 41%;
2413}
2414
81f8f858
N
2415.crm-container .crm-tooltip table .crm-summary-col-1 {
2416 width: 350px;
2417}
2418
81f8f858
N
2419.crm-container .crm-tooltip table .crm-summary-col-1 div {
2420 width: auto;
2421}
2422
6a488035
TO
2423/* Class for tokens and helpicon */
2424.crm-container .helpIcon {
2425 float: right;
2426 position: relative;
2427 z-index: 1;
2428 margin-right: 45px;
2429}
2430
6a488035
TO
2431#crm-container ul li {
2432 list-style-image: none;
2433}
2434
2435/* privacy icons */
2436#crm-container div span.privacy-flag {
6a488035 2437 float: right;
060b6f10 2438 font-size: 80%;
6a488035
TO
2439}
2440
2441/* specific, targeted fixes */
2442#crm-container .dashboard-elements,
2443#crm-container #membership-listings,
2444#crm-container #premiums-listings,
2445#crm-container #searchForm table {
b5efa2c8 2446 margin: 0;
6a488035 2447 border-collapse: collapse;
b5efa2c8 2448 border: 0 none;
6a488035
TO
2449}
2450
a496e73c
CW
2451/* ID selector is needed to override Drupal 2em margin-bottom on forms (we don't want to give up that space) */
2452div#crm-container form,
12fbb7b3 2453div.crm-container form {
b5efa2c8 2454 margin-bottom: 0;
6a488035
TO
2455}
2456
eb71347f
CW
2457/** DATATABLES **/
2458/*
2459 * jQuery UI specific styling
2460 */
2461
2462.crm-container .paging_two_button .ui-button {
2463 float: left;
2464 cursor: pointer;
eb71347f
CW
2465}
2466
2467.crm-container .paging_full_numbers .ui-button {
2468 padding: 2px 6px;
2469 margin: 0;
2470 cursor: pointer;
eb71347f
CW
2471}
2472
2473.crm-container .dataTables_paginate .ui-button {
2474 margin-right: -0.1em !important;
2475}
2476
2477.crm-container .paging_full_numbers {
2478 width: 350px !important;
2479}
2480
2481.crm-container .dataTables_wrapper .ui-toolbar {
2482 padding: 5px;
2483}
2484
2485.crm-container .dataTables_paginate {
2486 width: auto;
2487}
2488
2489.crm-container .dataTables_info {
2490 padding-top: 3px;
2491}
2492
eb71347f
CW
2493.crm-container div.dataTables_wrapper .ui-widget-header {
2494 font-weight: normal;
2495}
2496
2497
2498/*
2499 * Sort arrow icon positioning
2500 */
2501.crm-container table.display thead th div.DataTables_sort_wrapper {
2502 position: relative;
2503 padding-right: 20px;
2504}
2505
2506.crm-container table.display thead th div.DataTables_sort_wrapper span {
2507 position: absolute;
2508 top: 50%;
2509 margin-top: -8px;
2510 right: 0;
2511}
2512
2513/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2514 * DataTables features
2515 */
2516
2517.crm-container .dataTables_wrapper {
2518 position: relative;
2519 clear: both;
2520 zoom: 1; /* Feeling sorry for IE */
2521}
2522
2523.crm-container .dataTables_processing {
2524 position: absolute;
88c36fbc
CW
2525 top: 0;
2526 left: 0;
2527 width: 100%;
2528 height: 100%;
2529 margin: 0;
2530 padding: 0;
2531 background: url("../i/loading-overlay.gif") center center no-repeat white;
2532 opacity: 0.6;
2533 cursor: wait;
eb71347f
CW
2534}
2535
2536.crm-container .dataTables_length {
2537 width: 40%;
6a488035
TO
2538 float: none;
2539 padding-bottom: 5px;
2540}
eb71347f
CW
2541
2542.crm-container .dataTables_filter {
2543 width: 50%;
2544 float: right;
2545 text-align: right;
2546}
2547
2548.crm-container .dataTables_info {
2549 width: 60%;
2550 float: left;
2551}
2552
2553.crm-container .dataTables_paginate {
2554 float: right;
2555 text-align: right;
2556}
2557
2558
2559/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2560 * DataTables display
2561 */
2562.crm-container table.display {
2563 margin: 0 auto;
2564 clear: both;
2565 width: 100%;
2566}
2567
2568.crm-container table.display thead th {
2569 padding: 3px 18px 3px 10px;
2570 border-bottom: 1px solid black;
2571 font-weight: bold;
2572 cursor: pointer;
93dee6ee
CW
2573}
2574
2575.crm-container table.display thead th.sorting_disabled {
2576 cursor: default;
eb71347f
CW
2577}
2578
2579.crm-container table.display tfoot th {
2580 padding: 3px 18px 3px 10px;
2581 border-top: 1px solid black;
2582 font-weight: bold;
2583}
2584
2585.crm-container table.display tr.heading2 td {
2586 border-bottom: 1px solid #aaa;
2587}
2588
2589.crm-container table.display td {
2590 padding: 3px 10px;
2591}
2592
22b67281 2593.crm-container table td.center {
eb71347f
CW
2594 text-align: center;
2595}
06201b2a
CW
2596/* Fix weird color added to some datatables' sort column */
2597.crm-container table.dataTable.display tbody tr > td.sorting_1 {
2598 background-color: transparent;
2599}
eb71347f
CW
2600
2601/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
90e9e4d5 2602 * Datatables misc
eb71347f
CW
2603 */
2604.crm-container .dataTables_scroll {
2605 clear: both;
2606}
2607
2608.crm-container .dataTables_scrollBody {
2609 *margin-top: -1px;
2610 -webkit-overflow-scrolling: touch;
2611}
2612
eb71347f
CW
2613.crm-container .top .dataTables_info {
2614 float: none;
2615}
2616
2617.crm-container .dataTables_empty {
2618 text-align: center;
2619}
2620
2621.crm-container tfoot input {
2622 margin: 0.5em 0;
2623 width: 100%;
2624 color: #444;
2625}
2626
eb71347f
CW
2627/* DataTables fixes */
2628.crm-container .crm-datatable-pager-top {
6a488035
TO
2629 padding-top: 5px;
2630 padding-bottom: 25px;
2631}
eb71347f 2632.crm-container .crm-datatable-pager-bottom {
6a488035
TO
2633 padding-top: 10px;
2634 padding-bottom: 25px;
2635}
eb71347f 2636.crm-container .crm-datatable-pager-top .dataTables_length {
6a488035
TO
2637 float: left;
2638}
eb71347f 2639.crm-container .css_right {
6a488035
TO
2640 float: right;
2641}
2642
2643/* Date plugin */
9bce560a
CW
2644.crm-container input.dateplugin,
2645.crm-container input.crm-form-date {
6a488035
TO
2646 width: 9em;
2647}
2648
351719bf
CW
2649.crm-container input.crm-placeholder-icon::placeholder {
2650 font-family: "FontAwesome";
2651 text-align: right;
2652}
2653.crm-container input.crm-placeholder-icon::-ms-input-placeholder {
2654 font-family: "FontAwesome";
2655 text-align: right;
2656}
2657.crm-container input.crm-placeholder-icon:-ms-input-placeholder {
5bbf3aca
AH
2658 font-family: "FontAwesome";
2659 text-align: right;
2660}
2661
9435db16 2662.crm-container div.batch-update {
124139c4 2663 overflow: visible;
2664}
2665
6a488035
TO
2666/*chart */
2667#chartData {
2668 overflow: auto;
2669}
2670
2671#crm-container .signature {
2672 width: 495px;
2673}
2674
2675/* editor skin tweaks */
2676
2677#crm-container span.cke_skin_kama {
2678 border: none;
2679}
2680#crm-container .cke_skin_kama .cke_wrapper {
2681 background-image: none;
2682}
2683
2684/* skin */
2685
2686#crm-container .crm-title {
d7a13f25 2687 line-height: 1.1;
6a488035
TO
2688 margin-bottom: 8px;
2689}
2690
2691/* tables */
2692.crm-container table {
2693 border: 1px solid #efefef;
2694}
2695
2696.crm-container .crm-form-block table {
2697 border: none;
2698}
2699.crm-container tr.even,
2700.crm-container tr.odd,
2701.crm-container tbody th {
2702 border-color: #FFF #FFF #efefef #FFF;
2703}
2704
2705.crm-container tr.even-row td,
2706.crm-container tr.odd-row td,
2707.crm-container table.display td,
2708.crm-container table.pagerDisplay td {
2709 border-color: #efefef;
2710 border-right: 1px solid #efefef;
9abd73eb 2711 border-collapse: collapse;
6a488035
TO
2712}
2713.crm-container .odd-row,
2714.crm-container .odd,
2715tbody.scrollContent {
2716 background-color: #FAFAFA;
2717}
2718.crm-container .even-row,
2719.crm-container .even,
2720tbody.scrollContent tr.alternateRow {
2721 background-color: #EFEFEF;
2722}
2723
2724.crm-container td.checkbox {
2725 vertical-align: middle;
2726 text-align: center;
2727}
2728.crm-container tr.columnheader a.sorting {
2729 color: #a7a7a7;
2730}
2731
efa9bb7d
CW
2732.crm-container a.sorting,
2733.crm-container a.sorting_desc,
2734.crm-container a.sorting_asc {
6a488035 2735 color: #A7A7A7;
416eba39 2736 background: url("../bower_components/datatables/media/images/sort_both.png") no-repeat left center;
efa9bb7d 2737 padding-left: 20px;
6a488035
TO
2738}
2739.crm-container a.sorting_desc,
2740.crm-container a.sorting_asc {
2741 color: #000;
2742}
2743
2744.crm-container tr a.sorting,
2745.crm-container tr a.sorting_asc,
2746.crm-container tr a.sorting_desc {
2747 color: #52534D;
2748}
2749
efa9bb7d 2750.crm-container table thead a.sorting_asc {
416eba39 2751 background: url("../bower_components/datatables/media/images/sort_asc.png") no-repeat left center;
efa9bb7d
CW
2752}
2753.crm-container table thead a.sorting_desc {
416eba39 2754 background: url("../bower_components/datatables/media/images/sort_desc.png") no-repeat left center;
efa9bb7d
CW
2755}
2756.crm-container table thead a.sorting_asc_disabled {
416eba39 2757 background: url("../bower_components/datatables/media/images/sort_asc_disabled.png") no-repeat left center;
efa9bb7d
CW
2758}
2759.crm-container table thead a.sorting_desc_disabled {
416eba39 2760 background: url("../bower_components/datatables/media/images/sort_desc_disabled.png") no-repeat left center;
efa9bb7d
CW
2761}
2762
2763/* Otherwise for some reason we have 2 sort icons */
2764.crm-container th.sorting .DataTables_sort_icon {
2765 display: none;
2766}
2767
2768
6a488035 2769/*contact summary page */
0e44568b 2770#crm-container div.contact_details {
6a488035
TO
2771 background-color: transparent;
2772}
2773
6a488035
TO
2774.crm-container table.crm-info-panel td {
2775 border-bottom: 1px solid #FFF;
2776}
2777
6a488035
TO
2778.crm-container table.crm-info-panel .label {
2779 color: #2f2f2f;
2780 font-weight: normal;
2781}
2782
2783.crm-container .disabled,
5623bf2a 2784.crm-container .disabled *,
f2b7caed 2785.crm-container .cancelled,
2ea971e7 2786.crm-container .cancelled td,
b1f92f72
CW
2787.crm-container li.disabled a.ui-tabs-anchor,
2788.crm-container li.crm-count-0 a.ui-tabs-anchor,
2789.crm-container li.crm-count-0 a.ui-tabs-anchor em {
6a488035
TO
2790 color: #999999 !important;
2791}
b1f92f72 2792
6a488035
TO
2793#crm-container tr.crm-job {
2794 text-decoration: none !important;
2795}
2796
3ce95baf 2797.crm-container table.selector td {
6a488035
TO
2798 border-right: 1px dotted #DDDDDD;
2799}
6a488035 2800
3ce95baf 2801.crm-container div.contact_panel td,
6a488035
TO
2802.crm-container table.crm-info-panel td {
2803 background-color: #f4f4ed;
2804}
2805
3ce95baf
CW
2806.crm-container div.contact_panel td.label,
2807.crm-container #customFields div.contact_panel td.label,
6a488035
TO
2808.crm-container table.crm-info-panel td.label {
2809 background-color: #fafafa;
2810 width: 120px;
2811 text-align: left;
2812 color: #7a7a60;
2813}
2814.crm-container table.crm-info-panel td.label {
2815 width: 150px;
2816}
2817
3ce95baf
CW
2818.crm-container .form-layout td.label,
2819.crm-container .form-layout-compressed td.label {
6a488035
TO
2820 width: 150px;
2821 text-align: right;
2822 color: #7a7a60;
2823}
2824
3ce95baf
CW
2825.crm-container .form-layout td.label,
2826.crm-container form table.report .label,
2827.crm-container form table label,
2828.crm-container form table.report label {
6a488035
TO
2829 color: #3e3e3e;
2830}
2831
e03e6f28
CW
2832.crm-container a.crm-icon-picker-button {
2833 min-width: 10em;
2834 text-align: inherit;
2835 color: #3e3e3e;
2836}
2837
f42b70be
CW
2838.crm-container a.crm-icon-picker-button .ui-button-icon {
2839 margin: 5px 0 5px 5px;
2840}
2841
e03e6f28
CW
2842.crm-container a.crm-icon-picker-button .ui-button-text {
2843 color: #9f9f9f;
2844}
2845
2846.crm-container a.crm-icon-picker-button.ui-button-text-only .ui-button-text {
2847 padding: .4em .2em;
2848}
2849
6a488035 2850/* search results */
6a488035
TO
2851.crm-container .crm-search-tasks,
2852.crm-container .crm-tasks {
2853 background-color: #F0F0E8;
2854 color: #52534D;
2855}
2856
2857#crm-container .crm-tasks table {
2858 margin: 0;
2859}
2860
2861.crm-container .crm-results-block {
2862 position: relative;
2863}
2864
2865/* warning labels and messages */
2866.crm-container del,
2867.crm-container .crm-is_deleted,
2868.crm-container table.caseSelector td.status-urgent,
2869.crm-container .font-red,
2870.crm-container .status-removed,
2871.crm-container .status-overdue,
2872.crm-container .status-fatal,
2873.crm-container .status-hold,
2874.crm-container .status-past,
da2786f7 2875.crm-contact-deceased,
6a488035
TO
2876.crm-container .status-warning {
2877 color: #E43D2B !important;
2878}
2879
d731c8c6 2880/* rounded corners */
6a488035 2881.crm-container div.status,
6a488035
TO
2882.crm-container #help,
2883.crm-container .help,
2884.crm-container .ui-tabs-panel,
2885.crm-container .crm-content-block,
2886#full-screen-header,
2887.crm-container .crm-pager,
2888.crm-container form .section-hidden-border,
2889.crm-container #search-status,
2890.crm-container .crm-form-block,
2891.crm-container .crm-search-tasks,
2892.crm-container .crm-tasks,
2893.crm-container div.form-item,
2894.crm-container div.messages {
6a488035
TO
2895 border-radius: 4px;
2896}
2897
dbf749ff 2898/* deprecated autocomplete styles */
6a488035
TO
2899
2900.ac_results {
2901 background: transparent url(../i/dropdown-pointer.gif) no-repeat 25px 1px;
2902 padding-top: 5px;
2903 border: none;
2904 text-align: left;
2905}
2906
2907.ac_results-inner,
2908.crm-participant-list-inner,
2909.crm-event-links-list-inner,
2910.crm-contribpage-links-list-inner,
6a488035
TO
2911.crm-contact-actions-list-inner {
2912 background-color: #2f2f2e;
2913 padding: 4px;
2914}
2915
6b5ca1ea 2916.crm-create-new-list-inner, .crm-create-new-list-inner ul {
2917 width: 160px!important;
6a488035
TO
2918}
2919
6a488035
TO
2920.ac_results li a {
2921 display: block;
2922}
2923
6a488035
TO
2924.crm-container .ac_results li,
2925.crm-container .ac_results li a,
2926.crm-container .ac_results li a:visited {
2927 color: #DFDFDF;
2928 text-decoration: none;
2929}
2930
2931.ac_results li strong {
2932 color: #FFF;
2933 font-weight: normal;
2934}
2935
6a488035
TO
2936.crm-container .ac_results li .icon,
2937.crm-container .ac_results li a .icon,
2938.crm-container .ac_results li a:visited .icon {
2939 background-image: url(../i/icons/jquery-ui-FFFFFF.png);
2940}
2941
6a488035
TO
2942.crm-container .ac_results li a:hover .icon {
2943 background-image: url(../i/icons/jquery-ui-3E3E3E.png);
2944}
2945
6a488035
TO
2946.ac_results li:hover,
2947.ac_results li:hover a,
dbf749ff 2948.ac_results li a:hover {
6a488035
TO
2949 background-color: #F5F6F1;
2950 color: #666;
2951}
dbf749ff 2952.crm-container .ac_results li:hover strong {
6a488035
TO
2953 color: #000;
2954}
2955
2956/* loader autocomplete */
2957
dbf749ff 2958.crm-container .ui-autocomplete-loading {
6a488035
TO
2959 background: white url('../i/loading.gif') no-repeat right center;
2960}
2961
955b23bd 2962/* select2 */
38f05e5b
CW
2963.crm-container div.select2-container {
2964 min-width: 6em;
969c7859 2965 font-size: 11px;
ab345ca5 2966}
e3a35c35 2967/* Add arrow icon to multi-selects */
969c7859 2968.crm-container .select2-container-multi .select2-choices:before {
e1ef4e11 2969 background: url("../bower_components/select2/select2.png") no-repeat scroll 0 -4px;
969c7859
CW
2970 content: "";
2971 display: block;
2972 height: 15px;
2973 position: absolute;
2974 right: 0;
2975 top: 5px;
2976 width: 20px;
ab345ca5 2977}
e3a35c35 2978/* Add search icon to ajax multi-selects and opened multi-selects */
969c7859
CW
2979.crm-container .select2-container-multi.select2-container-active .select2-choices:before,
2980.crm-container .select2-container-multi.crm-ajax-select .select2-choices:before {
2981 background-position: right -26px;
2982}
7e426948
CW
2983.crm-container .select2-container.select2-container-disabled .select2-choice .select2-arrow b {
2984 visibility: hidden;
2985}
1d07e7ab
CW
2986.crm-container .select2-container-multi.loading .select2-choices:before,
2987.crm-container .select2-container.loading .select2-choice .select2-arrow b {
7e426948
CW
2988 background: url('../i/loading.gif') no-repeat center center !important;
2989 visibility: visible;
1d07e7ab 2990}
969c7859
CW
2991/* Reduce select2 size to match other inputs */
2992.crm-container .select2-container-multi .select2-choices {
2993 min-height: 25px;
2994}
2995.crm-container .select2-container-multi .select2-choices .select2-search-choice {
2996 padding: 2px 5px 2px 18px;
2997}
2998.crm-container .select2-container-multi .select2-choices .select2-search-field input {
2999 padding: 4px;
13e959c1 3000 min-height: unset; /* Overide style imposed by WordPress 5.3 - see https://lab.civicrm.org/dev/wordpress/issues/46 */
969c7859
CW
3001}
3002.crm-container .select2-search-choice-close {
3003 top: 2px;
955b23bd 3004}
e869b07d
CW
3005.crm-container .select2-container .select2-choice abbr {
3006 top: 6px;
3007}
c7130c3e
CW
3008.crm-container .select2-container .select2-choice > .select2-chosen {
3009 font-size: 1.1em;
3010}
e3a35c35
CW
3011/* Add search icon to ajax single-selects */
3012.crm-container .crm-ajax-select .select2-arrow b {
3013 background-position: -39px -22px;
3014}
3015/* Restore normal icon when searchable field is open */
3016.crm-container .select2-dropdown-open .select2-choice .select2-arrow b {
3017 background-position: -18px 1px;
3018}
b7ceb253
CW
3019.select2-drop .crm-entityref-links {
3020 border-top: 1px solid #d3d3d3;
3021 margin-top: 9px;
3022}
3023.select2-drop .crm-entityref-filters {
3024 margin-top: 4px;
3025}
fd7c068f
CW
3026.select2-drop .crm-entityref-filters select,
3027.select2-drop .crm-entityref-filters input {
b7ceb253
CW
3028 border-radius: 3px;
3029 border: 1px solid #f2f2f2;
3030 background-color: #f6f6f6;
3031 color: #494949;
3032 font-size: 11px;
fd7c068f 3033 max-width: 60%;
b7ceb253
CW
3034}
3035.select2-drop .crm-entityref-filters select:hover,
3036.select2-drop .crm-entityref-filters select:focus,
fd7c068f
CW
3037.select2-drop .crm-entityref-filters select.active,
3038.select2-drop .crm-entityref-filters input {
b7ceb253
CW
3039 border: 1px solid #808080;
3040}
fd7c068f
CW
3041.select2-drop .crm-entityref-filter-value {
3042 margin-left: 1em;
3043}
3044.select2-drop .crm-entityref-filters input {
3045 padding-left: .5em;
3046 background-color: #fefefe;
3047}
3a9e5e69 3048/* Style autocomplete results */
88881f79 3049.crm-container .select2-results {
65b86482 3050 font-size: 12px;
88881f79 3051 padding: 0;
65b86482 3052 text-align: left;
88881f79
CW
3053}
3054.crm-container .select2-results li,
3055.crm-container .select2-results .crm-select2-row,
b733747a 3056.crm-container .select2-results .crm-select2-row-description p {
3a9e5e69
CW
3057 padding: 0;
3058 margin: 0;
3a9e5e69 3059}
88881f79 3060.crm-container .select2-results .crm-select2-row .crm-select2-row-label {
3a9e5e69
CW
3061 font-size: 1.1em;
3062}
b733747a 3063.crm-container .select2-results .crm-select2-row-description p {
3a9e5e69
CW
3064 font-size: 0.8em;
3065 line-height: 1.5em;
3066 color: #696969;
88881f79
CW
3067 width: 100%;
3068 white-space: nowrap;
3069 overflow: hidden;
3070 text-overflow: ellipsis;
b733747a 3071 font-weight: normal;
3a9e5e69 3072}
b733747a 3073.crm-container .select2-results .select2-highlighted > .select2-result-label .crm-select2-row-description p {
3a9e5e69
CW
3074 color: #f0f0f0;
3075}
b733747a
CW
3076.select2-container .crm-select2-row-description {
3077 display: none;
3078}
88881f79 3079.crm-container .select2-results .crm-select2-icon {
54bee7df 3080 width: 20px;
88881f79
CW
3081 height: 100%;
3082 float: left;
54bee7df 3083}
88881f79 3084.crm-container .select2-results .crm-select2-icon .crm-icon {
54bee7df
CW
3085 width: 16px;
3086 height: 16px;
3087 margin: 0;
3088}
4a7803a1
CW
3089.crm-container .select2-results li.select2-no-results {
3090 padding-left: 4px;
3091 padding-top: 4px;
3092 margin-left: 4px;
3093}
3094.crm-container .select2-results li {
3095 margin: 0;
3096 padding: 0;
3097}
ac0a3db5
CW
3098.crm-container .crm-action-menu .select2-default span.select2-chosen {
3099 color: #2786C2;
3100}
8c3a97ed
CW
3101.crm-container .select2-container[class*=" fa-"]:before {
3102 display: none;
3103}
5134fac5
CW
3104.crm-container .select2-results .select2-result.select2-disabled > .select2-result-label {
3105 opacity: .6;
3106 cursor: default;
3107}
8c3a97ed 3108
ea039610
CW
3109/* Restore this property otherwise our css overrides it */
3110.select2-search input {
3111 box-sizing: border-box;
3112}
955b23bd 3113
ca914657
CW
3114/* Collapsible optgroups for select2 */
3115div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children:not(.optgroup-expanded) > .select2-result-sub > li.select2-result {
3116 display: none;
3117}
3118div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children > .select2-result-label:before {
3119 font-family: FontAwesome;
3120 content: "\f0da";
3121 display: inline-block;
3122 padding-right: 3px;
3123 vertical-align: middle;
3124 font-weight: normal;
3125}
3126div.select2-drop.collapsible-optgroups-enabled .select2-result-with-children.optgroup-expanded > .select2-result-label:before {
3127 content: "\f0d7";
3128}
3129
b733747a
CW
3130span.crm-select-item-color {
3131 display: inline-block;
3132 width: .8em;
3133 height: .7em;
3134 border-radius: 2px;
3135 border: 1px solid grey;
3136}
3137
f2b7caed 3138/* jQuery UI styles */
6a488035
TO
3139.crm-container .ui-progressbar-value {
3140 background-image: url("../packages/jquery/css/images/pbar-ani.gif");
3141}
3142
14022148 3143.crm-container.ui-dialog {
f2b7caed
CW
3144 box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
3145}
cd8a9187 3146.crm-container.ui-dialog.ui-resizable:before {
a243158e
CW
3147 display:block;
3148 content: " ";
3149 width: 16px;
3150 height: 16px;
6939fb53 3151 background: url("../i/icons/jquery-ui-52534D.png") no-repeat -80px -224px;
a243158e
CW
3152 position: absolute;
3153 bottom: 0;
3154 right: 0;
3155}
14022148 3156.crm-container .ui-dialog-titlebar.ui-widget-header {
72c0cb91 3157 background: #5D677B;
539984b2 3158 color: #F5F6F1;
f2b7caed 3159}
ebc37d7d 3160.crm-container .ui-dialog-title {
a2e1885c 3161 background: url("../i/item_sprites.png") no-repeat scroll -79px -47px;
ebc37d7d
CW
3162 margin-left: -5px;
3163 padding-left: 25px;
3164}
539984b2
CW
3165.crm-container .ui-dialog-titlebar .ui-button {
3166 background-color: transparent;
3167 background-image: none;
3168 border: 1px none;
3479049c 3169 color: inherit;
539984b2
CW
3170}
3171.crm-container .ui-dialog-titlebar .ui-button:hover {
3172 background-color: #cdcdcd;
3479049c 3173 color: #555;
539984b2 3174}
f2b7caed 3175
d768b780
WA
3176/* unset the styling for the li in jstree */
3177#tagtree ul {
3178 list-style: none;
3179 margin: 0px;
3180 padding: 0px;
3181}
3182
6a488035 3183/* table row highlightng */
66d5b989
J
3184.crm-container .crm-row-ok {
3185 background-color: #EFFFE7;
3186 border-bottom: 1px solid #ccc;
3187}
3188.crm-container .crm-row-error {
3189 background-color: #FFECEC;
3190 border-bottom: 1px solid #ccc;
3191}
25741ebc
CW
3192.crm-container table.row-highlight tr:hover,
3193.crm-container .crm-row-selected {
abc31149 3194 background-color: #FFFFCC;
6a488035 3195}
abc31149
CW
3196.crm-container table.row-highlight tr.even-row:hover,
3197.crm-container table.row-highlight tr.even:hover,
3198.crm-container .even-row.crm-row-selected,
3199.crm-container .even.crm-row-selected {
3200 background-color: #fffdb2;
3201}
3202
6a488035
TO
3203#crm-container .crm-socialnetwork {
3204 margin-top: 1em;
3205}
3206
3207#crm-container .crm-fb-tweet-buttons {
3208 width: 93%;
3209}
6a488035 3210
bfd9c358
CW
3211/* Checkbox gropus */
3212.crm-container ul.crm-checkbox-list {
3213 list-style: none;
3214 margin: 0;
3215 padding: 0;
3216 background-color: white;
3217 border: 1px solid #a5a5a5;
3218 width: 300px;
1314f8e2 3219 max-width: 100%;
bfd9c358
CW
3220 max-height: 300px;
3221 overflow-y: auto;
3222}
3223.crm-container ul.crm-checkbox-list li {
3224 position: relative;
3225 margin: 0;
3226 padding: 0;
3227}
3228.crm-container ul.crm-checkbox-list li input {
3229 position: absolute;
3230 left: 5px;
3231 top: 4px;
3232}
3233.crm-container ul.crm-checkbox-list li label {
3aed3446 3234 display: block !important;
bfd9c358
CW
3235 padding: 2px 0 2px 22px;
3236 margin: 0;
3237 word-break: break-all;
3238}
3239.crm-container ul.crm-checkbox-list li:nth-child(even) label {
3240 background-color: #FAFAFA;
3241}
3242.crm-container ul.crm-checkbox-list li input:checked + label {
3243 background-color: #FFFFCC;
3244}
3245.crm-container ul.crm-checkbox-list li:nth-child(even) input:checked + label {
3246 background-color: #fffdb2
3247}
3248
4e086328
CW
3249.crm-container ul.crm-sortable-list li label {
3250 padding-left: 40px;
3251 cursor: move;
3252}
3253.crm-container ul.crm-sortable-list li label:after {
3254 display: block;
3255 font-family: "FontAwesome";
3256 content: "\f047";
3257 position: absolute;
3258 left: 4px;
3259 top: 2px;
3260 font-size: 10px;
3261 color: grey;
3262}
3263.crm-container ul.crm-sortable-list li:hover label:after {
3264 color: inherit;
3265}
3266.crm-container ul.crm-checkbox-list.crm-sortable-list li input {
3267 left: 23px;
3268}
3269
6a488035 3270/* classes related to batch entry operation */
90e9e4d5
CW
3271.crm-container span.batch-edit,
3272.crm-container span.batch-valid,
3273.crm-container span.batch-invalid {
6a488035
TO
3274 padding: 2px 9px 2px 3px;
3275 margin: 2px 2px 3px 2px;
3276 cursor: pointer;
6a488035 3277 background-position: -66px -114px;
dbe0bbc6 3278 background-image: url("../i/icons/jquery-ui-3E3E3E.gif");
6a488035
TO
3279}
3280
e6acae69 3281.crm-container span.batch-valid {
6a488035 3282 background-position: -322px -143px;
6a488035
TO
3283}
3284
e6acae69 3285.crm-container span.batch-invalid {
6a488035 3286 background-position: -258px -143px;
6a488035
TO
3287}
3288
e6acae69 3289.crm-container #Entry ul#errorList {
6a488035
TO
3290 display: none;
3291}
3292
e6acae69 3293.crm-container table.batch-totals {
6a488035
TO
3294 border: 1px solid #7A7A60 !important;
3295 margin-top: 10px !important;
3296}
3297
3298/* grid div as table */
e6acae69 3299.crm-container .crm-grid-table {
6a488035
TO
3300 display: table;
3301 border-collapse: collapse;
3302 border: 1px solid #7A7A60;
3303 background-color: #FFFFFF;
3304 margin: 10px 3px 10px !important;
3305}
3306
e6acae69 3307.crm-container .crm-batch-entry-table {
6a488035
TO
3308 border-right: 2px solid #7A7A60 !important;
3309}
3310
e6acae69
CW
3311.crm-container .crm-grid-row,
3312.crm-container .crm-grid-header {
6a488035
TO
3313 display: table-row;
3314}
3315
e6acae69 3316.crm-container .crm-grid-header {
6a488035
TO
3317 white-space: nowrap;
3318}
3319
e6acae69 3320.crm-container .crm-grid-cell {
6a488035
TO
3321 display: table-cell;
3322 border-right: 1px solid #EFEFEF;
3323 padding: 2px;
3324 vertical-align: top;
3325}
3326
3f98995a 3327/* editable placeholder containers - share some styles with crm-editable below */
3f98995a
CW
3328.crm-container .replace-plain,
3329.crm-container textarea,
3330.crm-container select.crm-form-multiselect {
3331 border: 1px solid #999;
3332}
3333
3334.crm-container .replace-plain {
3335 cursor: pointer;
3336 background: rgba(255,255,255,0.6);
3337 min-height: 1.4em;
3338 position: relative;
3339 padding: .4em 1.5em .3em .4em;
3340}
3341
3342.crm-container .replace-plain p {
3343 padding: .2em 0;
3344 margin: 0;
3345}
3346
3347.crm-container .replace-plain:focus,
3348.crm-container .replace-plain:hover {
3349 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3350 background: rgba(255,255,255,0.8);
3351}
3352
3353.crm-container .replace-plain:before {
10e8c74f 3354 content: "\f040";
3f98995a
CW
3355 position: absolute;
3356 top: .4em;
3357 right: .5em;
10e8c74f 3358 opacity: .5;
3f98995a
CW
3359}
3360
6a488035 3361/* in place edit */
7d644ac8 3362.crm-container .crm-editable-enabled {
7d644ac8
CW
3363 padding-left: 2px;
3364 border: 2px dashed transparent;
3365}
3366.crm-container .crm-editable-textarea-enabled {
9d0d4076 3367 white-space: normal;
6a488035
TO
3368}
3369
9d0d4076 3370.crm-container .crm-editable-enabled:hover {
b48d66ce 3371 border: 2px dashed #d1d1d1;
b315947c 3372 cursor: pointer;
6a488035
TO
3373}
3374
b48d66ce
CW
3375.crm-container .crm-editable-enabled.crm-editable-editing:hover {
3376 border: 2px dashed transparent;
3377 cursor: auto;
3378}
3379
7d644ac8 3380.crm-container span.crm-editable-textarea-enabled {
7d644ac8
CW
3381 width: 96%;
3382}
3383.crm-container span.crm-editable-enabled {
3384 display: inline-block !important;
b2ee26f0
CW
3385 padding-right: 2px;
3386 min-height: 1em;
3387 min-width: 3em;
7d644ac8
CW
3388}
3389
10e8c74f 3390.crm-container .crm-editable-enabled .crm-i {
b48d66ce
CW
3391 opacity: .5;
3392}
3393
3f98995a
CW
3394.crm-container .replace-plain a:active:before,
3395.crm-container .replace-plain:focus:before,
3396.crm-container .replace-plain:hover:before,
10e8c74f 3397.crm-container .crm-editable-enabled:hover .crm-i {
b48d66ce 3398 opacity: 1;
6a488035
TO
3399}
3400
3401.crm-container .crm-editable-saving {
3402 background: #FFFFCC!important;
3403 opacity: 0.8;
3404}
3405
6a488035
TO
3406.crm-container h2.crm-editable-enabled input {
3407 min-height: 1.4em;
3408}
7d644ac8
CW
3409.crm-container .crm-editable-textarea-enabled textarea {
3410 min-height: 5em;
b315947c
CW
3411}
3412
b7cf988c
CW
3413.crm-editable-form {
3414 margin: 0 !important;
3415 padding: 0 !important;
b48d66ce 3416 width: auto !important;
b7cf988c
CW
3417 position: relative;
3418 overflow: visible;
3419}
3420
3421.crm-editable-form input,
3422.crm-editable-form textarea {
3423 margin-bottom: 0;
3424 padding-bottom: 0;
3425}
3426
3427.crm-editable-form button {
3428 position: absolute;
3429 bottom: -22px;
3f98995a 3430 left: 0;
b7cf988c
CW
3431 text-align: center;
3432 height: 23px;
3433 width: 32px;
f792936e 3434 z-index: 1;
b7cf988c
CW
3435}
3436
b7cf988c
CW
3437.crm-editable-form button[type=cancel] {
3438 left: 32px;
3439}
3440
6a488035
TO
3441/*crm-10345*/
3442.crm-container .field-action {
3443 word-wrap: normal;
3444}
3445
3446.crm-container .field-action span.btn-slide {
b5efa2c8 3447 padding-left: 0;
6a488035
TO
3448 padding-right: 11px;
3449}
3450/*end crm-10345*/
3451
3452/* alter display of parent and child groups in Manage Groups selector */
3453#crm-container .crm-group-parent td.crm-group-name {
3454 padding-left: 20px;
3455 text-indent: -20px;
3456}
3457
3458#crm-container .crm-group-child td.crm-group-name.level_2 {
3459 padding-left: 40px;
3460 text-indent: -20px;
3461}
3462#crm-container .crm-group-child td.crm-group-name.level_3 {
3463 padding-left: 60px;
3464 text-indent: -20px;
3465}
7d644ac8
CW
3466#crm-container .crm-group-name span.crm-editable-enabled {
3467 text-indent: 0;
3468}
6a488035
TO
3469
3470#crm-container div.crm-row-parent-name {
b5efa2c8 3471 padding: 3px 0 0 .5em;
6a488035
TO
3472 opacity: 0.75;
3473}
3474#crm-container td span.show-children,
3475#crm-container td span.crm-no-children {
3476 padding-left: 20px;
3477}
3478
6a488035 3479/* Notifications */
8e3272a1 3480#crm-notification-container {
6a488035
TO
3481 width: 350px;
3482 position: fixed;
3483 top: 45px;
3484 right: 15px;
3485 z-index: 999999;
3486}
80ccdf8c 3487#crm-notification-container div.ui-notify-message {
6a488035
TO
3488 padding: 10px;
3489 margin-bottom: 15px;
3490 color: #fff;
6a488035
TO
3491 border-radius: 8px;
3492 max-height: 600px;
3493 overflow: auto;
3494}
80ccdf8c 3495#crm-notification-container div.ui-notify-message h1 {
6a488035
TO
3496 font-size: 14px;
3497 margin: 0;
3498 padding: 4px;
3499 font-weight: bold;
3500 color: #fff;
3501}
80ccdf8c 3502#crm-notification-container div.ui-notify-message p {
6a488035
TO
3503 margin: 3px 0;
3504 padding: 0;
3505 line-height: 18px;
3506}
80ccdf8c 3507#crm-notification-container div.ui-notify-message:last-child {
6a488035
TO
3508 margin-bottom: 0;
3509}
80ccdf8c 3510#crm-notification-container div.ui-notify-message-style {
6a488035 3511 background: rgba(0,0,0,0.8);
6a488035
TO
3512 box-shadow: 0 0 6px #000;
3513}
3514.crm-container div.ui-notify-message-style a,
3515.crm-container div.ui-notify-message-style a:link {
3516 color: #CCD0FF;
3517 text-decoration: underline;
3518}
3519.crm-container div.ui-notify-message-style a:hover,
3520.crm-container div.ui-notify-message-style a:focus {
3521 color: #B2B8FF;
3522}
7c2110fd
CW
3523.crm-container div.ui-notify-message-style .ui-button .ui-button-text {
3524 color: #2F2F2F;
3525 text-decoration: none;
3526}
80ccdf8c 3527#crm-notification-container .ui-notify-message .ui-notify-close {
6a488035
TO
3528 cursor: pointer;
3529}
80ccdf8c 3530#crm-notification-container .ui-notify-message a.ui-notify-cross {
6a488035
TO
3531 margin-top: -4px;
3532 float: right;
3533 text-decoration: none;
9435db16 3534 font-size: 13px;
6a488035
TO
3535 font-weight: bold;
3536 text-shadow: 0 1px 1px #fff;
3537 padding: 2px;
3538 color: #FDFDFD;
3539}
80ccdf8c
CW
3540#crm-notification-container .ui-notify-message .ui-notify-cross:hover,
3541#crm-notification-container .ui-notify-message .ui-notify-cross:focus {
6a488035
TO
3542 color: #ffffab;
3543}
8e3272a1
CW
3544.crm-container div.ui-notify-message table,
3545.crm-container div.ui-notify-message tbody,
3546.crm-container div.ui-notify-message tr {
6a488035
TO
3547 border: 0 none;
3548 font-size: 11px;
3549}
741f6d5e
J
3550.crm-container div.ui-notify-message table {
3551 margin: 10px 0;
3552}
8e3272a1 3553.crm-container div.ui-notify-message td {
6a488035
TO
3554 background: rgba(255,255,255,0.1);
3555 border: 1px solid #111;
3556 font-size: 11px;
2dbaa182 3557 color: #fff;
6a488035 3558}
8e3272a1 3559.crm-container div.ui-notify-message th {
6a488035
TO
3560 background: rgba(200,200,200,0.2);
3561 border: 1px solid #111;
3562 color: #eee;
3563 font-size: 11px;
3564}
741f6d5e
J
3565.crm-container div.ui-notify-message table a.action-item {
3566 margin-right: 5px;
3567}
8e3272a1
CW
3568.crm-container div.ui-notify-message ul,
3569.crm-container div.ui-notify-message ol {
6a488035
TO
3570 margin: 0.5em 0 1em;
3571 padding: 0 0 0 0.5em;
3572}
4498c471
CW
3573
3574.crm-container div.ui-notify-message div.icon,
3575.crm-status-icon {
6a488035
TO
3576 background: transparent url("../i/message-icons.png") no-repeat 0 0;
3577 width: 24px;
3578 height: 24px;
3579 margin-right: 6px;
3580}
4498c471
CW
3581.crm-container div.ui-notify-message.success div.icon,
3582.crm-status-icon.success {
b5efa2c8 3583 background-position: -24px 0;
6a488035 3584}
4498c471
CW
3585.crm-container div.ui-notify-message.info div.icon,
3586.crm-status-icon.info {
b5efa2c8 3587 background-position: -48px 0;
6a488035 3588}
4498c471
CW
3589.crm-container div.ui-notify-message.error div.icon,
3590.crm-status-icon.error {
b5efa2c8 3591 background-position: -72px 0;
6a488035 3592}
877e5889
CW
3593.crm-container div.ui-notify-message.none div.icon {
3594 display: none;
3595}
6a488035 3596
4498c471
CW
3597span.crm-status-icon {
3598 display: inline-block;
3599}
3600
6a488035
TO
3601/* Public Pages */
3602
3603#crm-container.crm-public input[type="text"],
f52b4671 3604#crm-container.crm-public input[type="password"],
6bc774ab 3605#crm-container.crm-public input[type="email"],
6a488035
TO
3606#crm-container.crm-public select {
3607 font-size: 15px;
3608 padding: 5px;
f317a0df 3609 border-radius: 3px;
6a488035 3610 vertical-align: middle;
6bc774ab 3611 max-width: 100%;
6a488035
TO
3612}
3613
be6dcd4e
DG
3614#crm-container.crm-public .label,
3615#crm-container.crm-public .price-field-amount {
6a488035 3616 padding-top: 6px;
be6dcd4e 3617 font-size: 15px;
6a488035
TO
3618}
3619
65b86482
CW
3620.crm-container.crm-public .select2-container,
3621.crm-container.crm-public .select2-results {
f317a0df
CW
3622 font-size: 14px;
3623}
70641f49
RLAR
3624.crm-container.crm-public .select2-container * {
3625 box-sizing: content-box;
3626}
f317a0df
CW
3627.crm-container.crm-public .select2-container .select2-choice {
3628 padding: 5px 5px 5px 8px;
3629}
3630.crm-container.crm-public .select2-container-multi .select2-choices {
3631 padding: 4px;
3632}
3633.crm-public .select2-container .select2-choice .select2-arrow {
3634 width: 20px;
3635}
3636.crm-public .select2-container .select2-choice .select2-arrow b {
3637 position: relative;
3638 top: 2px;
3639 left: 2px;
3640}
3641.crm-container.crm-public .select2-container-multi .select2-choices .select2-search-choice {
3642 padding: 3px 3px 3px 20px;
3643}
3644.crm-container.crm-public .select2-container-multi .select2-choices:before {
3645 top: 9px;
3646}
3647
a17a96df
DG
3648.crm-public .crm-profile-view .content {
3649 padding-top: 6px;
3650}
3651
4dd3f46d
DG
3652#crm-container.crm-public .calc-value,
3653#crm-container.crm-public .content {
71447ba5
DG
3654 padding-top: 6px;
3655 font-size: 15px;
3656}
3657
6a488035
TO
3658#crm-container.crm-public .crm-section,
3659.crm-section {
3660 margin-bottom: 0;
3661}
3662
3663#crm-container.crm-public #crm-submit-buttons {
3664 margin-top: 30px;
3665}
3666
6a488035
TO
3667#crm-container.crm-public #premiums-listings {
3668 margin-top: 10px;
3669 min-width: 450px;
3670 width: 60%;
3671}
3672
3673#crm-container.crm-public #premiums-listings .premium {
3674 margin: 5px 0;
3675}
3676
3677#crm-container.crm-public #premiums-listings .premium .premium-short {
3678 padding: 10px;
3679 border: 2px solid #ffffff;
3680 background-color: #f0f0f0;
3681 cursor: pointer;
3682}
3683
3684#crm-container.crm-public #premiums-listings .premium .premium-short:hover {
3685 border: 2px solid #b0b0b0;
3686}
3687
3688#crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail {
3689 float: left;
3690 width: 50px;
3691}
3692
3693#crm-container.crm-public #premiums-listings .premium .premium-short-thumbnail img {
3694 width: 50px;
3695}
3696
3697#crm-container.crm-public #premiums-listings .premium .premium-short-content {
3698 text-align: center;
3699 font-size: 20px;
3700 font-weight: bold;
3701 padding: 20px;
3702}
3703
3704#crm-container.crm-public #premiums-listings .premium .premium-full {
3705 display: none;
3706 padding: 5px;
3707 border: 2px solid #cfcfcf;
3708 background-color: #ffffff;
3709}
3710
3711#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image {
3712 float: left;
3713 width: 200px;
3714 padding: 10px;
3715}
3716
3717#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-image img {
3718 width: 200px;
3719}
3720
3721#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-title {
3722 text-align: center;
3723 font-size: 1.5em;
3724 font-weight: bold;
3725 padding: 20px;
3726}
3727
3728#crm-container.crm-public #premiums-listings .premium .premium-full .premium-full-min {
3729 font-size: .9em;
3730 font-style: italic;
3731}
3732
3733#crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-short {
3734 text-align: center;
3735 font-size: 1.3em;
3736 padding: 10px;
3737}
3738
3739#crm-container.crm-public #premiums-listings .premium.premium-no_thanks .premium-full {
3740 text-align: center;
3741 font-size: 1.3em;
3742 font-weight: bold;
3743 padding: 10px;
3744}
3745
3746#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-short,
3747#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-image,
3748#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-title,
3749#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-description,
3750#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-options,
3751#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full .premium-full-min {
3752 opacity: 0.5;
3753}
3754#crm-container.crm-public #premiums-listings .premium .premium-full-disabled {
3755 display: none;
3756}
3757#crm-container.crm-public #premiums-listings .premium.premium-disabled .premium-full-disabled {
3758 display: block;
3759 color: #ff0000;
3760 text-align: center;
3761 font-weight: bold;
3762 margin-bottom: .5em;
3763}
3764
3765#crm-container.crm-public .price-set-row {
3766 font-size: 15px;
3767 margin-bottom: 5px;
3768}
3769
3770#crm-container.crm-public .price-set-row input,
3771#crm-container.crm-public .price-set-row label {
3772 vertical-align: middle;
3773 cursor: pointer;
3774}
3775
3776#crm-container.crm-public .price-set-row .crm-price-amount-amount {
6a488035
TO
3777 min-width: 2em;
3778 color: #333333;
3779}
3780
3781#crm-container.crm-public .price-set-row .crm-price-amount-label {
3782 color: #444444;
e2d2aeab 3783 font-weight: bold;
6a488035
TO
3784}
3785
bc782741 3786#crm-container.crm-public .price-set-row .highlight label {
6a488035
TO
3787 color: #000000;
3788 font-weight: bold;
3789}
3790
bc782741 3791#crm-container.crm-public .price-set-row .highlight .crm-price-amount-label {
6a488035
TO
3792 color: #222222;
3793}
3794
d2108f71
J
3795#crm-container.crm-public .price-set-option-content > tt {
3796 display: none;
3797}
3798
be6dcd4e
DG
3799#crm-container .sold-out-option,
3800#crm-container .price-set-row span.sold-out-option .crm-price-amount-label,
3801#crm-container .price-set-row span.sold-out-option .crm-price-amount-amount {
3802 font-style: italic !important;
3803 font-weight: normal !important;
4dd3f46d 3804 font-size: 15px;
be6dcd4e 3805 color: #666 !important;
d2108f71 3806}
55a9a4f4 3807
4f7f49d5 3808/* Styles for credit card payment logos */
bef9421f 3809.crm-container .credit_card_type-section .crm-credit_card_type-icons a {
222fa502
ML
3810 display: block;
3811 float: left;
3812 width: 50px;
3813 height: 30px;
3814 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
3815 text-indent: -20000px;
4f7f49d5
CW
3816 margin-right: 10px;
3817 box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
3818 border-radius: 3px;
3819 border: 1px solid #FFFFFF;
55a9a4f4
ML
3820}
3821
bef9421f 3822.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-visa {
4f7f49d5 3823 background-position: -50px 0;
55a9a4f4
ML
3824}
3825
bef9421f 3826.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-mastercard {
4f7f49d5 3827 background-position: -100px 0;
55a9a4f4
ML
3828}
3829
bef9421f 3830.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-amex {
4f7f49d5 3831 background-position: -150px 0;
54be855c
ML
3832}
3833
bef9421f 3834.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-discover {
4f7f49d5 3835 background-position: -200px 0;
55a9a4f4
ML
3836}
3837
bef9421f 3838.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-jcb {
4f7f49d5 3839 background-position: -250px 0;
55a9a4f4
ML
3840}
3841
bef9421f 3842.crm-container .credit_card_type-section .crm-credit_card_type-icons .crm-credit_card_type-icon-unionpay {
4f7f49d5
CW
3843 background-position: -300px 0;
3844}
3845
bef9421f 3846.crm-container .cvv2-icon {
4f7f49d5
CW
3847 display: inline-block;
3848 width: 50px;
3849 height: 30px;
3850 background: url(../i/creditcard-icons.png) no-repeat 0 0 transparent;
54be855c
ML
3851}
3852
222fa502
ML
3853/* Avoid weird border around the images (some themes will add a border around images) */
3854#crm-container .credit_card_type-section .crm-credit_card_type-icons a,
3855#crm-container .credit_card_type-section .crm-credit_card_type-icons a:link,
3856#crm-container .credit_card_type-section .crm-credit_card_type-icons a:hover,
3857#crm-container .credit_card_type-section .crm-credit_card_type-icons a:focus,
3858#crm-container .credit_card_type-section .crm-credit_card_type-icons a:active {
55a9a4f4
ML
3859 color: #fff;
3860}
3861
3c0b6a40 3862.crm-container .strikethrough {
ab2089fe 3863 text-decoration: line-through;
3864}
dc7a657e 3865
2f32fb37
TO
3866.crm-container input.ng-invalid.ng-dirty,
3867.crm-container select.ng-invalid.ng-dirty,
3868.crm-container textarea.ng-invalid.ng-dirty {
dc7a657e
TO
3869 border: 1px solid red;
3870}
2f32fb37
TO
3871.crm-container input.ng-valid,
3872.crm-container input.ng-pristine,
3873.crm-container textarea.ng-valid,
3874.crm-container textarea.ng-pristine,
3875.crm-container select.ng-valid,
3876.crm-container select.ng-pristine{
dc7a657e 3877 border: 1px solid #666;
7dea8077 3878}
fdeb4de2
CW
3879
3880/* block-ui */
3881.crm-container .blockUI.blockOverlay {
98020070 3882 background: url("../i/loading-overlay.gif") center center no-repeat white !important;
fdeb4de2 3883}
431b0ca8 3884
fd19c5ae
RK
3885.crm-container table.mergecontact thead th {
3886 width:30%;
3887}
2f31bc16
TO
3888.crm-container .crm-ui-datetime.ng-dirty input.incomplete {
3889 border: 1px solid red;
3890}
f1616b1c
AH
3891
3892.crm-container .crm-grip {
3893 cursor: move;
3894}
b733747a
CW
3895
3896.crm-tag-item {
3897 display: inline-block;
3898 padding: 1px 5px;
3899 border-radius: 3px;
3900 border: 1px solid grey;
37a2c0fa 3901}