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