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