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