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