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