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