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