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