apotomo-datatable 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1165 @@
1
+
2
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3
+ * General page setup
4
+ */
5
+ #dt_example {
6
+ font: 80%/1.45em "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
7
+ margin: 0;
8
+ padding: 0;
9
+ color: #333;
10
+ background-color: #fff;
11
+ }
12
+
13
+
14
+ #dt_example #container {
15
+ width: 800px;
16
+ margin: 30px auto;
17
+ padding: 0;
18
+ }
19
+
20
+
21
+ #dt_example #footer {
22
+ margin: 50px auto 0 auto;
23
+ padding: 0;
24
+ }
25
+
26
+ #dt_example #demo {
27
+ margin: 30px auto 0 auto;
28
+ }
29
+
30
+ #dt_example .demo_jui {
31
+ margin: 30px auto 0 auto;
32
+ }
33
+
34
+ #dt_example .big {
35
+ font-size: 1.3em;
36
+ font-weight: bold;
37
+ line-height: 1.6em;
38
+ color: #4E6CA3;
39
+ }
40
+
41
+ #dt_example .spacer {
42
+ height: 20px;
43
+ clear: both;
44
+ }
45
+
46
+ #dt_example .clear {
47
+ clear: both;
48
+ }
49
+
50
+ #dt_example pre {
51
+ padding: 15px;
52
+ background-color: #F5F5F5;
53
+ border: 1px solid #CCCCCC;
54
+ }
55
+
56
+ #dt_example h1 {
57
+ margin-top: 2em;
58
+ font-size: 1.3em;
59
+ font-weight: normal;
60
+ line-height: 1.6em;
61
+ color: #4E6CA3;
62
+ border-bottom: 1px solid #B0BED9;
63
+ clear: both;
64
+ }
65
+
66
+ #dt_example h2 {
67
+ font-size: 1.2em;
68
+ font-weight: normal;
69
+ line-height: 1.6em;
70
+ color: #4E6CA3;
71
+ clear: both;
72
+ }
73
+
74
+ #dt_example a {
75
+ color: #0063DC;
76
+ text-decoration: none;
77
+ }
78
+
79
+ #dt_example a:hover {
80
+ text-decoration: underline;
81
+ }
82
+
83
+ #dt_example ul {
84
+ color: #4E6CA3;
85
+ }
86
+
87
+ .css_right {
88
+ float: right;
89
+ }
90
+
91
+ .css_left {
92
+ float: left;
93
+ }
94
+
95
+ .demo_links {
96
+ float: left;
97
+ width: 50%;
98
+ margin-bottom: 1em;
99
+ }
100
+
101
+ #demo_info {
102
+ padding: 5px;
103
+ border: 1px solid #B0BED9;
104
+ height: 100px;
105
+ width: 100%;
106
+ overflow: auto;
107
+ }
108
+
109
+ #dt_example code {
110
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
111
+ padding: 2px 4px !important;
112
+ white-space: nowrap;
113
+ font-size: 0.9em;
114
+
115
+ color: #D14;
116
+ background-color: #F7F7F9;
117
+
118
+ border: 1px solid #E1E1E8;
119
+ -webkit-border-radius: 3px;
120
+ -moz-border-radius: 3px;
121
+ border-radius: 3px;
122
+ }
123
+
124
+ #dt_example div.syntaxhighlighter code {
125
+ padding: 0 !important;
126
+ }
127
+ /*
128
+ * File: demo_table.css
129
+ * CVS: $Id$
130
+ * Description: CSS descriptions for DataTables demo pages
131
+ * Author: Allan Jardine
132
+ * Created: Tue May 12 06:47:22 BST 2009
133
+ * Modified: $Date$ by $Author$
134
+ * Language: CSS
135
+ * Project: DataTables
136
+ *
137
+ * Copyright 2009 Allan Jardine. All Rights Reserved.
138
+ *
139
+ * ***************************************************************************
140
+ * DESCRIPTION
141
+ *
142
+ * The styles given here are suitable for the demos that are used with the standard DataTables
143
+ * distribution (see www.datatables.net). You will most likely wish to modify these styles to
144
+ * meet the layout requirements of your site.
145
+ *
146
+ * Common issues:
147
+ * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
148
+ * no conflict between the two pagination types. If you want to use full_numbers pagination
149
+ * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
150
+ * modify that selector.
151
+ * Note that the path used for Images is relative. All images are by default located in
152
+ * /assets/apotomo-datatable/ - relative to this CSS file.
153
+ */
154
+
155
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
156
+ * DataTables features
157
+ */
158
+
159
+ .dataTables_wrapper {
160
+ position: relative;
161
+ clear: both;
162
+ zoom: 1; /* Feeling sorry for IE */
163
+ }
164
+
165
+ .dataTables_processing {
166
+ position: absolute;
167
+ top: 50%;
168
+ left: 50%;
169
+ width: 250px;
170
+ height: 30px;
171
+ margin-left: -125px;
172
+ margin-top: -15px;
173
+ padding: 14px 0 2px 0;
174
+ border: 1px solid #ddd;
175
+ text-align: center;
176
+ color: #999;
177
+ font-size: 14px;
178
+ background-color: white;
179
+ }
180
+
181
+ .dataTables_length {
182
+ width: 40%;
183
+ float: left;
184
+ }
185
+
186
+ .dataTables_filter {
187
+ width: 50%;
188
+ float: right;
189
+ text-align: right;
190
+ }
191
+
192
+ .dataTables_info {
193
+ width: 60%;
194
+ float: left;
195
+ }
196
+
197
+ .dataTables_paginate {
198
+ float: right;
199
+ text-align: right;
200
+ }
201
+
202
+ /* Pagination nested */
203
+ .paginate_disabled_previous, .paginate_enabled_previous,
204
+ .paginate_disabled_next, .paginate_enabled_next {
205
+ height: 19px;
206
+ float: left;
207
+ cursor: pointer;
208
+ *cursor: hand;
209
+ color: #111 !important;
210
+ }
211
+ .paginate_disabled_previous:hover, .paginate_enabled_previous:hover,
212
+ .paginate_disabled_next:hover, .paginate_enabled_next:hover {
213
+ text-decoration: none !important;
214
+ }
215
+ .paginate_disabled_previous:active, .paginate_enabled_previous:active,
216
+ .paginate_disabled_next:active, .paginate_enabled_next:active {
217
+ outline: none;
218
+ }
219
+
220
+ .paginate_disabled_previous,
221
+ .paginate_disabled_next {
222
+ color: #666 !important;
223
+ }
224
+ .paginate_disabled_previous, .paginate_enabled_previous {
225
+ padding-left: 23px;
226
+ }
227
+ .paginate_disabled_next, .paginate_enabled_next {
228
+ padding-right: 23px;
229
+ margin-left: 10px;
230
+ }
231
+
232
+ .paginate_disabled_previous {
233
+ background: url('/assets/apotomo-datatable/back_disabled.png') no-repeat top left;
234
+ }
235
+
236
+ .paginate_enabled_previous {
237
+ background: url('/assets/apotomo-datatable/back_enabled.png') no-repeat top left;
238
+ }
239
+ .paginate_enabled_previous:hover {
240
+ background: url('/assets/apotomo-datatable/back_enabled_hover.png') no-repeat top left;
241
+ }
242
+
243
+ .paginate_disabled_next {
244
+ background: url('/assets/apotomo-datatable/forward_disabled.png') no-repeat top right;
245
+ }
246
+
247
+ .paginate_enabled_next {
248
+ background: url('/assets/apotomo-datatable/forward_enabled.png') no-repeat top right;
249
+ }
250
+ .paginate_enabled_next:hover {
251
+ background: url('/assets/apotomo-datatable/forward_enabled_hover.png') no-repeat top right;
252
+ }
253
+
254
+
255
+
256
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
257
+ * DataTables display
258
+ */
259
+ table.display {
260
+ margin: 0 auto;
261
+ clear: both;
262
+ width: 100%;
263
+
264
+ /* Note Firefox 3.5 and before have a bug with border-collapse
265
+ * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
266
+ * border-spacing: 0; is one possible option. Conditional-css.com is
267
+ * useful for this kind of thing
268
+ *
269
+ * Further note IE 6/7 has problems when calculating widths with border width.
270
+ * It subtracts one px relative to the other browsers from the first column, and
271
+ * adds one to the end...
272
+ *
273
+ * If you want that effect I'd suggest setting a border-top/left on th/td's and
274
+ * then filling in the gaps with other borders.
275
+ */
276
+ }
277
+
278
+ table.display thead th {
279
+ padding: 3px 18px 3px 10px;
280
+ border-bottom: 1px solid black;
281
+ font-weight: bold;
282
+ cursor: pointer;
283
+ * cursor: hand;
284
+ }
285
+
286
+ table.display tfoot th {
287
+ padding: 3px 18px 3px 10px;
288
+ border-top: 1px solid black;
289
+ font-weight: bold;
290
+ }
291
+
292
+ table.display tr.heading2 td {
293
+ border-bottom: 1px solid #aaa;
294
+ }
295
+
296
+ table.display td {
297
+ padding: 3px 10px;
298
+ }
299
+
300
+ table.display td.center {
301
+ text-align: center;
302
+ }
303
+
304
+
305
+
306
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
307
+ * DataTables sorting
308
+ */
309
+
310
+ .sorting_asc {
311
+ background: url('/assets/apotomo-datatable/sort_asc.png') no-repeat center right;
312
+ }
313
+
314
+ .sorting_desc {
315
+ background: url('/assets/apotomo-datatable/sort_desc.png') no-repeat center right;
316
+ }
317
+
318
+ .sorting {
319
+ background: url('/assets/apotomo-datatable/sort_both.png') no-repeat center right;
320
+ }
321
+
322
+ .sorting_asc_disabled {
323
+ background: url('/assets/apotomo-datatable/sort_asc_disabled.png') no-repeat center right;
324
+ }
325
+
326
+ .sorting_desc_disabled {
327
+ background: url('/assets/apotomo-datatable/sort_desc_disabled.png') no-repeat center right;
328
+ }
329
+
330
+ table.display thead th:active,
331
+ table.display thead td:active {
332
+ outline: none;
333
+ }
334
+
335
+
336
+
337
+
338
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
339
+ * DataTables row classes
340
+ */
341
+ table.display tr.odd.gradeA {
342
+ background-color: #ddffdd;
343
+ }
344
+
345
+ table.display tr.even.gradeA {
346
+ background-color: #eeffee;
347
+ }
348
+
349
+ table.display tr.odd.gradeC {
350
+ background-color: #ddddff;
351
+ }
352
+
353
+ table.display tr.even.gradeC {
354
+ background-color: #eeeeff;
355
+ }
356
+
357
+ table.display tr.odd.gradeX {
358
+ background-color: #ffdddd;
359
+ }
360
+
361
+ table.display tr.even.gradeX {
362
+ background-color: #ffeeee;
363
+ }
364
+
365
+ table.display tr.odd.gradeU {
366
+ background-color: #ddd;
367
+ }
368
+
369
+ table.display tr.even.gradeU {
370
+ background-color: #eee;
371
+ }
372
+
373
+
374
+ tr.odd {
375
+ background-color: #E2E4FF;
376
+ }
377
+
378
+ tr.even {
379
+ background-color: white;
380
+ }
381
+
382
+
383
+
384
+
385
+
386
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
387
+ * Misc
388
+ */
389
+ .dataTables_scroll {
390
+ clear: both;
391
+ }
392
+
393
+ .dataTables_scrollBody {
394
+ *margin-top: -1px;
395
+ -webkit-overflow-scrolling: touch;
396
+ }
397
+
398
+ .top, .bottom {
399
+ padding: 15px;
400
+ background-color: #F5F5F5;
401
+ border: 1px solid #CCCCCC;
402
+ }
403
+
404
+ .top .dataTables_info {
405
+ float: none;
406
+ }
407
+
408
+ .clear {
409
+ clear: both;
410
+ }
411
+
412
+ .dataTables_empty {
413
+ text-align: center;
414
+ }
415
+
416
+ tfoot input {
417
+ margin: 0.5em 0;
418
+ width: 100%;
419
+ color: #444;
420
+ }
421
+
422
+ tfoot input.search_init {
423
+ color: #999;
424
+ }
425
+
426
+ td.group {
427
+ background-color: #d1cfd0;
428
+ border-bottom: 2px solid #A19B9E;
429
+ border-top: 2px solid #A19B9E;
430
+ }
431
+
432
+ td.details {
433
+ background-color: #d1cfd0;
434
+ border: 2px solid #A19B9E;
435
+ }
436
+
437
+
438
+ .example_alt_pagination div.dataTables_info {
439
+ width: 40%;
440
+ }
441
+
442
+ .paging_full_numbers {
443
+ width: 400px;
444
+ height: 22px;
445
+ line-height: 22px;
446
+ }
447
+
448
+ .paging_full_numbers a:active {
449
+ outline: none
450
+ }
451
+
452
+ .paging_full_numbers a:hover {
453
+ text-decoration: none;
454
+ }
455
+
456
+ .paging_full_numbers a.paginate_button,
457
+ .paging_full_numbers a.paginate_active {
458
+ border: 1px solid #aaa;
459
+ -webkit-border-radius: 5px;
460
+ -moz-border-radius: 5px;
461
+ padding: 2px 5px;
462
+ margin: 0 3px;
463
+ cursor: pointer;
464
+ *cursor: hand;
465
+ color: #333 !important;
466
+ }
467
+
468
+ .paging_full_numbers a.paginate_button {
469
+ background-color: #ddd;
470
+ }
471
+
472
+ .paging_full_numbers a.paginate_button:hover {
473
+ background-color: #ccc;
474
+ text-decoration: none !important;
475
+ }
476
+
477
+ .paging_full_numbers a.paginate_active {
478
+ background-color: #99B3FF;
479
+ }
480
+
481
+ table.display tr.even.row_selected td {
482
+ background-color: #B0BED9;
483
+ }
484
+
485
+ table.display tr.odd.row_selected td {
486
+ background-color: #9FAFD1;
487
+ }
488
+
489
+
490
+ /*
491
+ * Sorting classes for columns
492
+ */
493
+ /* For the standard odd/even */
494
+ tr.odd td.sorting_1 {
495
+ background-color: #D3D6FF;
496
+ }
497
+
498
+ tr.odd td.sorting_2 {
499
+ background-color: #DADCFF;
500
+ }
501
+
502
+ tr.odd td.sorting_3 {
503
+ background-color: #E0E2FF;
504
+ }
505
+
506
+ tr.even td.sorting_1 {
507
+ background-color: #EAEBFF;
508
+ }
509
+
510
+ tr.even td.sorting_2 {
511
+ background-color: #F2F3FF;
512
+ }
513
+
514
+ tr.even td.sorting_3 {
515
+ background-color: #F9F9FF;
516
+ }
517
+
518
+
519
+ /* For the Conditional-CSS grading rows */
520
+ /*
521
+ Colour calculations (based off the main row colours)
522
+ Level 1:
523
+ dd > c4
524
+ ee > d5
525
+ Level 2:
526
+ dd > d1
527
+ ee > e2
528
+ */
529
+ tr.odd.gradeA td.sorting_1 {
530
+ background-color: #c4ffc4;
531
+ }
532
+
533
+ tr.odd.gradeA td.sorting_2 {
534
+ background-color: #d1ffd1;
535
+ }
536
+
537
+ tr.odd.gradeA td.sorting_3 {
538
+ background-color: #d1ffd1;
539
+ }
540
+
541
+ tr.even.gradeA td.sorting_1 {
542
+ background-color: #d5ffd5;
543
+ }
544
+
545
+ tr.even.gradeA td.sorting_2 {
546
+ background-color: #e2ffe2;
547
+ }
548
+
549
+ tr.even.gradeA td.sorting_3 {
550
+ background-color: #e2ffe2;
551
+ }
552
+
553
+ tr.odd.gradeC td.sorting_1 {
554
+ background-color: #c4c4ff;
555
+ }
556
+
557
+ tr.odd.gradeC td.sorting_2 {
558
+ background-color: #d1d1ff;
559
+ }
560
+
561
+ tr.odd.gradeC td.sorting_3 {
562
+ background-color: #d1d1ff;
563
+ }
564
+
565
+ tr.even.gradeC td.sorting_1 {
566
+ background-color: #d5d5ff;
567
+ }
568
+
569
+ tr.even.gradeC td.sorting_2 {
570
+ background-color: #e2e2ff;
571
+ }
572
+
573
+ tr.even.gradeC td.sorting_3 {
574
+ background-color: #e2e2ff;
575
+ }
576
+
577
+ tr.odd.gradeX td.sorting_1 {
578
+ background-color: #ffc4c4;
579
+ }
580
+
581
+ tr.odd.gradeX td.sorting_2 {
582
+ background-color: #ffd1d1;
583
+ }
584
+
585
+ tr.odd.gradeX td.sorting_3 {
586
+ background-color: #ffd1d1;
587
+ }
588
+
589
+ tr.even.gradeX td.sorting_1 {
590
+ background-color: #ffd5d5;
591
+ }
592
+
593
+ tr.even.gradeX td.sorting_2 {
594
+ background-color: #ffe2e2;
595
+ }
596
+
597
+ tr.even.gradeX td.sorting_3 {
598
+ background-color: #ffe2e2;
599
+ }
600
+
601
+ tr.odd.gradeU td.sorting_1 {
602
+ background-color: #c4c4c4;
603
+ }
604
+
605
+ tr.odd.gradeU td.sorting_2 {
606
+ background-color: #d1d1d1;
607
+ }
608
+
609
+ tr.odd.gradeU td.sorting_3 {
610
+ background-color: #d1d1d1;
611
+ }
612
+
613
+ tr.even.gradeU td.sorting_1 {
614
+ background-color: #d5d5d5;
615
+ }
616
+
617
+ tr.even.gradeU td.sorting_2 {
618
+ background-color: #e2e2e2;
619
+ }
620
+
621
+ tr.even.gradeU td.sorting_3 {
622
+ background-color: #e2e2e2;
623
+ }
624
+
625
+
626
+ /*
627
+ * Row highlighting example
628
+ */
629
+ .ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
630
+ background-color: #ECFFB3;
631
+ }
632
+
633
+ .ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
634
+ background-color: #E6FF99;
635
+ }
636
+
637
+ .ex_highlight_row #example tr.even:hover {
638
+ background-color: #ECFFB3;
639
+ }
640
+
641
+ .ex_highlight_row #example tr.even:hover td.sorting_1 {
642
+ background-color: #DDFF75;
643
+ }
644
+
645
+ .ex_highlight_row #example tr.even:hover td.sorting_2 {
646
+ background-color: #E7FF9E;
647
+ }
648
+
649
+ .ex_highlight_row #example tr.even:hover td.sorting_3 {
650
+ background-color: #E2FF89;
651
+ }
652
+
653
+ .ex_highlight_row #example tr.odd:hover {
654
+ background-color: #E6FF99;
655
+ }
656
+
657
+ .ex_highlight_row #example tr.odd:hover td.sorting_1 {
658
+ background-color: #D6FF5C;
659
+ }
660
+
661
+ .ex_highlight_row #example tr.odd:hover td.sorting_2 {
662
+ background-color: #E0FF84;
663
+ }
664
+
665
+ .ex_highlight_row #example tr.odd:hover td.sorting_3 {
666
+ background-color: #DBFF70;
667
+ }
668
+
669
+
670
+ /*
671
+ * KeyTable
672
+ */
673
+ table.KeyTable td {
674
+ border: 3px solid transparent;
675
+ }
676
+
677
+ table.KeyTable td.focus {
678
+ border: 3px solid #3366FF;
679
+ }
680
+
681
+ table.display tr.gradeA {
682
+ background-color: #eeffee;
683
+ }
684
+
685
+ table.display tr.gradeC {
686
+ background-color: #ddddff;
687
+ }
688
+
689
+ table.display tr.gradeX {
690
+ background-color: #ffdddd;
691
+ }
692
+
693
+ table.display tr.gradeU {
694
+ background-color: #ddd;
695
+ }
696
+
697
+ div.box {
698
+ height: 100px;
699
+ padding: 10px;
700
+ overflow: auto;
701
+ border: 1px solid #8080FF;
702
+ background-color: #E5E5FF;
703
+ }
704
+ /*! jQuery UI - v1.9.2 - 2012-12-09
705
+ * http://jqueryui.com
706
+ * Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
707
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=5c9ccc&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=55&borderColorHeader=4297d7&fcHeader=ffffff&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=06_inset_hard.png&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=469bdd&bgColorDefault=dfeffc&bgTextureDefault=02_glass.png&bgImgOpacityDefault=85&borderColorDefault=c5dbec&fcDefault=2e6e9e&iconColorDefault=6da8d5&bgColorHover=d0e5f5&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=79b7e7&fcHover=1d5987&iconColorHover=217bc0&bgColorActive=f5f8f9&bgTextureActive=06_inset_hard.png&bgImgOpacityActive=100&borderColorActive=79b7e7&fcActive=e17009&iconColorActive=f9bd01&bgColorHighlight=fbec88&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=55&borderColorHighlight=fad42e&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
708
+ * Copyright (c) 2012 jQuery Foundation and other contributors Licensed MIT */
709
+
710
+ /* Layout helpers
711
+ ----------------------------------*/
712
+ .ui-helper-hidden { display: none; }
713
+ .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
714
+ .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
715
+ .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
716
+ .ui-helper-clearfix:after { clear: both; }
717
+ .ui-helper-clearfix { zoom: 1; }
718
+ .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
719
+
720
+
721
+ /* Interaction Cues
722
+ ----------------------------------*/
723
+ .ui-state-disabled { cursor: default !important; }
724
+
725
+
726
+ /* Icons
727
+ ----------------------------------*/
728
+
729
+ /* states and images */
730
+ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
731
+
732
+
733
+ /* Misc visuals
734
+ ----------------------------------*/
735
+
736
+ /* Overlays */
737
+ .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
738
+ .ui-resizable { position: relative;}
739
+ .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
740
+ .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
741
+ .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
742
+ .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
743
+ .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
744
+ .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
745
+ .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
746
+ .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
747
+ .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
748
+ .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
749
+ .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }
750
+ .ui-accordion .ui-accordion-icons { padding-left: 2.2em; }
751
+ .ui-accordion .ui-accordion-noicons { padding-left: .7em; }
752
+ .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }
753
+ .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
754
+ .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }
755
+ .ui-autocomplete {
756
+ position: absolute;
757
+ top: 0;
758
+ left: 0;
759
+ cursor: default;
760
+ }
761
+
762
+ /* workarounds */
763
+ * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
764
+ .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
765
+ .ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }
766
+ .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
767
+ button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
768
+ .ui-button-icons-only { width: 3.4em; }
769
+ button.ui-button-icons-only { width: 3.7em; }
770
+
771
+ /*button text element */
772
+ .ui-button .ui-button-text { display: block; line-height: 1.4; }
773
+ .ui-button-text-only .ui-button-text { padding: .4em 1em; }
774
+ .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
775
+ .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
776
+ .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
777
+ .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
778
+ /* no icon support for input elements, provide padding by default */
779
+ input.ui-button { padding: .4em 1em; }
780
+
781
+ /*button icon element(s) */
782
+ .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
783
+ .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
784
+ .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
785
+ .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
786
+ .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
787
+
788
+ /*button sets*/
789
+ .ui-buttonset { margin-right: 7px; }
790
+ .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
791
+
792
+ /* workarounds */
793
+ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
794
+ .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
795
+ .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
796
+ .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
797
+ .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
798
+ .ui-datepicker .ui-datepicker-prev { left:2px; }
799
+ .ui-datepicker .ui-datepicker-next { right:2px; }
800
+ .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
801
+ .ui-datepicker .ui-datepicker-next-hover { right:1px; }
802
+ .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
803
+ .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
804
+ .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
805
+ .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
806
+ .ui-datepicker select.ui-datepicker-month,
807
+ .ui-datepicker select.ui-datepicker-year { width: 49%;}
808
+ .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
809
+ .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
810
+ .ui-datepicker td { border: 0; padding: 1px; }
811
+ .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
812
+ .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
813
+ .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
814
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
815
+
816
+ /* with multiple calendars */
817
+ .ui-datepicker.ui-datepicker-multi { width:auto; }
818
+ .ui-datepicker-multi .ui-datepicker-group { float:left; }
819
+ .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
820
+ .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
821
+ .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
822
+ .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
823
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
824
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
825
+ .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
826
+ .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
827
+
828
+ /* RTL support */
829
+ .ui-datepicker-rtl { direction: rtl; }
830
+ .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
831
+ .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
832
+ .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
833
+ .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
834
+ .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
835
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
836
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
837
+ .ui-datepicker-rtl .ui-datepicker-group { float:right; }
838
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
839
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
840
+
841
+ /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
842
+ .ui-datepicker-cover {
843
+ position: absolute; /*must have*/
844
+ z-index: -1; /*must have*/
845
+ filter: mask(); /*must have*/
846
+ top: -4px; /*must have*/
847
+ left: -4px; /*must have*/
848
+ width: 200px; /*must have*/
849
+ height: 200px; /*must have*/
850
+ }.ui-dialog { position: absolute; top: 0; left: 0; padding: .2em; width: 300px; overflow: hidden; }
851
+ .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
852
+ .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
853
+ .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
854
+ .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
855
+ .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
856
+ .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
857
+ .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
858
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
859
+ .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
860
+ .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
861
+ .ui-draggable .ui-dialog-titlebar { cursor: move; }
862
+ .ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }
863
+ .ui-menu .ui-menu { margin-top: -3px; position: absolute; }
864
+ .ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }
865
+ .ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
866
+ .ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
867
+ .ui-menu .ui-menu-item a.ui-state-focus,
868
+ .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }
869
+
870
+ .ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
871
+ .ui-menu .ui-state-disabled a { cursor: default; }
872
+
873
+ /* icon support */
874
+ .ui-menu-icons { position: relative; }
875
+ .ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }
876
+
877
+ /* left-aligned */
878
+ .ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }
879
+
880
+ /* right-aligned */
881
+ .ui-menu .ui-menu-icon { position: static; float: right; }
882
+ .ui-progressbar { height:2em; text-align: left; overflow: hidden; }
883
+ .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }.ui-slider { position: relative; text-align: left; }
884
+ .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
885
+ .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
886
+
887
+ .ui-slider-horizontal { height: .8em; }
888
+ .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
889
+ .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
890
+ .ui-slider-horizontal .ui-slider-range-min { left: 0; }
891
+ .ui-slider-horizontal .ui-slider-range-max { right: 0; }
892
+
893
+ .ui-slider-vertical { width: .8em; height: 100px; }
894
+ .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
895
+ .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
896
+ .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
897
+ .ui-slider-vertical .ui-slider-range-max { top: 0; }.ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
898
+ .ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
899
+ .ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
900
+ .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
901
+ .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
902
+ .ui-spinner-up { top: 0; }
903
+ .ui-spinner-down { bottom: 0; }
904
+
905
+ /* TR overrides */
906
+ .ui-spinner .ui-icon-triangle-1-s {
907
+ /* need to fix icons sprite */
908
+ background-position:-65px -16px;
909
+ }
910
+ .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
911
+ .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
912
+ .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }
913
+ .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
914
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }
915
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
916
+ .ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
917
+ .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
918
+ .ui-tooltip {
919
+ padding: 8px;
920
+ position: absolute;
921
+ z-index: 9999;
922
+ max-width: 300px;
923
+ -webkit-box-shadow: 0 0 5px #aaa;
924
+ box-shadow: 0 0 5px #aaa;
925
+ }
926
+ /* Fades and background-images don't work well together in IE6, drop the image */
927
+ * html .ui-tooltip {
928
+ background-image: none;
929
+ }
930
+ body .ui-tooltip { border-width: 2px; }
931
+
932
+ /* Component containers
933
+ ----------------------------------*/
934
+ .ui-widget { font-family: Lucida Grande,Lucida Sans,Arial,sans-serif; font-size: 1.1em; }
935
+ .ui-widget .ui-widget { font-size: 1em; }
936
+ .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Lucida Grande,Lucida Sans,Arial,sans-serif; font-size: 1em; }
937
+ .ui-widget-content { border: 1px solid #a6c9e2; background: #fcfdfd url(images/ui-bg_inset-hard_100_fcfdfd_1x100.png) 50% bottom repeat-x; color: #222222; }
938
+ .ui-widget-content a { color: #222222; }
939
+ .ui-widget-header { border: 1px solid #4297d7; background: #5c9ccc url(images/ui-bg_gloss-wave_55_5c9ccc_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
940
+ .ui-widget-header a { color: #ffffff; }
941
+
942
+ /* Interaction states
943
+ ----------------------------------*/
944
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #c5dbec; background: #dfeffc url(images/ui-bg_glass_85_dfeffc_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #2e6e9e; }
945
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #2e6e9e; text-decoration: none; }
946
+ .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #79b7e7; background: #d0e5f5 url(images/ui-bg_glass_75_d0e5f5_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1d5987; }
947
+ .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #1d5987; text-decoration: none; }
948
+ .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #79b7e7; background: #f5f8f9 url(images/ui-bg_inset-hard_100_f5f8f9_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #e17009; }
949
+ .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #e17009; text-decoration: none; }
950
+
951
+ /* Interaction Cues
952
+ ----------------------------------*/
953
+ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fad42e; background: #fbec88 url(images/ui-bg_flat_55_fbec88_40x100.png) 50% 50% repeat-x; color: #363636; }
954
+ .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
955
+ .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
956
+ .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
957
+ .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
958
+ .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
959
+ .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
960
+ .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
961
+ .ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); } /* For IE8 - See #6059 */
962
+
963
+ /* Icons
964
+ ----------------------------------*/
965
+
966
+ /* states and images */
967
+ .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_469bdd_256x240.png); }
968
+ .ui-widget-content .ui-icon {background-image: url(images/ui-icons_469bdd_256x240.png); }
969
+ .ui-widget-header .ui-icon {background-image: url(images/ui-icons_d8e7f3_256x240.png); }
970
+ .ui-state-default .ui-icon { background-image: url(images/ui-icons_6da8d5_256x240.png); }
971
+ .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_217bc0_256x240.png); }
972
+ .ui-state-active .ui-icon {background-image: url(images/ui-icons_f9bd01_256x240.png); }
973
+ .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
974
+ .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); }
975
+
976
+ /* positioning */
977
+ .ui-icon-carat-1-n { background-position: 0 0; }
978
+ .ui-icon-carat-1-ne { background-position: -16px 0; }
979
+ .ui-icon-carat-1-e { background-position: -32px 0; }
980
+ .ui-icon-carat-1-se { background-position: -48px 0; }
981
+ .ui-icon-carat-1-s { background-position: -64px 0; }
982
+ .ui-icon-carat-1-sw { background-position: -80px 0; }
983
+ .ui-icon-carat-1-w { background-position: -96px 0; }
984
+ .ui-icon-carat-1-nw { background-position: -112px 0; }
985
+ .ui-icon-carat-2-n-s { background-position: -128px 0; }
986
+ .ui-icon-carat-2-e-w { background-position: -144px 0; }
987
+ .ui-icon-triangle-1-n { background-position: 0 -16px; }
988
+ .ui-icon-triangle-1-ne { background-position: -16px -16px; }
989
+ .ui-icon-triangle-1-e { background-position: -32px -16px; }
990
+ .ui-icon-triangle-1-se { background-position: -48px -16px; }
991
+ .ui-icon-triangle-1-s { background-position: -64px -16px; }
992
+ .ui-icon-triangle-1-sw { background-position: -80px -16px; }
993
+ .ui-icon-triangle-1-w { background-position: -96px -16px; }
994
+ .ui-icon-triangle-1-nw { background-position: -112px -16px; }
995
+ .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
996
+ .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
997
+ .ui-icon-arrow-1-n { background-position: 0 -32px; }
998
+ .ui-icon-arrow-1-ne { background-position: -16px -32px; }
999
+ .ui-icon-arrow-1-e { background-position: -32px -32px; }
1000
+ .ui-icon-arrow-1-se { background-position: -48px -32px; }
1001
+ .ui-icon-arrow-1-s { background-position: -64px -32px; }
1002
+ .ui-icon-arrow-1-sw { background-position: -80px -32px; }
1003
+ .ui-icon-arrow-1-w { background-position: -96px -32px; }
1004
+ .ui-icon-arrow-1-nw { background-position: -112px -32px; }
1005
+ .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
1006
+ .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
1007
+ .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
1008
+ .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
1009
+ .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
1010
+ .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
1011
+ .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
1012
+ .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
1013
+ .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
1014
+ .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
1015
+ .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
1016
+ .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
1017
+ .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
1018
+ .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
1019
+ .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
1020
+ .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
1021
+ .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
1022
+ .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
1023
+ .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
1024
+ .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
1025
+ .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
1026
+ .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
1027
+ .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
1028
+ .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
1029
+ .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
1030
+ .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
1031
+ .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
1032
+ .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
1033
+ .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
1034
+ .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
1035
+ .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
1036
+ .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
1037
+ .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
1038
+ .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
1039
+ .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
1040
+ .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
1041
+ .ui-icon-arrow-4 { background-position: 0 -80px; }
1042
+ .ui-icon-arrow-4-diag { background-position: -16px -80px; }
1043
+ .ui-icon-extlink { background-position: -32px -80px; }
1044
+ .ui-icon-newwin { background-position: -48px -80px; }
1045
+ .ui-icon-refresh { background-position: -64px -80px; }
1046
+ .ui-icon-shuffle { background-position: -80px -80px; }
1047
+ .ui-icon-transfer-e-w { background-position: -96px -80px; }
1048
+ .ui-icon-transferthick-e-w { background-position: -112px -80px; }
1049
+ .ui-icon-folder-collapsed { background-position: 0 -96px; }
1050
+ .ui-icon-folder-open { background-position: -16px -96px; }
1051
+ .ui-icon-document { background-position: -32px -96px; }
1052
+ .ui-icon-document-b { background-position: -48px -96px; }
1053
+ .ui-icon-note { background-position: -64px -96px; }
1054
+ .ui-icon-mail-closed { background-position: -80px -96px; }
1055
+ .ui-icon-mail-open { background-position: -96px -96px; }
1056
+ .ui-icon-suitcase { background-position: -112px -96px; }
1057
+ .ui-icon-comment { background-position: -128px -96px; }
1058
+ .ui-icon-person { background-position: -144px -96px; }
1059
+ .ui-icon-print { background-position: -160px -96px; }
1060
+ .ui-icon-trash { background-position: -176px -96px; }
1061
+ .ui-icon-locked { background-position: -192px -96px; }
1062
+ .ui-icon-unlocked { background-position: -208px -96px; }
1063
+ .ui-icon-bookmark { background-position: -224px -96px; }
1064
+ .ui-icon-tag { background-position: -240px -96px; }
1065
+ .ui-icon-home { background-position: 0 -112px; }
1066
+ .ui-icon-flag { background-position: -16px -112px; }
1067
+ .ui-icon-calendar { background-position: -32px -112px; }
1068
+ .ui-icon-cart { background-position: -48px -112px; }
1069
+ .ui-icon-pencil { background-position: -64px -112px; }
1070
+ .ui-icon-clock { background-position: -80px -112px; }
1071
+ .ui-icon-disk { background-position: -96px -112px; }
1072
+ .ui-icon-calculator { background-position: -112px -112px; }
1073
+ .ui-icon-zoomin { background-position: -128px -112px; }
1074
+ .ui-icon-zoomout { background-position: -144px -112px; }
1075
+ .ui-icon-search { background-position: -160px -112px; }
1076
+ .ui-icon-wrench { background-position: -176px -112px; }
1077
+ .ui-icon-gear { background-position: -192px -112px; }
1078
+ .ui-icon-heart { background-position: -208px -112px; }
1079
+ .ui-icon-star { background-position: -224px -112px; }
1080
+ .ui-icon-link { background-position: -240px -112px; }
1081
+ .ui-icon-cancel { background-position: 0 -128px; }
1082
+ .ui-icon-plus { background-position: -16px -128px; }
1083
+ .ui-icon-plusthick { background-position: -32px -128px; }
1084
+ .ui-icon-minus { background-position: -48px -128px; }
1085
+ .ui-icon-minusthick { background-position: -64px -128px; }
1086
+ .ui-icon-close { background-position: -80px -128px; }
1087
+ .ui-icon-closethick { background-position: -96px -128px; }
1088
+ .ui-icon-key { background-position: -112px -128px; }
1089
+ .ui-icon-lightbulb { background-position: -128px -128px; }
1090
+ .ui-icon-scissors { background-position: -144px -128px; }
1091
+ .ui-icon-clipboard { background-position: -160px -128px; }
1092
+ .ui-icon-copy { background-position: -176px -128px; }
1093
+ .ui-icon-contact { background-position: -192px -128px; }
1094
+ .ui-icon-image { background-position: -208px -128px; }
1095
+ .ui-icon-video { background-position: -224px -128px; }
1096
+ .ui-icon-script { background-position: -240px -128px; }
1097
+ .ui-icon-alert { background-position: 0 -144px; }
1098
+ .ui-icon-info { background-position: -16px -144px; }
1099
+ .ui-icon-notice { background-position: -32px -144px; }
1100
+ .ui-icon-help { background-position: -48px -144px; }
1101
+ .ui-icon-check { background-position: -64px -144px; }
1102
+ .ui-icon-bullet { background-position: -80px -144px; }
1103
+ .ui-icon-radio-on { background-position: -96px -144px; }
1104
+ .ui-icon-radio-off { background-position: -112px -144px; }
1105
+ .ui-icon-pin-w { background-position: -128px -144px; }
1106
+ .ui-icon-pin-s { background-position: -144px -144px; }
1107
+ .ui-icon-play { background-position: 0 -160px; }
1108
+ .ui-icon-pause { background-position: -16px -160px; }
1109
+ .ui-icon-seek-next { background-position: -32px -160px; }
1110
+ .ui-icon-seek-prev { background-position: -48px -160px; }
1111
+ .ui-icon-seek-end { background-position: -64px -160px; }
1112
+ .ui-icon-seek-start { background-position: -80px -160px; }
1113
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1114
+ .ui-icon-seek-first { background-position: -80px -160px; }
1115
+ .ui-icon-stop { background-position: -96px -160px; }
1116
+ .ui-icon-eject { background-position: -112px -160px; }
1117
+ .ui-icon-volume-off { background-position: -128px -160px; }
1118
+ .ui-icon-volume-on { background-position: -144px -160px; }
1119
+ .ui-icon-power { background-position: 0 -176px; }
1120
+ .ui-icon-signal-diag { background-position: -16px -176px; }
1121
+ .ui-icon-signal { background-position: -32px -176px; }
1122
+ .ui-icon-battery-0 { background-position: -48px -176px; }
1123
+ .ui-icon-battery-1 { background-position: -64px -176px; }
1124
+ .ui-icon-battery-2 { background-position: -80px -176px; }
1125
+ .ui-icon-battery-3 { background-position: -96px -176px; }
1126
+ .ui-icon-circle-plus { background-position: 0 -192px; }
1127
+ .ui-icon-circle-minus { background-position: -16px -192px; }
1128
+ .ui-icon-circle-close { background-position: -32px -192px; }
1129
+ .ui-icon-circle-triangle-e { background-position: -48px -192px; }
1130
+ .ui-icon-circle-triangle-s { background-position: -64px -192px; }
1131
+ .ui-icon-circle-triangle-w { background-position: -80px -192px; }
1132
+ .ui-icon-circle-triangle-n { background-position: -96px -192px; }
1133
+ .ui-icon-circle-arrow-e { background-position: -112px -192px; }
1134
+ .ui-icon-circle-arrow-s { background-position: -128px -192px; }
1135
+ .ui-icon-circle-arrow-w { background-position: -144px -192px; }
1136
+ .ui-icon-circle-arrow-n { background-position: -160px -192px; }
1137
+ .ui-icon-circle-zoomin { background-position: -176px -192px; }
1138
+ .ui-icon-circle-zoomout { background-position: -192px -192px; }
1139
+ .ui-icon-circle-check { background-position: -208px -192px; }
1140
+ .ui-icon-circlesmall-plus { background-position: 0 -208px; }
1141
+ .ui-icon-circlesmall-minus { background-position: -16px -208px; }
1142
+ .ui-icon-circlesmall-close { background-position: -32px -208px; }
1143
+ .ui-icon-squaresmall-plus { background-position: -48px -208px; }
1144
+ .ui-icon-squaresmall-minus { background-position: -64px -208px; }
1145
+ .ui-icon-squaresmall-close { background-position: -80px -208px; }
1146
+ .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
1147
+ .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
1148
+ .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
1149
+ .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
1150
+ .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
1151
+ .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
1152
+
1153
+
1154
+ /* Misc visuals
1155
+ ----------------------------------*/
1156
+
1157
+ /* Corner radius */
1158
+ .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; -khtml-border-top-left-radius: 5px; border-top-left-radius: 5px; }
1159
+ .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -khtml-border-top-right-radius: 5px; border-top-right-radius: 5px; }
1160
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
1161
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }
1162
+
1163
+ /* Overlays */
1164
+ .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); }
1165
+ .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }