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