compass-jquery-plugin 0.3.0.beta.19 → 0.3.0.beta.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,1534 +1,1539 @@
1
- /*
2
- * jQuery UI CSS Framework @VERSION
3
- *
4
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
5
- * Dual licensed under the MIT or GPL Version 2 licenses.
6
- * http://jquery.org/license
7
- *
8
- * http://docs.jquery.com/UI/Theming/API
9
- */
10
-
11
- /* Layout helpers
12
- ----------------------------------*/
13
- .ui-helper-hidden {
14
- display: none; }
15
-
16
- .ui-helper-hidden-accessible {
17
- position: absolute;
18
- left: -99999999px; }
19
-
20
- .ui-helper-reset {
21
- margin: 0;
22
- padding: 0;
23
- border: 0;
24
- outline: 0;
25
- line-height: 1.3;
26
- text-decoration: none;
27
- font-size: 100%;
28
- list-style: none; }
29
-
30
- .ui-helper-clearfix:after {
31
- content: ".";
32
- display: block;
33
- height: 0;
34
- clear: both;
35
- visibility: hidden; }
36
-
37
- .ui-helper-clearfix {
38
- display: inline-block; }
39
-
40
- /* required comment for clearfix to work in Opera \*/
41
- * html .ui-helper-clearfix {
42
- height: 1%; }
43
-
44
- .ui-helper-clearfix {
45
- display: block; }
46
-
47
- /* end clearfix */
48
- .ui-helper-zfix {
49
- width: 100%;
50
- height: 100%;
51
- top: 0;
52
- left: 0;
53
- position: absolute;
54
- opacity: 0;
55
- filter: Alpha(Opacity = 0); }
56
-
57
- /* Interaction Cues
58
- ----------------------------------*/
59
- .ui-state-disabled {
60
- cursor: default !important; }
61
-
62
- /* Icons
63
- ----------------------------------*/
64
-
65
- /* states and images */
66
- .ui-icon {
67
- display: block;
68
- text-indent: -99999px;
69
- overflow: hidden;
70
- background-repeat: no-repeat; }
71
-
72
- /* Misc visuals
73
- ----------------------------------*/
74
-
75
- /* Overlays */
76
- .ui-widget-overlay {
77
- position: absolute;
78
- top: 0;
79
- left: 0;
80
- width: 100%;
81
- height: 100%; }
82
-
83
-
84
- /*
85
- * jQuery UI Accordion @VERSION
86
- *
87
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
88
- * Dual licensed under the MIT or GPL Version 2 licenses.
89
- * http://jquery.org/license
90
- *
91
- * http://docs.jquery.com/UI/Accordion#theming
92
- */
93
- /* IE/Win - Fix animation bug - #4615 */
94
- .ui-accordion {
95
- width: 100%; }
96
-
97
- .ui-accordion .ui-accordion-header {
98
- cursor: pointer;
99
- position: relative;
100
- margin-top: 1px;
101
- zoom: 1; }
102
-
103
- .ui-accordion .ui-accordion-li-fix {
104
- display: inline; }
105
-
106
- .ui-accordion .ui-accordion-header-active {
107
- border-bottom: 0 !important; }
108
-
109
- .ui-accordion .ui-accordion-header a {
110
- display: block;
111
- font-size: 1em;
112
- padding: .5em .5em .5em .7em; }
113
-
114
- .ui-accordion-icons .ui-accordion-header a {
115
- padding-left: 2.2em; }
116
-
117
- .ui-accordion .ui-accordion-header .ui-icon {
118
- position: absolute;
119
- left: .5em;
120
- top: 50%;
121
- margin-top: -8px; }
122
-
123
- .ui-accordion .ui-accordion-content {
124
- padding: 1em 2.2em;
125
- border-top: 0;
126
- margin-top: -2px;
127
- position: relative;
128
- top: 1px;
129
- margin-bottom: 2px;
130
- overflow: auto;
131
- display: none;
132
- zoom: 1; }
133
-
134
- .ui-accordion .ui-accordion-content-active {
135
- display: block; }
136
-
137
-
138
- /*
139
- * jQuery UI Autocomplete @VERSION
140
- *
141
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
142
- * Dual licensed under the MIT or GPL Version 2 licenses.
143
- * http://jquery.org/license
144
- *
145
- * http://docs.jquery.com/UI/Autocomplete#theming
146
- */
147
- .ui-autocomplete {
148
- position: absolute;
149
- cursor: default; }
150
-
151
- /* workarounds */
152
- * html .ui-autocomplete {
153
- width: 1px; }
154
-
155
- /* without this, the menu expands to 100% in IE6 */
156
-
157
- /*
158
- * jQuery UI Menu @VERSION
159
- *
160
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
161
- * Dual licensed under the MIT or GPL Version 2 licenses.
162
- * http://jquery.org/license
163
- *
164
- * http://docs.jquery.com/UI/Menu#theming
165
- */
166
- .ui-menu {
167
- list-style: none;
168
- padding: 2px;
169
- margin: 0;
170
- display: block;
171
- float: left; }
172
-
173
- .ui-menu .ui-menu {
174
- margin-top: -3px; }
175
-
176
- .ui-menu .ui-menu-item {
177
- margin: 0;
178
- padding: 0;
179
- zoom: 1;
180
- float: left;
181
- clear: left;
182
- width: 100%; }
183
-
184
- .ui-menu .ui-menu-item a {
185
- text-decoration: none;
186
- display: block;
187
- padding: .2em .4em;
188
- line-height: 1.5;
189
- zoom: 1; }
190
-
191
- .ui-menu .ui-menu-item a.ui-state-hover,
192
- .ui-menu .ui-menu-item a.ui-state-active {
193
- font-weight: normal;
194
- margin: -1px; }
195
-
196
-
197
- /*
198
- * jQuery UI Button @VERSION
199
- *
200
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
201
- * Dual licensed under the MIT or GPL Version 2 licenses.
202
- * http://jquery.org/license
203
- *
204
- * http://docs.jquery.com/UI/Button#theming
205
- */
206
- .ui-button {
207
- display: inline-block;
208
- position: relative;
209
- padding: 0;
210
- margin-right: .1em;
211
- text-decoration: none !important;
212
- cursor: pointer;
213
- text-align: center;
214
- zoom: 1;
215
- overflow: visible; }
216
-
217
- /* the overflow property removes extra width in IE */
218
- .ui-button-icon-only {
219
- width: 2.2em; }
220
-
221
- /* to make room for the icon, a width needs to be set here */
222
- button.ui-button-icon-only {
223
- width: 2.4em; }
224
-
225
- /* button elements seem to need a little more width */
226
- .ui-button-icons-only {
227
- width: 3.4em; }
228
-
229
- button.ui-button-icons-only {
230
- width: 3.7em; }
231
-
232
- /*button text element */
233
- .ui-button .ui-button-text {
234
- display: block;
235
- line-height: 1.4; }
236
-
237
- .ui-button-text-only .ui-button-text {
238
- padding: .4em 1em; }
239
-
240
- .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
241
- padding: .4em;
242
- text-indent: -9999999px; }
243
-
244
- .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
245
- padding: .4em 1em .4em 2.1em; }
246
-
247
- .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
248
- padding: .4em 2.1em .4em 1em; }
249
-
250
- .ui-button-text-icons .ui-button-text {
251
- padding-left: 2.1em;
252
- padding-right: 2.1em; }
253
-
254
- /* no icon support for input elements, provide padding by default */
255
- input.ui-button {
256
- padding: .4em 1em; }
257
-
258
- /*button icon element(s) */
259
- .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 {
260
- position: absolute;
261
- top: 50%;
262
- margin-top: -8px; }
263
-
264
- .ui-button-icon-only .ui-icon {
265
- left: 50%;
266
- margin-left: -8px; }
267
-
268
- .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 {
269
- left: .5em; }
270
-
271
- .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 {
272
- right: .5em; }
273
-
274
- .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
275
- right: .5em; }
276
-
277
- /*button sets*/
278
- .ui-buttonset {
279
- margin-right: 7px; }
280
-
281
- .ui-buttonset .ui-button {
282
- margin-left: 0;
283
- margin-right: -0.3em; }
284
-
285
- /* workarounds */
286
- button.ui-button::-moz-focus-inner {
287
- border: 0;
288
- padding: 0; }
289
-
290
- /* reset extra padding in Firefox */
291
-
292
-
293
- /*
294
- * jQuery UI Datepicker @VERSION
295
- *
296
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
297
- * Dual licensed under the MIT or GPL Version 2 licenses.
298
- * http://jquery.org/license
299
- *
300
- * http://docs.jquery.com/UI/Datepicker#theming
301
- */
302
- .ui-datepicker {
303
- width: 17em;
304
- padding: .2em .2em 0; }
305
-
306
- .ui-datepicker .ui-datepicker-header {
307
- position: relative;
308
- padding: .2em 0; }
309
-
310
- .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
311
- position: absolute;
312
- top: 2px;
313
- width: 1.8em;
314
- height: 1.8em; }
315
-
316
- .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
317
- top: 1px; }
318
-
319
- .ui-datepicker .ui-datepicker-prev {
320
- left: 2px; }
321
-
322
- .ui-datepicker .ui-datepicker-next {
323
- right: 2px; }
324
-
325
- .ui-datepicker .ui-datepicker-prev-hover {
326
- left: 1px; }
327
-
328
- .ui-datepicker .ui-datepicker-next-hover {
329
- right: 1px; }
330
-
331
- .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
332
- display: block;
333
- position: absolute;
334
- left: 50%;
335
- margin-left: -8px;
336
- top: 50%;
337
- margin-top: -8px; }
338
-
339
- .ui-datepicker .ui-datepicker-title {
340
- margin: 0 2.3em;
341
- line-height: 1.8em;
342
- text-align: center; }
343
-
344
- .ui-datepicker .ui-datepicker-title select {
345
- font-size: 1em;
346
- margin: 1px 0; }
347
-
348
- .ui-datepicker select.ui-datepicker-month-year {
349
- width: 100%; }
350
-
351
- .ui-datepicker select.ui-datepicker-month,
352
- .ui-datepicker select.ui-datepicker-year {
353
- width: 49%; }
354
-
355
- .ui-datepicker table {
356
- width: 100%;
357
- font-size: .9em;
358
- border-collapse: collapse;
359
- margin: 0 0 .4em; }
360
-
361
- .ui-datepicker th {
362
- padding: .7em .3em;
363
- text-align: center;
364
- font-weight: bold;
365
- border: 0; }
366
-
367
- .ui-datepicker td {
368
- border: 0;
369
- padding: 1px; }
370
-
371
- .ui-datepicker td span, .ui-datepicker td a {
372
- display: block;
373
- padding: .2em;
374
- text-align: right;
375
- text-decoration: none; }
376
-
377
- .ui-datepicker .ui-datepicker-buttonpane {
378
- background-image: none;
379
- margin: .7em 0 0 0;
380
- padding: 0 .2em;
381
- border-left: 0;
382
- border-right: 0;
383
- border-bottom: 0; }
384
-
385
- .ui-datepicker .ui-datepicker-buttonpane button {
386
- float: right;
387
- margin: .5em .2em .4em;
388
- cursor: pointer;
389
- padding: .2em .6em .3em .6em;
390
- width: auto;
391
- overflow: visible; }
392
-
393
- .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
394
- float: left; }
395
-
396
- /* with multiple calendars */
397
- .ui-datepicker.ui-datepicker-multi {
398
- width: auto; }
399
-
400
- .ui-datepicker-multi .ui-datepicker-group {
401
- float: left; }
402
-
403
- .ui-datepicker-multi .ui-datepicker-group table {
404
- width: 95%;
405
- margin: 0 auto .4em; }
406
-
407
- .ui-datepicker-multi-2 .ui-datepicker-group {
408
- width: 50%; }
409
-
410
- .ui-datepicker-multi-3 .ui-datepicker-group {
411
- width: 33.3%; }
412
-
413
- .ui-datepicker-multi-4 .ui-datepicker-group {
414
- width: 25%; }
415
-
416
- .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
417
- border-left-width: 0; }
418
-
419
- .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
420
- border-left-width: 0; }
421
-
422
- .ui-datepicker-multi .ui-datepicker-buttonpane {
423
- clear: left; }
424
-
425
- .ui-datepicker-row-break {
426
- clear: both;
427
- width: 100%; }
428
-
429
- /* RTL support */
430
- .ui-datepicker-rtl {
431
- direction: rtl; }
432
-
433
- .ui-datepicker-rtl .ui-datepicker-prev {
434
- right: 2px;
435
- left: auto; }
436
-
437
- .ui-datepicker-rtl .ui-datepicker-next {
438
- left: 2px;
439
- right: auto; }
440
-
441
- .ui-datepicker-rtl .ui-datepicker-prev:hover {
442
- right: 1px;
443
- left: auto; }
444
-
445
- .ui-datepicker-rtl .ui-datepicker-next:hover {
446
- left: 1px;
447
- right: auto; }
448
-
449
- .ui-datepicker-rtl .ui-datepicker-buttonpane {
450
- clear: right; }
451
-
452
- .ui-datepicker-rtl .ui-datepicker-buttonpane button {
453
- float: left; }
454
-
455
- .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
456
- float: right; }
457
-
458
- .ui-datepicker-rtl .ui-datepicker-group {
459
- float: right; }
460
-
461
- .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
462
- border-right-width: 0;
463
- border-left-width: 1px; }
464
-
465
- .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
466
- border-right-width: 0;
467
- border-left-width: 1px; }
468
-
469
- /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
470
- .ui-datepicker-cover {
471
- display: none;
472
- /*sorry for IE5*/
473
- display/**/: block;
474
- /*sorry for IE5*/
475
- position: absolute;
476
- /*must have*/
477
- z-index: -1;
478
- /*must have*/
479
- filter: mask();
480
- /*must have*/
481
- top: -4px;
482
- /*must have*/
483
- left: -4px;
484
- /*must have*/
485
- width: 200px;
486
- /*must have*/
487
- height: 200px;
488
- /*must have*/ }
489
-
490
-
491
- /*
492
- * jQuery UI Dialog @VERSION
493
- *
494
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
495
- * Dual licensed under the MIT or GPL Version 2 licenses.
496
- * http://jquery.org/license
497
- *
498
- * http://docs.jquery.com/UI/Dialog#theming
499
- */
500
- .ui-dialog {
501
- position: absolute;
502
- padding: .2em;
503
- width: 300px;
504
- overflow: hidden; }
505
-
506
- .ui-dialog .ui-dialog-titlebar {
507
- padding: .5em 1em .3em;
508
- position: relative; }
509
-
510
- .ui-dialog .ui-dialog-title {
511
- float: left;
512
- margin: .1em 16px .2em 0; }
513
-
514
- .ui-dialog .ui-dialog-titlebar-close {
515
- position: absolute;
516
- right: .3em;
517
- top: 50%;
518
- width: 19px;
519
- margin: -10px 0 0 0;
520
- padding: 1px;
521
- height: 18px; }
522
-
523
- .ui-dialog .ui-dialog-titlebar-close span {
524
- display: block;
525
- margin: 1px; }
526
-
527
- .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
528
- padding: 0; }
529
-
530
- .ui-dialog .ui-dialog-content {
531
- position: relative;
532
- border: 0;
533
- padding: .5em 1em;
534
- background: none;
535
- overflow: auto;
536
- zoom: 1; }
537
-
538
- .ui-dialog .ui-dialog-buttonpane {
539
- text-align: left;
540
- border-width: 1px 0 0 0;
541
- background-image: none;
542
- margin: .5em 0 0 0;
543
- padding: .3em 1em .5em .4em; }
544
-
545
- .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
546
- float: right; }
547
-
548
- .ui-dialog .ui-dialog-buttonpane button {
549
- margin: .5em .4em .5em 0;
550
- cursor: pointer; }
551
-
552
- .ui-dialog .ui-resizable-se {
553
- width: 14px;
554
- height: 14px;
555
- right: 3px;
556
- bottom: 3px; }
557
-
558
- .ui-draggable .ui-dialog-titlebar {
559
- cursor: move; }
560
-
561
-
562
- /*
563
- * jQuery UI Progressbar @VERSION
564
- *
565
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
566
- * Dual licensed under the MIT or GPL Version 2 licenses.
567
- * http://jquery.org/license
568
- *
569
- * http://docs.jquery.com/UI/Progressbar#theming
570
- */
571
- .ui-progressbar {
572
- height: 2em;
573
- text-align: left; }
574
-
575
- .ui-progressbar .ui-progressbar-value {
576
- margin: -1px;
577
- height: 100%; }
578
-
579
-
580
- /*
581
- * jQuery UI Resizable @VERSION
582
- *
583
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
584
- * Dual licensed under the MIT or GPL Version 2 licenses.
585
- * http://jquery.org/license
586
- *
587
- * http://docs.jquery.com/UI/Resizable#theming
588
- */
589
- .ui-resizable {
590
- position: relative; }
591
-
592
- .ui-resizable-handle {
593
- position: absolute;
594
- font-size: 0.1px;
595
- z-index: 99999;
596
- display: block; }
597
-
598
- .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
599
- display: none; }
600
-
601
- .ui-resizable-n {
602
- cursor: n-resize;
603
- height: 7px;
604
- width: 100%;
605
- top: -5px;
606
- left: 0; }
607
-
608
- .ui-resizable-s {
609
- cursor: s-resize;
610
- height: 7px;
611
- width: 100%;
612
- bottom: -5px;
613
- left: 0; }
614
-
615
- .ui-resizable-e {
616
- cursor: e-resize;
617
- width: 7px;
618
- right: -5px;
619
- top: 0;
620
- height: 100%; }
621
-
622
- .ui-resizable-w {
623
- cursor: w-resize;
624
- width: 7px;
625
- left: -5px;
626
- top: 0;
627
- height: 100%; }
628
-
629
- .ui-resizable-se {
630
- cursor: se-resize;
631
- width: 12px;
632
- height: 12px;
633
- right: 1px;
634
- bottom: 1px; }
635
-
636
- .ui-resizable-sw {
637
- cursor: sw-resize;
638
- width: 9px;
639
- height: 9px;
640
- left: -5px;
641
- bottom: -5px; }
642
-
643
- .ui-resizable-nw {
644
- cursor: nw-resize;
645
- width: 9px;
646
- height: 9px;
647
- left: -5px;
648
- top: -5px; }
649
-
650
- .ui-resizable-ne {
651
- cursor: ne-resize;
652
- width: 9px;
653
- height: 9px;
654
- right: -5px;
655
- top: -5px; }
656
-
657
-
658
- /*
659
- * jQuery UI Selectable @VERSION
660
- *
661
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
662
- * Dual licensed under the MIT or GPL Version 2 licenses.
663
- * http://jquery.org/license
664
- *
665
- * http://docs.jquery.com/UI/Selectable#theming
666
- */
667
- .ui-selectable-helper {
668
- position: absolute;
669
- z-index: 100;
670
- border: 1px dotted black; }
671
-
672
-
673
- /*
674
- * jQuery UI Slider @VERSION
675
- *
676
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
677
- * Dual licensed under the MIT or GPL Version 2 licenses.
678
- * http://jquery.org/license
679
- *
680
- * http://docs.jquery.com/UI/Slider#theming
681
- */
682
- .ui-slider {
683
- position: relative;
684
- text-align: left; }
685
-
686
- .ui-slider .ui-slider-handle {
687
- position: absolute;
688
- z-index: 2;
689
- width: 1.2em;
690
- height: 1.2em;
691
- cursor: default; }
692
-
693
- .ui-slider .ui-slider-range {
694
- position: absolute;
695
- z-index: 1;
696
- font-size: .7em;
697
- display: block;
698
- border: 0;
699
- background-position: 0 0; }
700
-
701
- .ui-slider-horizontal {
702
- height: .8em; }
703
-
704
- .ui-slider-horizontal .ui-slider-handle {
705
- top: -0.3em;
706
- margin-left: -0.6em; }
707
-
708
- .ui-slider-horizontal .ui-slider-range {
709
- top: 0;
710
- height: 100%; }
711
-
712
- .ui-slider-horizontal .ui-slider-range-min {
713
- left: 0; }
714
-
715
- .ui-slider-horizontal .ui-slider-range-max {
716
- right: 0; }
717
-
718
- .ui-slider-vertical {
719
- width: .8em;
720
- height: 100px; }
721
-
722
- .ui-slider-vertical .ui-slider-handle {
723
- left: -0.3em;
724
- margin-left: 0;
725
- margin-bottom: -0.6em; }
726
-
727
- .ui-slider-vertical .ui-slider-range {
728
- left: 0;
729
- width: 100%; }
730
-
731
- .ui-slider-vertical .ui-slider-range-min {
732
- bottom: 0; }
733
-
734
- .ui-slider-vertical .ui-slider-range-max {
735
- top: 0; }
736
-
737
-
738
- /*
739
- * jQuery UI Tabs @VERSION
740
- *
741
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
742
- * Dual licensed under the MIT or GPL Version 2 licenses.
743
- * http://jquery.org/license
744
- *
745
- * http://docs.jquery.com/UI/Tabs#theming
746
- */
747
- .ui-tabs {
748
- position: relative;
749
- padding: .2em;
750
- zoom: 1; }
751
-
752
- /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
753
- .ui-tabs .ui-tabs-nav {
754
- margin: 0;
755
- padding: .2em .2em 0; }
756
-
757
- .ui-tabs .ui-tabs-nav li {
758
- list-style: none;
759
- float: left;
760
- position: relative;
761
- top: 1px;
762
- margin: 0 .2em 1px 0;
763
- border-bottom: 0 !important;
764
- padding: 0;
765
- white-space: nowrap; }
766
-
767
- .ui-tabs .ui-tabs-nav li a {
768
- float: left;
769
- padding: .5em 1em;
770
- text-decoration: none; }
771
-
772
- .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
773
- margin-bottom: 0;
774
- padding-bottom: 1px; }
775
-
776
- .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
777
- cursor: text; }
778
-
779
- .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
780
- cursor: pointer; }
781
-
782
- /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
783
- .ui-tabs .ui-tabs-panel {
784
- display: block;
785
- border-width: 0;
786
- padding: 1em 1.4em;
787
- background: none; }
788
-
789
- .ui-tabs .ui-tabs-hide {
790
- display: none !important; }
791
-
792
-
793
- /*
794
- * jQuery UI CSS Framework
795
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
796
- * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
797
- * To view and modify this theme, visit http://jqueryui.com/themeroller/
798
- */
799
-
800
- /* Component containers
801
- ----------------------------------*/
802
- .ui-widget {
803
- font-family: $ui_ffDefault;
804
- font-size: $ui_fsDefault; }
805
-
806
- .ui-widget .ui-widget {
807
- font-size: 1em; }
808
-
809
- .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
810
- font-family: $ui_ffDefault;
811
- font-size: 1em; }
812
-
813
- .ui-widget-content {
814
- border: 1px solid $ui_borderColorContent;
815
- background: $ui_bgColorContent $ui_bgImgUrlContent $ui_bgContentXPos $ui_bgContentYPos $ui_bgContentRepeat;
816
- color: $ui_fcContent; }
817
-
818
- .ui-widget-content a {
819
- color: $ui_fcContent; }
820
-
821
- .ui-widget-header {
822
- border: 1px solid $ui_borderColorHeader;
823
- background: $ui_bgColorHeader $ui_bgImgUrlHeader $ui_bgHeaderXPos $ui_bgHeaderYPos $ui_bgHeaderRepeat;
824
- color: $ui_fcHeader;
825
- font-weight: bold; }
826
-
827
- .ui-widget-header a {
828
- color: $ui_fcHeader; }
829
-
830
- /* Interaction states
831
- ----------------------------------*/
832
- .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
833
- border: 1px solid $ui_borderColorDefault;
834
- background: $ui_bgColorDefault $ui_bgImgUrlDefault $ui_bgDefaultXPos $ui_bgDefaultYPos $ui_bgDefaultRepeat;
835
- font-weight: $ui_fwDefault;
836
- color: $ui_fcDefault; }
837
-
838
- .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
839
- color: $ui_fcDefault;
840
- text-decoration: none; }
841
-
842
- .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 {
843
- border: 1px solid $ui_borderColorHover;
844
- background: $ui_bgColorHover $ui_bgImgUrlHover $ui_bgHoverXPos $ui_bgHoverYPos $ui_bgHoverRepeat;
845
- font-weight: $ui_fwDefault;
846
- color: $ui_fcHover; }
847
-
848
- .ui-state-hover a, .ui-state-hover a:hover {
849
- color: $ui_fcHover;
850
- text-decoration: none; }
851
-
852
- .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
853
- border: 1px solid $ui_borderColorActive;
854
- background: $ui_bgColorActive $ui_bgImgUrlActive $ui_bgActiveXPos $ui_bgActiveYPos $ui_bgActiveRepeat;
855
- font-weight: $ui_fwDefault;
856
- color: $ui_fcActive; }
857
-
858
- .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
859
- color: $ui_fcActive;
860
- text-decoration: none; }
861
-
862
- .ui-widget :active {
863
- outline: none; }
864
-
865
- /* Interaction Cues
866
- ----------------------------------*/
867
- .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
868
- border: 1px solid $ui_borderColorHighlight;
869
- background: $ui_bgColorHighlight $ui_bgImgUrlHighlight $ui_bgHighlightXPos $ui_bgHighlightYPos $ui_bgHighlightRepeat;
870
- color: $ui_fcHighlight; }
871
-
872
- .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a {
873
- color: $ui_fcHighlight; }
874
-
875
- .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
876
- border: 1px solid $ui_borderColorError;
877
- background: $ui_bgColorError $ui_bgImgUrlError $ui_bgErrorXPos $ui_bgErrorYPos $ui_bgErrorRepeat;
878
- color: $ui_fcError; }
879
-
880
- .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
881
- color: $ui_fcError; }
882
-
883
- .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
884
- color: $ui_fcError; }
885
-
886
- .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
887
- font-weight: bold; }
888
-
889
- .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
890
- opacity: .7;
891
- filter: Alpha(Opacity = 70);
892
- font-weight: normal; }
893
-
894
- .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
895
- opacity: .35;
896
- filter: Alpha(Opacity = 35);
897
- background-image: none; }
898
-
899
- /* Icons
900
- ----------------------------------*/
901
-
902
- /* states and images */
903
- .ui-icon {
904
- width: 16px;
905
- height: 16px;
906
- background-image: $ui_iconsContent; }
907
-
908
- .ui-widget-content .ui-icon {
909
- background-image: $ui_iconsContent; }
910
-
911
- .ui-widget-header .ui-icon {
912
- background-image: $ui_iconsHeader; }
913
-
914
- .ui-state-default .ui-icon {
915
- background-image: $ui_iconsDefault; }
916
-
917
- .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
918
- background-image: $ui_iconsHover; }
919
-
920
- .ui-state-active .ui-icon {
921
- background-image: $ui_iconsActive; }
922
-
923
- .ui-state-highlight .ui-icon {
924
- background-image: $ui_iconsHighlight; }
925
-
926
- .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
927
- background-image: $ui_iconsError; }
928
-
929
- /* positioning */
930
- .ui-icon-carat-1-n {
931
- background-position: 0 0; }
932
-
933
- .ui-icon-carat-1-ne {
934
- background-position: -16px 0; }
935
-
936
- .ui-icon-carat-1-e {
937
- background-position: -32px 0; }
938
-
939
- .ui-icon-carat-1-se {
940
- background-position: -48px 0; }
941
-
942
- .ui-icon-carat-1-s {
943
- background-position: -64px 0; }
944
-
945
- .ui-icon-carat-1-sw {
946
- background-position: -80px 0; }
947
-
948
- .ui-icon-carat-1-w {
949
- background-position: -96px 0; }
950
-
951
- .ui-icon-carat-1-nw {
952
- background-position: -112px 0; }
953
-
954
- .ui-icon-carat-2-n-s {
955
- background-position: -128px 0; }
956
-
957
- .ui-icon-carat-2-e-w {
958
- background-position: -144px 0; }
959
-
960
- .ui-icon-triangle-1-n {
961
- background-position: 0 -16px; }
962
-
963
- .ui-icon-triangle-1-ne {
964
- background-position: -16px -16px; }
965
-
966
- .ui-icon-triangle-1-e {
967
- background-position: -32px -16px; }
968
-
969
- .ui-icon-triangle-1-se {
970
- background-position: -48px -16px; }
971
-
972
- .ui-icon-triangle-1-s {
973
- background-position: -64px -16px; }
974
-
975
- .ui-icon-triangle-1-sw {
976
- background-position: -80px -16px; }
977
-
978
- .ui-icon-triangle-1-w {
979
- background-position: -96px -16px; }
980
-
981
- .ui-icon-triangle-1-nw {
982
- background-position: -112px -16px; }
983
-
984
- .ui-icon-triangle-2-n-s {
985
- background-position: -128px -16px; }
986
-
987
- .ui-icon-triangle-2-e-w {
988
- background-position: -144px -16px; }
989
-
990
- .ui-icon-arrow-1-n {
991
- background-position: 0 -32px; }
992
-
993
- .ui-icon-arrow-1-ne {
994
- background-position: -16px -32px; }
995
-
996
- .ui-icon-arrow-1-e {
997
- background-position: -32px -32px; }
998
-
999
- .ui-icon-arrow-1-se {
1000
- background-position: -48px -32px; }
1001
-
1002
- .ui-icon-arrow-1-s {
1003
- background-position: -64px -32px; }
1004
-
1005
- .ui-icon-arrow-1-sw {
1006
- background-position: -80px -32px; }
1007
-
1008
- .ui-icon-arrow-1-w {
1009
- background-position: -96px -32px; }
1010
-
1011
- .ui-icon-arrow-1-nw {
1012
- background-position: -112px -32px; }
1013
-
1014
- .ui-icon-arrow-2-n-s {
1015
- background-position: -128px -32px; }
1016
-
1017
- .ui-icon-arrow-2-ne-sw {
1018
- background-position: -144px -32px; }
1019
-
1020
- .ui-icon-arrow-2-e-w {
1021
- background-position: -160px -32px; }
1022
-
1023
- .ui-icon-arrow-2-se-nw {
1024
- background-position: -176px -32px; }
1025
-
1026
- .ui-icon-arrowstop-1-n {
1027
- background-position: -192px -32px; }
1028
-
1029
- .ui-icon-arrowstop-1-e {
1030
- background-position: -208px -32px; }
1031
-
1032
- .ui-icon-arrowstop-1-s {
1033
- background-position: -224px -32px; }
1034
-
1035
- .ui-icon-arrowstop-1-w {
1036
- background-position: -240px -32px; }
1037
-
1038
- .ui-icon-arrowthick-1-n {
1039
- background-position: 0 -48px; }
1040
-
1041
- .ui-icon-arrowthick-1-ne {
1042
- background-position: -16px -48px; }
1043
-
1044
- .ui-icon-arrowthick-1-e {
1045
- background-position: -32px -48px; }
1046
-
1047
- .ui-icon-arrowthick-1-se {
1048
- background-position: -48px -48px; }
1049
-
1050
- .ui-icon-arrowthick-1-s {
1051
- background-position: -64px -48px; }
1052
-
1053
- .ui-icon-arrowthick-1-sw {
1054
- background-position: -80px -48px; }
1055
-
1056
- .ui-icon-arrowthick-1-w {
1057
- background-position: -96px -48px; }
1058
-
1059
- .ui-icon-arrowthick-1-nw {
1060
- background-position: -112px -48px; }
1061
-
1062
- .ui-icon-arrowthick-2-n-s {
1063
- background-position: -128px -48px; }
1064
-
1065
- .ui-icon-arrowthick-2-ne-sw {
1066
- background-position: -144px -48px; }
1067
-
1068
- .ui-icon-arrowthick-2-e-w {
1069
- background-position: -160px -48px; }
1070
-
1071
- .ui-icon-arrowthick-2-se-nw {
1072
- background-position: -176px -48px; }
1073
-
1074
- .ui-icon-arrowthickstop-1-n {
1075
- background-position: -192px -48px; }
1076
-
1077
- .ui-icon-arrowthickstop-1-e {
1078
- background-position: -208px -48px; }
1079
-
1080
- .ui-icon-arrowthickstop-1-s {
1081
- background-position: -224px -48px; }
1082
-
1083
- .ui-icon-arrowthickstop-1-w {
1084
- background-position: -240px -48px; }
1085
-
1086
- .ui-icon-arrowreturnthick-1-w {
1087
- background-position: 0 -64px; }
1088
-
1089
- .ui-icon-arrowreturnthick-1-n {
1090
- background-position: -16px -64px; }
1091
-
1092
- .ui-icon-arrowreturnthick-1-e {
1093
- background-position: -32px -64px; }
1094
-
1095
- .ui-icon-arrowreturnthick-1-s {
1096
- background-position: -48px -64px; }
1097
-
1098
- .ui-icon-arrowreturn-1-w {
1099
- background-position: -64px -64px; }
1100
-
1101
- .ui-icon-arrowreturn-1-n {
1102
- background-position: -80px -64px; }
1103
-
1104
- .ui-icon-arrowreturn-1-e {
1105
- background-position: -96px -64px; }
1106
-
1107
- .ui-icon-arrowreturn-1-s {
1108
- background-position: -112px -64px; }
1109
-
1110
- .ui-icon-arrowrefresh-1-w {
1111
- background-position: -128px -64px; }
1112
-
1113
- .ui-icon-arrowrefresh-1-n {
1114
- background-position: -144px -64px; }
1115
-
1116
- .ui-icon-arrowrefresh-1-e {
1117
- background-position: -160px -64px; }
1118
-
1119
- .ui-icon-arrowrefresh-1-s {
1120
- background-position: -176px -64px; }
1121
-
1122
- .ui-icon-arrow-4 {
1123
- background-position: 0 -80px; }
1124
-
1125
- .ui-icon-arrow-4-diag {
1126
- background-position: -16px -80px; }
1127
-
1128
- .ui-icon-extlink {
1129
- background-position: -32px -80px; }
1130
-
1131
- .ui-icon-newwin {
1132
- background-position: -48px -80px; }
1133
-
1134
- .ui-icon-refresh {
1135
- background-position: -64px -80px; }
1136
-
1137
- .ui-icon-shuffle {
1138
- background-position: -80px -80px; }
1139
-
1140
- .ui-icon-transfer-e-w {
1141
- background-position: -96px -80px; }
1142
-
1143
- .ui-icon-transferthick-e-w {
1144
- background-position: -112px -80px; }
1145
-
1146
- .ui-icon-folder-collapsed {
1147
- background-position: 0 -96px; }
1148
-
1149
- .ui-icon-folder-open {
1150
- background-position: -16px -96px; }
1151
-
1152
- .ui-icon-document {
1153
- background-position: -32px -96px; }
1154
-
1155
- .ui-icon-document-b {
1156
- background-position: -48px -96px; }
1157
-
1158
- .ui-icon-note {
1159
- background-position: -64px -96px; }
1160
-
1161
- .ui-icon-mail-closed {
1162
- background-position: -80px -96px; }
1163
-
1164
- .ui-icon-mail-open {
1165
- background-position: -96px -96px; }
1166
-
1167
- .ui-icon-suitcase {
1168
- background-position: -112px -96px; }
1169
-
1170
- .ui-icon-comment {
1171
- background-position: -128px -96px; }
1172
-
1173
- .ui-icon-person {
1174
- background-position: -144px -96px; }
1175
-
1176
- .ui-icon-print {
1177
- background-position: -160px -96px; }
1178
-
1179
- .ui-icon-trash {
1180
- background-position: -176px -96px; }
1181
-
1182
- .ui-icon-locked {
1183
- background-position: -192px -96px; }
1184
-
1185
- .ui-icon-unlocked {
1186
- background-position: -208px -96px; }
1187
-
1188
- .ui-icon-bookmark {
1189
- background-position: -224px -96px; }
1190
-
1191
- .ui-icon-tag {
1192
- background-position: -240px -96px; }
1193
-
1194
- .ui-icon-home {
1195
- background-position: 0 -112px; }
1196
-
1197
- .ui-icon-flag {
1198
- background-position: -16px -112px; }
1199
-
1200
- .ui-icon-calendar {
1201
- background-position: -32px -112px; }
1202
-
1203
- .ui-icon-cart {
1204
- background-position: -48px -112px; }
1205
-
1206
- .ui-icon-pencil {
1207
- background-position: -64px -112px; }
1208
-
1209
- .ui-icon-clock {
1210
- background-position: -80px -112px; }
1211
-
1212
- .ui-icon-disk {
1213
- background-position: -96px -112px; }
1214
-
1215
- .ui-icon-calculator {
1216
- background-position: -112px -112px; }
1217
-
1218
- .ui-icon-zoomin {
1219
- background-position: -128px -112px; }
1220
-
1221
- .ui-icon-zoomout {
1222
- background-position: -144px -112px; }
1223
-
1224
- .ui-icon-search {
1225
- background-position: -160px -112px; }
1226
-
1227
- .ui-icon-wrench {
1228
- background-position: -176px -112px; }
1229
-
1230
- .ui-icon-gear {
1231
- background-position: -192px -112px; }
1232
-
1233
- .ui-icon-heart {
1234
- background-position: -208px -112px; }
1235
-
1236
- .ui-icon-star {
1237
- background-position: -224px -112px; }
1238
-
1239
- .ui-icon-link {
1240
- background-position: -240px -112px; }
1241
-
1242
- .ui-icon-cancel {
1243
- background-position: 0 -128px; }
1244
-
1245
- .ui-icon-plus {
1246
- background-position: -16px -128px; }
1247
-
1248
- .ui-icon-plusthick {
1249
- background-position: -32px -128px; }
1250
-
1251
- .ui-icon-minus {
1252
- background-position: -48px -128px; }
1253
-
1254
- .ui-icon-minusthick {
1255
- background-position: -64px -128px; }
1256
-
1257
- .ui-icon-close {
1258
- background-position: -80px -128px; }
1259
-
1260
- .ui-icon-closethick {
1261
- background-position: -96px -128px; }
1262
-
1263
- .ui-icon-key {
1264
- background-position: -112px -128px; }
1265
-
1266
- .ui-icon-lightbulb {
1267
- background-position: -128px -128px; }
1268
-
1269
- .ui-icon-scissors {
1270
- background-position: -144px -128px; }
1271
-
1272
- .ui-icon-clipboard {
1273
- background-position: -160px -128px; }
1274
-
1275
- .ui-icon-copy {
1276
- background-position: -176px -128px; }
1277
-
1278
- .ui-icon-contact {
1279
- background-position: -192px -128px; }
1280
-
1281
- .ui-icon-image {
1282
- background-position: -208px -128px; }
1283
-
1284
- .ui-icon-video {
1285
- background-position: -224px -128px; }
1286
-
1287
- .ui-icon-script {
1288
- background-position: -240px -128px; }
1289
-
1290
- .ui-icon-alert {
1291
- background-position: 0 -144px; }
1292
-
1293
- .ui-icon-info {
1294
- background-position: -16px -144px; }
1295
-
1296
- .ui-icon-notice {
1297
- background-position: -32px -144px; }
1298
-
1299
- .ui-icon-help {
1300
- background-position: -48px -144px; }
1301
-
1302
- .ui-icon-check {
1303
- background-position: -64px -144px; }
1304
-
1305
- .ui-icon-bullet {
1306
- background-position: -80px -144px; }
1307
-
1308
- .ui-icon-radio-off {
1309
- background-position: -96px -144px; }
1310
-
1311
- .ui-icon-radio-on {
1312
- background-position: -112px -144px; }
1313
-
1314
- .ui-icon-pin-w {
1315
- background-position: -128px -144px; }
1316
-
1317
- .ui-icon-pin-s {
1318
- background-position: -144px -144px; }
1319
-
1320
- .ui-icon-play {
1321
- background-position: 0 -160px; }
1322
-
1323
- .ui-icon-pause {
1324
- background-position: -16px -160px; }
1325
-
1326
- .ui-icon-seek-next {
1327
- background-position: -32px -160px; }
1328
-
1329
- .ui-icon-seek-prev {
1330
- background-position: -48px -160px; }
1331
-
1332
- .ui-icon-seek-end {
1333
- background-position: -64px -160px; }
1334
-
1335
- .ui-icon-seek-start {
1336
- background-position: -80px -160px; }
1337
-
1338
- /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1339
- .ui-icon-seek-first {
1340
- background-position: -80px -160px; }
1341
-
1342
- .ui-icon-stop {
1343
- background-position: -96px -160px; }
1344
-
1345
- .ui-icon-eject {
1346
- background-position: -112px -160px; }
1347
-
1348
- .ui-icon-volume-off {
1349
- background-position: -128px -160px; }
1350
-
1351
- .ui-icon-volume-on {
1352
- background-position: -144px -160px; }
1353
-
1354
- .ui-icon-power {
1355
- background-position: 0 -176px; }
1356
-
1357
- .ui-icon-signal-diag {
1358
- background-position: -16px -176px; }
1359
-
1360
- .ui-icon-signal {
1361
- background-position: -32px -176px; }
1362
-
1363
- .ui-icon-battery-0 {
1364
- background-position: -48px -176px; }
1365
-
1366
- .ui-icon-battery-1 {
1367
- background-position: -64px -176px; }
1368
-
1369
- .ui-icon-battery-2 {
1370
- background-position: -80px -176px; }
1371
-
1372
- .ui-icon-battery-3 {
1373
- background-position: -96px -176px; }
1374
-
1375
- .ui-icon-circle-plus {
1376
- background-position: 0 -192px; }
1377
-
1378
- .ui-icon-circle-minus {
1379
- background-position: -16px -192px; }
1380
-
1381
- .ui-icon-circle-close {
1382
- background-position: -32px -192px; }
1383
-
1384
- .ui-icon-circle-triangle-e {
1385
- background-position: -48px -192px; }
1386
-
1387
- .ui-icon-circle-triangle-s {
1388
- background-position: -64px -192px; }
1389
-
1390
- .ui-icon-circle-triangle-w {
1391
- background-position: -80px -192px; }
1392
-
1393
- .ui-icon-circle-triangle-n {
1394
- background-position: -96px -192px; }
1395
-
1396
- .ui-icon-circle-arrow-e {
1397
- background-position: -112px -192px; }
1398
-
1399
- .ui-icon-circle-arrow-s {
1400
- background-position: -128px -192px; }
1401
-
1402
- .ui-icon-circle-arrow-w {
1403
- background-position: -144px -192px; }
1404
-
1405
- .ui-icon-circle-arrow-n {
1406
- background-position: -160px -192px; }
1407
-
1408
- .ui-icon-circle-zoomin {
1409
- background-position: -176px -192px; }
1410
-
1411
- .ui-icon-circle-zoomout {
1412
- background-position: -192px -192px; }
1413
-
1414
- .ui-icon-circle-check {
1415
- background-position: -208px -192px; }
1416
-
1417
- .ui-icon-circlesmall-plus {
1418
- background-position: 0 -208px; }
1419
-
1420
- .ui-icon-circlesmall-minus {
1421
- background-position: -16px -208px; }
1422
-
1423
- .ui-icon-circlesmall-close {
1424
- background-position: -32px -208px; }
1425
-
1426
- .ui-icon-squaresmall-plus {
1427
- background-position: -48px -208px; }
1428
-
1429
- .ui-icon-squaresmall-minus {
1430
- background-position: -64px -208px; }
1431
-
1432
- .ui-icon-squaresmall-close {
1433
- background-position: -80px -208px; }
1434
-
1435
- .ui-icon-grip-dotted-vertical {
1436
- background-position: 0 -224px; }
1437
-
1438
- .ui-icon-grip-dotted-horizontal {
1439
- background-position: -16px -224px; }
1440
-
1441
- .ui-icon-grip-solid-vertical {
1442
- background-position: -32px -224px; }
1443
-
1444
- .ui-icon-grip-solid-horizontal {
1445
- background-position: -48px -224px; }
1446
-
1447
- .ui-icon-gripsmall-diagonal-se {
1448
- background-position: -64px -224px; }
1449
-
1450
- .ui-icon-grip-diagonal-se {
1451
- background-position: -80px -224px; }
1452
-
1453
- /* Misc visuals
1454
- ----------------------------------*/
1455
-
1456
- /* Corner radius */
1457
- .ui-corner-tl {
1458
- -moz-border-radius-topleft: $ui_cornerRadius;
1459
- -webkit-border-top-left-radius: $ui_cornerRadius;
1460
- border-top-left-radius: $ui_cornerRadius; }
1461
-
1462
- .ui-corner-tr {
1463
- -moz-border-radius-topright: $ui_cornerRadius;
1464
- -webkit-border-top-right-radius: $ui_cornerRadius;
1465
- border-top-right-radius: $ui_cornerRadius; }
1466
-
1467
- .ui-corner-bl {
1468
- -moz-border-radius-bottomleft: $ui_cornerRadius;
1469
- -webkit-border-bottom-left-radius: $ui_cornerRadius;
1470
- border-bottom-left-radius: $ui_cornerRadius; }
1471
-
1472
- .ui-corner-br {
1473
- -moz-border-radius-bottomright: $ui_cornerRadius;
1474
- -webkit-border-bottom-right-radius: $ui_cornerRadius;
1475
- border-bottom-right-radius: $ui_cornerRadius; }
1476
-
1477
- .ui-corner-top {
1478
- -moz-border-radius-topleft: $ui_cornerRadius;
1479
- -webkit-border-top-left-radius: $ui_cornerRadius;
1480
- border-top-left-radius: $ui_cornerRadius;
1481
- -moz-border-radius-topright: $ui_cornerRadius;
1482
- -webkit-border-top-right-radius: $ui_cornerRadius;
1483
- border-top-right-radius: $ui_cornerRadius; }
1484
-
1485
- .ui-corner-bottom {
1486
- -moz-border-radius-bottomleft: $ui_cornerRadius;
1487
- -webkit-border-bottom-left-radius: $ui_cornerRadius;
1488
- border-bottom-left-radius: $ui_cornerRadius;
1489
- -moz-border-radius-bottomright: $ui_cornerRadius;
1490
- -webkit-border-bottom-right-radius: $ui_cornerRadius;
1491
- border-bottom-right-radius: $ui_cornerRadius; }
1492
-
1493
- .ui-corner-right {
1494
- -moz-border-radius-topright: $ui_cornerRadius;
1495
- -webkit-border-top-right-radius: $ui_cornerRadius;
1496
- border-top-right-radius: $ui_cornerRadius;
1497
- -moz-border-radius-bottomright: $ui_cornerRadius;
1498
- -webkit-border-bottom-right-radius: $ui_cornerRadius;
1499
- border-bottom-right-radius: $ui_cornerRadius; }
1500
-
1501
- .ui-corner-left {
1502
- -moz-border-radius-topleft: $ui_cornerRadius;
1503
- -webkit-border-top-left-radius: $ui_cornerRadius;
1504
- border-top-left-radius: $ui_cornerRadius;
1505
- -moz-border-radius-bottomleft: $ui_cornerRadius;
1506
- -webkit-border-bottom-left-radius: $ui_cornerRadius;
1507
- border-bottom-left-radius: $ui_cornerRadius; }
1508
-
1509
- .ui-corner-all {
1510
- -moz-border-radius: $ui_cornerRadius;
1511
- -webkit-border-radius: $ui_cornerRadius;
1512
- border-radius: $ui_cornerRadius; }
1513
-
1514
- /* Overlays */
1515
- .ui-widget-overlay {
1516
- background: $ui_bgColorOverlay $ui_bgImgUrlOverlay $ui_bgOverlayXPos $ui_bgOverlayYPos $ui_bgOverlayRepeat;
1517
- opacity: $ui_bgOverlayOpacity;
1518
- filter: $ui_bgOverlayFilter; }
1519
-
1520
- .ui-widget-shadow {
1521
- margin: $ui_offsetTopShadow 0 0 $ui_offsetLeftShadow;
1522
- padding: $ui_thicknessShadow;
1523
- background: $ui_bgColorShadow $ui_bgImgUrlShadow $ui_bgShadowXPos $ui_bgShadowYPos $ui_bgShadowRepeat;
1524
- opacity: $ui_bgShadowOpacity;
1525
- filter: $ui_bgShadowFilter;
1526
- -moz-border-radius: $ui_cornerRadiusShadow;
1527
- -webkit-border-radius: $ui_cornerRadiusShadow;
1528
- border-radius: $ui_cornerRadiusShadow; }
1529
-
1530
- /* Fix Autocomplete */
1531
-
1532
- .ui-autocomplete-loading {
1533
- background: $ui_bgColorLoading $ui_bgImgUrlLoading $ui_bgLoadingXPos $ui_bgLoadingYPos $ui_bgLoadingRepeat; }
1534
- // Generated by compass-jquery-plugin/gem-tasks/jrailsxx.rake
1
+ /*
2
+ * jQuery UI CSS Framework @VERSION
3
+ *
4
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
5
+ * Dual licensed under the MIT or GPL Version 2 licenses.
6
+ * http://jquery.org/license
7
+ *
8
+ * http://docs.jquery.com/UI/Theming/API
9
+ */
10
+
11
+ /* Layout helpers
12
+ ----------------------------------*/
13
+ .ui-helper-hidden {
14
+ display: none; }
15
+
16
+ .ui-helper-hidden-accessible {
17
+ position: absolute;
18
+ left: -99999999px; }
19
+
20
+ .ui-helper-reset {
21
+ margin: 0;
22
+ padding: 0;
23
+ border: 0;
24
+ outline: 0;
25
+ line-height: 1.3;
26
+ text-decoration: none;
27
+ font-size: 100%;
28
+ list-style: none; }
29
+
30
+ .ui-helper-clearfix:after {
31
+ content: ".";
32
+ display: block;
33
+ height: 0;
34
+ clear: both;
35
+ visibility: hidden; }
36
+
37
+ .ui-helper-clearfix {
38
+ display: inline-block; }
39
+
40
+ /* required comment for clearfix to work in Opera \*/
41
+ * html .ui-helper-clearfix {
42
+ height: 1%; }
43
+
44
+ .ui-helper-clearfix {
45
+ display: block; }
46
+
47
+ /* end clearfix */
48
+ .ui-helper-zfix {
49
+ width: 100%;
50
+ height: 100%;
51
+ top: 0;
52
+ left: 0;
53
+ position: absolute;
54
+ opacity: 0;
55
+ filter: Alpha(Opacity = 0); }
56
+
57
+ /* Interaction Cues
58
+ ----------------------------------*/
59
+ .ui-state-disabled {
60
+ cursor: default !important; }
61
+
62
+ /* Icons
63
+ ----------------------------------*/
64
+
65
+ /* states and images */
66
+ .ui-icon {
67
+ display: block;
68
+ text-indent: -99999px;
69
+ overflow: hidden;
70
+ background-repeat: no-repeat; }
71
+
72
+ /* Misc visuals
73
+ ----------------------------------*/
74
+
75
+ /* Overlays */
76
+ .ui-widget-overlay {
77
+ position: absolute;
78
+ top: 0;
79
+ left: 0;
80
+ width: 100%;
81
+ height: 100%; }
82
+
83
+
84
+ /*
85
+ * jQuery UI Accordion @VERSION
86
+ *
87
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
88
+ * Dual licensed under the MIT or GPL Version 2 licenses.
89
+ * http://jquery.org/license
90
+ *
91
+ * http://docs.jquery.com/UI/Accordion#theming
92
+ */
93
+ /* IE/Win - Fix animation bug - #4615 */
94
+ .ui-accordion {
95
+ width: 100%; }
96
+
97
+ .ui-accordion .ui-accordion-header {
98
+ cursor: pointer;
99
+ position: relative;
100
+ margin-top: 1px;
101
+ zoom: 1; }
102
+
103
+ .ui-accordion .ui-accordion-li-fix {
104
+ display: inline; }
105
+
106
+ .ui-accordion .ui-accordion-header-active {
107
+ border-bottom: 0 !important; }
108
+
109
+ .ui-accordion .ui-accordion-header a {
110
+ display: block;
111
+ font-size: 1em;
112
+ padding: .5em .5em .5em .7em; }
113
+
114
+ .ui-accordion-icons .ui-accordion-header a {
115
+ padding-left: 2.2em; }
116
+
117
+ .ui-accordion .ui-accordion-header .ui-icon {
118
+ position: absolute;
119
+ left: .5em;
120
+ top: 50%;
121
+ margin-top: -8px; }
122
+
123
+ .ui-accordion .ui-accordion-content {
124
+ padding: 1em 2.2em;
125
+ border-top: 0;
126
+ margin-top: -2px;
127
+ position: relative;
128
+ top: 1px;
129
+ margin-bottom: 2px;
130
+ overflow: auto;
131
+ display: none;
132
+ zoom: 1; }
133
+
134
+ .ui-accordion .ui-accordion-content-active {
135
+ display: block; }
136
+
137
+
138
+ /*
139
+ * jQuery UI Autocomplete @VERSION
140
+ *
141
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
142
+ * Dual licensed under the MIT or GPL Version 2 licenses.
143
+ * http://jquery.org/license
144
+ *
145
+ * http://docs.jquery.com/UI/Autocomplete#theming
146
+ */
147
+ .ui-autocomplete {
148
+ position: absolute;
149
+ cursor: default; }
150
+
151
+ /* workarounds */
152
+ * html .ui-autocomplete {
153
+ width: 1px; }
154
+
155
+ /* without this, the menu expands to 100% in IE6 */
156
+
157
+ /*
158
+ * jQuery UI Menu @VERSION
159
+ *
160
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
161
+ * Dual licensed under the MIT or GPL Version 2 licenses.
162
+ * http://jquery.org/license
163
+ *
164
+ * http://docs.jquery.com/UI/Menu#theming
165
+ */
166
+ .ui-menu {
167
+ list-style: none;
168
+ padding: 2px;
169
+ margin: 0;
170
+ display: block;
171
+ float: left; }
172
+
173
+ .ui-menu .ui-menu {
174
+ margin-top: -3px; }
175
+
176
+ .ui-menu .ui-menu-item {
177
+ margin: 0;
178
+ padding: 0;
179
+ zoom: 1;
180
+ float: left;
181
+ clear: left;
182
+ width: 100%; }
183
+
184
+ .ui-menu .ui-menu-item a {
185
+ text-decoration: none;
186
+ display: block;
187
+ padding: .2em .4em;
188
+ line-height: 1.5;
189
+ zoom: 1; }
190
+
191
+ .ui-menu .ui-menu-item a.ui-state-hover,
192
+ .ui-menu .ui-menu-item a.ui-state-active {
193
+ font-weight: normal;
194
+ margin: -1px; }
195
+
196
+
197
+ /*
198
+ * jQuery UI Button @VERSION
199
+ *
200
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
201
+ * Dual licensed under the MIT or GPL Version 2 licenses.
202
+ * http://jquery.org/license
203
+ *
204
+ * http://docs.jquery.com/UI/Button#theming
205
+ */
206
+ .ui-button {
207
+ display: inline-block;
208
+ position: relative;
209
+ padding: 0;
210
+ margin-right: .1em;
211
+ text-decoration: none !important;
212
+ cursor: pointer;
213
+ text-align: center;
214
+ zoom: 1;
215
+ overflow: visible; }
216
+
217
+ /* the overflow property removes extra width in IE */
218
+ .ui-button-icon-only {
219
+ width: 2.2em; }
220
+
221
+ /* to make room for the icon, a width needs to be set here */
222
+ button.ui-button-icon-only {
223
+ width: 2.4em; }
224
+
225
+ /* button elements seem to need a little more width */
226
+ .ui-button-icons-only {
227
+ width: 3.4em; }
228
+
229
+ button.ui-button-icons-only {
230
+ width: 3.7em; }
231
+
232
+ /*button text element */
233
+ .ui-button .ui-button-text {
234
+ display: block;
235
+ line-height: 1.4; }
236
+
237
+ .ui-button-text-only .ui-button-text {
238
+ padding: .4em 1em; }
239
+
240
+ .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
241
+ padding: .4em;
242
+ text-indent: -9999999px; }
243
+
244
+ .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
245
+ padding: .4em 1em .4em 2.1em; }
246
+
247
+ .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
248
+ padding: .4em 2.1em .4em 1em; }
249
+
250
+ .ui-button-text-icons .ui-button-text {
251
+ padding-left: 2.1em;
252
+ padding-right: 2.1em; }
253
+
254
+ /* no icon support for input elements, provide padding by default */
255
+ input.ui-button {
256
+ padding: .4em 1em; }
257
+
258
+ /*button icon element(s) */
259
+ .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 {
260
+ position: absolute;
261
+ top: 50%;
262
+ margin-top: -8px; }
263
+
264
+ .ui-button-icon-only .ui-icon {
265
+ left: 50%;
266
+ margin-left: -8px; }
267
+
268
+ .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 {
269
+ left: .5em; }
270
+
271
+ .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 {
272
+ right: .5em; }
273
+
274
+ .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
275
+ right: .5em; }
276
+
277
+ /*button sets*/
278
+ .ui-buttonset {
279
+ margin-right: 7px; }
280
+
281
+ .ui-buttonset .ui-button {
282
+ margin-left: 0;
283
+ margin-right: -0.3em; }
284
+
285
+ /* workarounds */
286
+ button.ui-button::-moz-focus-inner {
287
+ border: 0;
288
+ padding: 0; }
289
+
290
+ /* reset extra padding in Firefox */
291
+
292
+
293
+ /*
294
+ * jQuery UI Datepicker @VERSION
295
+ *
296
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
297
+ * Dual licensed under the MIT or GPL Version 2 licenses.
298
+ * http://jquery.org/license
299
+ *
300
+ * http://docs.jquery.com/UI/Datepicker#theming
301
+ */
302
+ .ui-datepicker {
303
+ width: 17em;
304
+ padding: .2em .2em 0; }
305
+
306
+ .ui-datepicker .ui-datepicker-header {
307
+ position: relative;
308
+ padding: .2em 0; }
309
+
310
+ .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
311
+ position: absolute;
312
+ top: 2px;
313
+ width: 1.8em;
314
+ height: 1.8em; }
315
+
316
+ .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
317
+ top: 1px; }
318
+
319
+ .ui-datepicker .ui-datepicker-prev {
320
+ left: 2px; }
321
+
322
+ .ui-datepicker .ui-datepicker-next {
323
+ right: 2px; }
324
+
325
+ .ui-datepicker .ui-datepicker-prev-hover {
326
+ left: 1px; }
327
+
328
+ .ui-datepicker .ui-datepicker-next-hover {
329
+ right: 1px; }
330
+
331
+ .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
332
+ display: block;
333
+ position: absolute;
334
+ left: 50%;
335
+ margin-left: -8px;
336
+ top: 50%;
337
+ margin-top: -8px; }
338
+
339
+ .ui-datepicker .ui-datepicker-title {
340
+ margin: 0 2.3em;
341
+ line-height: 1.8em;
342
+ text-align: center; }
343
+
344
+ .ui-datepicker .ui-datepicker-title select {
345
+ font-size: 1em;
346
+ margin: 1px 0; }
347
+
348
+ .ui-datepicker select.ui-datepicker-month-year {
349
+ width: 100%; }
350
+
351
+ .ui-datepicker select.ui-datepicker-month,
352
+ .ui-datepicker select.ui-datepicker-year {
353
+ width: 49%; }
354
+
355
+ .ui-datepicker table {
356
+ width: 100%;
357
+ font-size: .9em;
358
+ border-collapse: collapse;
359
+ margin: 0 0 .4em; }
360
+
361
+ .ui-datepicker th {
362
+ padding: .7em .3em;
363
+ text-align: center;
364
+ font-weight: bold;
365
+ border: 0; }
366
+
367
+ .ui-datepicker td {
368
+ border: 0;
369
+ padding: 1px; }
370
+
371
+ .ui-datepicker td span, .ui-datepicker td a {
372
+ display: block;
373
+ padding: .2em;
374
+ text-align: right;
375
+ text-decoration: none; }
376
+
377
+ .ui-datepicker .ui-datepicker-buttonpane {
378
+ background-image: none;
379
+ margin: .7em 0 0 0;
380
+ padding: 0 .2em;
381
+ border-left: 0;
382
+ border-right: 0;
383
+ border-bottom: 0; }
384
+
385
+ .ui-datepicker .ui-datepicker-buttonpane button {
386
+ float: right;
387
+ margin: .5em .2em .4em;
388
+ cursor: pointer;
389
+ padding: .2em .6em .3em .6em;
390
+ width: auto;
391
+ overflow: visible; }
392
+
393
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
394
+ float: left; }
395
+
396
+ /* with multiple calendars */
397
+ .ui-datepicker.ui-datepicker-multi {
398
+ width: auto; }
399
+
400
+ .ui-datepicker-multi .ui-datepicker-group {
401
+ float: left; }
402
+
403
+ .ui-datepicker-multi .ui-datepicker-group table {
404
+ width: 95%;
405
+ margin: 0 auto .4em; }
406
+
407
+ .ui-datepicker-multi-2 .ui-datepicker-group {
408
+ width: 50%; }
409
+
410
+ .ui-datepicker-multi-3 .ui-datepicker-group {
411
+ width: 33.3%; }
412
+
413
+ .ui-datepicker-multi-4 .ui-datepicker-group {
414
+ width: 25%; }
415
+
416
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
417
+ border-left-width: 0; }
418
+
419
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
420
+ border-left-width: 0; }
421
+
422
+ .ui-datepicker-multi .ui-datepicker-buttonpane {
423
+ clear: left; }
424
+
425
+ .ui-datepicker-row-break {
426
+ clear: both;
427
+ width: 100%; }
428
+
429
+ /* RTL support */
430
+ .ui-datepicker-rtl {
431
+ direction: rtl; }
432
+
433
+ .ui-datepicker-rtl .ui-datepicker-prev {
434
+ right: 2px;
435
+ left: auto; }
436
+
437
+ .ui-datepicker-rtl .ui-datepicker-next {
438
+ left: 2px;
439
+ right: auto; }
440
+
441
+ .ui-datepicker-rtl .ui-datepicker-prev:hover {
442
+ right: 1px;
443
+ left: auto; }
444
+
445
+ .ui-datepicker-rtl .ui-datepicker-next:hover {
446
+ left: 1px;
447
+ right: auto; }
448
+
449
+ .ui-datepicker-rtl .ui-datepicker-buttonpane {
450
+ clear: right; }
451
+
452
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button {
453
+ float: left; }
454
+
455
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
456
+ float: right; }
457
+
458
+ .ui-datepicker-rtl .ui-datepicker-group {
459
+ float: right; }
460
+
461
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
462
+ border-right-width: 0;
463
+ border-left-width: 1px; }
464
+
465
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
466
+ border-right-width: 0;
467
+ border-left-width: 1px; }
468
+
469
+ /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
470
+ .ui-datepicker-cover {
471
+ display: none;
472
+ /*sorry for IE5*/
473
+ display/**/: block;
474
+ /*sorry for IE5*/
475
+ position: absolute;
476
+ /*must have*/
477
+ z-index: -1;
478
+ /*must have*/
479
+ filter: mask();
480
+ /*must have*/
481
+ top: -4px;
482
+ /*must have*/
483
+ left: -4px;
484
+ /*must have*/
485
+ width: 200px;
486
+ /*must have*/
487
+ height: 200px;
488
+ /*must have*/ }
489
+
490
+
491
+ /*
492
+ * jQuery UI Dialog @VERSION
493
+ *
494
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
495
+ * Dual licensed under the MIT or GPL Version 2 licenses.
496
+ * http://jquery.org/license
497
+ *
498
+ * http://docs.jquery.com/UI/Dialog#theming
499
+ */
500
+ .ui-dialog {
501
+ position: absolute;
502
+ padding: .2em;
503
+ width: 300px;
504
+ overflow: hidden; }
505
+
506
+ .ui-dialog .ui-dialog-titlebar {
507
+ padding: .5em 1em .3em;
508
+ position: relative; }
509
+
510
+ .ui-dialog .ui-dialog-title {
511
+ float: left;
512
+ margin: .1em 16px .2em 0; }
513
+
514
+ .ui-dialog .ui-dialog-titlebar-close {
515
+ position: absolute;
516
+ right: .3em;
517
+ top: 50%;
518
+ width: 19px;
519
+ margin: -10px 0 0 0;
520
+ padding: 1px;
521
+ height: 18px; }
522
+
523
+ .ui-dialog .ui-dialog-titlebar-close span {
524
+ display: block;
525
+ margin: 1px; }
526
+
527
+ .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
528
+ padding: 0; }
529
+
530
+ .ui-dialog .ui-dialog-content {
531
+ position: relative;
532
+ border: 0;
533
+ padding: .5em 1em;
534
+ background: none;
535
+ overflow: auto;
536
+ zoom: 1; }
537
+
538
+ .ui-dialog .ui-dialog-buttonpane {
539
+ text-align: left;
540
+ border-width: 1px 0 0 0;
541
+ background-image: none;
542
+ margin: .5em 0 0 0;
543
+ padding: .3em 1em .5em .4em; }
544
+
545
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
546
+ float: right; }
547
+
548
+ .ui-dialog .ui-dialog-buttonpane button {
549
+ margin: .5em .4em .5em 0;
550
+ cursor: pointer; }
551
+
552
+ .ui-dialog .ui-resizable-se {
553
+ width: 14px;
554
+ height: 14px;
555
+ right: 3px;
556
+ bottom: 3px; }
557
+
558
+ .ui-draggable .ui-dialog-titlebar {
559
+ cursor: move; }
560
+
561
+
562
+ /*
563
+ * jQuery UI Progressbar @VERSION
564
+ *
565
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
566
+ * Dual licensed under the MIT or GPL Version 2 licenses.
567
+ * http://jquery.org/license
568
+ *
569
+ * http://docs.jquery.com/UI/Progressbar#theming
570
+ */
571
+ .ui-progressbar {
572
+ height: 2em;
573
+ text-align: left; }
574
+
575
+ .ui-progressbar .ui-progressbar-value {
576
+ margin: -1px;
577
+ height: 100%; }
578
+
579
+
580
+ /*
581
+ * jQuery UI Resizable @VERSION
582
+ *
583
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
584
+ * Dual licensed under the MIT or GPL Version 2 licenses.
585
+ * http://jquery.org/license
586
+ *
587
+ * http://docs.jquery.com/UI/Resizable#theming
588
+ */
589
+ .ui-resizable {
590
+ position: relative; }
591
+
592
+ .ui-resizable-handle {
593
+ position: absolute;
594
+ font-size: 0.1px;
595
+ z-index: 99999;
596
+ display: block; }
597
+
598
+ .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
599
+ display: none; }
600
+
601
+ .ui-resizable-n {
602
+ cursor: n-resize;
603
+ height: 7px;
604
+ width: 100%;
605
+ top: -5px;
606
+ left: 0; }
607
+
608
+ .ui-resizable-s {
609
+ cursor: s-resize;
610
+ height: 7px;
611
+ width: 100%;
612
+ bottom: -5px;
613
+ left: 0; }
614
+
615
+ .ui-resizable-e {
616
+ cursor: e-resize;
617
+ width: 7px;
618
+ right: -5px;
619
+ top: 0;
620
+ height: 100%; }
621
+
622
+ .ui-resizable-w {
623
+ cursor: w-resize;
624
+ width: 7px;
625
+ left: -5px;
626
+ top: 0;
627
+ height: 100%; }
628
+
629
+ .ui-resizable-se {
630
+ cursor: se-resize;
631
+ width: 12px;
632
+ height: 12px;
633
+ right: 1px;
634
+ bottom: 1px; }
635
+
636
+ .ui-resizable-sw {
637
+ cursor: sw-resize;
638
+ width: 9px;
639
+ height: 9px;
640
+ left: -5px;
641
+ bottom: -5px; }
642
+
643
+ .ui-resizable-nw {
644
+ cursor: nw-resize;
645
+ width: 9px;
646
+ height: 9px;
647
+ left: -5px;
648
+ top: -5px; }
649
+
650
+ .ui-resizable-ne {
651
+ cursor: ne-resize;
652
+ width: 9px;
653
+ height: 9px;
654
+ right: -5px;
655
+ top: -5px; }
656
+
657
+
658
+ /*
659
+ * jQuery UI Selectable @VERSION
660
+ *
661
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
662
+ * Dual licensed under the MIT or GPL Version 2 licenses.
663
+ * http://jquery.org/license
664
+ *
665
+ * http://docs.jquery.com/UI/Selectable#theming
666
+ */
667
+ .ui-selectable-helper {
668
+ position: absolute;
669
+ z-index: 100;
670
+ border: 1px dotted black; }
671
+
672
+
673
+ /*
674
+ * jQuery UI Slider @VERSION
675
+ *
676
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
677
+ * Dual licensed under the MIT or GPL Version 2 licenses.
678
+ * http://jquery.org/license
679
+ *
680
+ * http://docs.jquery.com/UI/Slider#theming
681
+ */
682
+ .ui-slider {
683
+ position: relative;
684
+ text-align: left; }
685
+
686
+ .ui-slider .ui-slider-handle {
687
+ position: absolute;
688
+ z-index: 2;
689
+ width: 1.2em;
690
+ height: 1.2em;
691
+ cursor: default; }
692
+
693
+ .ui-slider .ui-slider-range {
694
+ position: absolute;
695
+ z-index: 1;
696
+ font-size: .7em;
697
+ display: block;
698
+ border: 0;
699
+ background-position: 0 0; }
700
+
701
+ .ui-slider-horizontal {
702
+ height: .8em; }
703
+
704
+ .ui-slider-horizontal .ui-slider-handle {
705
+ top: -0.3em;
706
+ margin-left: -0.6em; }
707
+
708
+ .ui-slider-horizontal .ui-slider-range {
709
+ top: 0;
710
+ height: 100%; }
711
+
712
+ .ui-slider-horizontal .ui-slider-range-min {
713
+ left: 0; }
714
+
715
+ .ui-slider-horizontal .ui-slider-range-max {
716
+ right: 0; }
717
+
718
+ .ui-slider-vertical {
719
+ width: .8em;
720
+ height: 100px; }
721
+
722
+ .ui-slider-vertical .ui-slider-handle {
723
+ left: -0.3em;
724
+ margin-left: 0;
725
+ margin-bottom: -0.6em; }
726
+
727
+ .ui-slider-vertical .ui-slider-range {
728
+ left: 0;
729
+ width: 100%; }
730
+
731
+ .ui-slider-vertical .ui-slider-range-min {
732
+ bottom: 0; }
733
+
734
+ .ui-slider-vertical .ui-slider-range-max {
735
+ top: 0; }
736
+
737
+
738
+ /*
739
+ * jQuery UI Tabs @VERSION
740
+ *
741
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
742
+ * Dual licensed under the MIT or GPL Version 2 licenses.
743
+ * http://jquery.org/license
744
+ *
745
+ * http://docs.jquery.com/UI/Tabs#theming
746
+ */
747
+ .ui-tabs {
748
+ position: relative;
749
+ padding: .2em;
750
+ zoom: 1; }
751
+
752
+ /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
753
+ .ui-tabs .ui-tabs-nav {
754
+ margin: 0;
755
+ padding: .2em .2em 0; }
756
+
757
+ .ui-tabs .ui-tabs-nav li {
758
+ list-style: none;
759
+ float: left;
760
+ position: relative;
761
+ top: 1px;
762
+ margin: 0 .2em 1px 0;
763
+ border-bottom: 0 !important;
764
+ padding: 0;
765
+ white-space: nowrap; }
766
+
767
+ .ui-tabs .ui-tabs-nav li a {
768
+ float: left;
769
+ padding: .5em 1em;
770
+ text-decoration: none; }
771
+
772
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
773
+ margin-bottom: 0;
774
+ padding-bottom: 1px; }
775
+
776
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
777
+ cursor: text; }
778
+
779
+ .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
780
+ cursor: pointer; }
781
+
782
+ /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
783
+ .ui-tabs .ui-tabs-panel {
784
+ display: block;
785
+ border-width: 0;
786
+ padding: 1em 1.4em;
787
+ background: none; }
788
+
789
+ .ui-tabs .ui-tabs-hide {
790
+ display: none !important; }
791
+
792
+
793
+ /*
794
+ * jQuery UI CSS Framework
795
+ * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
796
+ * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
797
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/
798
+ */
799
+
800
+ /* Component containers
801
+ ----------------------------------*/
802
+ .ui-widget {
803
+ font-family: $ui_ffDefault;
804
+ font-size: $ui_fsDefault; }
805
+
806
+ .ui-widget .ui-widget {
807
+ font-size: 1em; }
808
+
809
+ .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
810
+ font-family: $ui_ffDefault;
811
+ font-size: 1em; }
812
+
813
+ .ui-widget-content {
814
+ border: 1px solid $ui_borderColorContent;
815
+ background: $ui_bgColorContent $ui_bgImgUrlContent $ui_bgContentXPos $ui_bgContentYPos $ui_bgContentRepeat;
816
+ color: $ui_fcContent; }
817
+
818
+ .ui-widget-content a {
819
+ color: $ui_fcContent; }
820
+
821
+ .ui-widget-header {
822
+ border: 1px solid $ui_borderColorHeader;
823
+ background: $ui_bgColorHeader $ui_bgImgUrlHeader $ui_bgHeaderXPos $ui_bgHeaderYPos $ui_bgHeaderRepeat;
824
+ color: $ui_fcHeader;
825
+ font-weight: bold; }
826
+
827
+ .ui-widget-header a {
828
+ color: $ui_fcHeader; }
829
+
830
+ /* Interaction states
831
+ ----------------------------------*/
832
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
833
+ border: 1px solid $ui_borderColorDefault;
834
+ background: $ui_bgColorDefault $ui_bgImgUrlDefault $ui_bgDefaultXPos $ui_bgDefaultYPos $ui_bgDefaultRepeat;
835
+ font-weight: $ui_fwDefault;
836
+ color: $ui_fcDefault; }
837
+
838
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
839
+ color: $ui_fcDefault;
840
+ text-decoration: none; }
841
+
842
+ .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 {
843
+ border: 1px solid $ui_borderColorHover;
844
+ background: $ui_bgColorHover $ui_bgImgUrlHover $ui_bgHoverXPos $ui_bgHoverYPos $ui_bgHoverRepeat;
845
+ font-weight: $ui_fwDefault;
846
+ color: $ui_fcHover; }
847
+
848
+ .ui-state-hover a, .ui-state-hover a:hover {
849
+ color: $ui_fcHover;
850
+ text-decoration: none; }
851
+
852
+ .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
853
+ border: 1px solid $ui_borderColorActive;
854
+ background: $ui_bgColorActive $ui_bgImgUrlActive $ui_bgActiveXPos $ui_bgActiveYPos $ui_bgActiveRepeat;
855
+ font-weight: $ui_fwDefault;
856
+ color: $ui_fcActive; }
857
+
858
+ .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
859
+ color: $ui_fcActive;
860
+ text-decoration: none; }
861
+
862
+ .ui-widget :active {
863
+ outline: none; }
864
+
865
+ /* Interaction Cues
866
+ ----------------------------------*/
867
+ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
868
+ border: 1px solid $ui_borderColorHighlight;
869
+ background: $ui_bgColorHighlight $ui_bgImgUrlHighlight $ui_bgHighlightXPos $ui_bgHighlightYPos $ui_bgHighlightRepeat;
870
+ color: $ui_fcHighlight; }
871
+
872
+ .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a {
873
+ color: $ui_fcHighlight; }
874
+
875
+ .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
876
+ border: 1px solid $ui_borderColorError;
877
+ background: $ui_bgColorError $ui_bgImgUrlError $ui_bgErrorXPos $ui_bgErrorYPos $ui_bgErrorRepeat;
878
+ color: $ui_fcError; }
879
+
880
+ .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
881
+ color: $ui_fcError; }
882
+
883
+ .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
884
+ color: $ui_fcError; }
885
+
886
+ .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
887
+ font-weight: bold; }
888
+
889
+ .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
890
+ opacity: .7;
891
+ filter: Alpha(Opacity = 70);
892
+ font-weight: normal; }
893
+
894
+ .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
895
+ opacity: .35;
896
+ filter: Alpha(Opacity = 35);
897
+ background-image: none; }
898
+
899
+ /* Icons
900
+ ----------------------------------*/
901
+
902
+ /* states and images */
903
+ .ui-icon {
904
+ width: 16px;
905
+ height: 16px;
906
+ background-image: $ui_iconsContent; }
907
+
908
+ .ui-widget-content .ui-icon {
909
+ background-image: $ui_iconsContent; }
910
+
911
+ .ui-widget-header .ui-icon {
912
+ background-image: $ui_iconsHeader; }
913
+
914
+ .ui-state-default .ui-icon {
915
+ background-image: $ui_iconsDefault; }
916
+
917
+ .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
918
+ background-image: $ui_iconsHover; }
919
+
920
+ .ui-state-active .ui-icon {
921
+ background-image: $ui_iconsActive; }
922
+
923
+ .ui-state-highlight .ui-icon {
924
+ background-image: $ui_iconsHighlight; }
925
+
926
+ .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
927
+ background-image: $ui_iconsError; }
928
+
929
+ /* positioning */
930
+ .ui-icon-carat-1-n {
931
+ background-position: 0 0; }
932
+
933
+ .ui-icon-carat-1-ne {
934
+ background-position: -16px 0; }
935
+
936
+ .ui-icon-carat-1-e {
937
+ background-position: -32px 0; }
938
+
939
+ .ui-icon-carat-1-se {
940
+ background-position: -48px 0; }
941
+
942
+ .ui-icon-carat-1-s {
943
+ background-position: -64px 0; }
944
+
945
+ .ui-icon-carat-1-sw {
946
+ background-position: -80px 0; }
947
+
948
+ .ui-icon-carat-1-w {
949
+ background-position: -96px 0; }
950
+
951
+ .ui-icon-carat-1-nw {
952
+ background-position: -112px 0; }
953
+
954
+ .ui-icon-carat-2-n-s {
955
+ background-position: -128px 0; }
956
+
957
+ .ui-icon-carat-2-e-w {
958
+ background-position: -144px 0; }
959
+
960
+ .ui-icon-triangle-1-n {
961
+ background-position: 0 -16px; }
962
+
963
+ .ui-icon-triangle-1-ne {
964
+ background-position: -16px -16px; }
965
+
966
+ .ui-icon-triangle-1-e {
967
+ background-position: -32px -16px; }
968
+
969
+ .ui-icon-triangle-1-se {
970
+ background-position: -48px -16px; }
971
+
972
+ .ui-icon-triangle-1-s {
973
+ background-position: -64px -16px; }
974
+
975
+ .ui-icon-triangle-1-sw {
976
+ background-position: -80px -16px; }
977
+
978
+ .ui-icon-triangle-1-w {
979
+ background-position: -96px -16px; }
980
+
981
+ .ui-icon-triangle-1-nw {
982
+ background-position: -112px -16px; }
983
+
984
+ .ui-icon-triangle-2-n-s {
985
+ background-position: -128px -16px; }
986
+
987
+ .ui-icon-triangle-2-e-w {
988
+ background-position: -144px -16px; }
989
+
990
+ .ui-icon-arrow-1-n {
991
+ background-position: 0 -32px; }
992
+
993
+ .ui-icon-arrow-1-ne {
994
+ background-position: -16px -32px; }
995
+
996
+ .ui-icon-arrow-1-e {
997
+ background-position: -32px -32px; }
998
+
999
+ .ui-icon-arrow-1-se {
1000
+ background-position: -48px -32px; }
1001
+
1002
+ .ui-icon-arrow-1-s {
1003
+ background-position: -64px -32px; }
1004
+
1005
+ .ui-icon-arrow-1-sw {
1006
+ background-position: -80px -32px; }
1007
+
1008
+ .ui-icon-arrow-1-w {
1009
+ background-position: -96px -32px; }
1010
+
1011
+ .ui-icon-arrow-1-nw {
1012
+ background-position: -112px -32px; }
1013
+
1014
+ .ui-icon-arrow-2-n-s {
1015
+ background-position: -128px -32px; }
1016
+
1017
+ .ui-icon-arrow-2-ne-sw {
1018
+ background-position: -144px -32px; }
1019
+
1020
+ .ui-icon-arrow-2-e-w {
1021
+ background-position: -160px -32px; }
1022
+
1023
+ .ui-icon-arrow-2-se-nw {
1024
+ background-position: -176px -32px; }
1025
+
1026
+ .ui-icon-arrowstop-1-n {
1027
+ background-position: -192px -32px; }
1028
+
1029
+ .ui-icon-arrowstop-1-e {
1030
+ background-position: -208px -32px; }
1031
+
1032
+ .ui-icon-arrowstop-1-s {
1033
+ background-position: -224px -32px; }
1034
+
1035
+ .ui-icon-arrowstop-1-w {
1036
+ background-position: -240px -32px; }
1037
+
1038
+ .ui-icon-arrowthick-1-n {
1039
+ background-position: 0 -48px; }
1040
+
1041
+ .ui-icon-arrowthick-1-ne {
1042
+ background-position: -16px -48px; }
1043
+
1044
+ .ui-icon-arrowthick-1-e {
1045
+ background-position: -32px -48px; }
1046
+
1047
+ .ui-icon-arrowthick-1-se {
1048
+ background-position: -48px -48px; }
1049
+
1050
+ .ui-icon-arrowthick-1-s {
1051
+ background-position: -64px -48px; }
1052
+
1053
+ .ui-icon-arrowthick-1-sw {
1054
+ background-position: -80px -48px; }
1055
+
1056
+ .ui-icon-arrowthick-1-w {
1057
+ background-position: -96px -48px; }
1058
+
1059
+ .ui-icon-arrowthick-1-nw {
1060
+ background-position: -112px -48px; }
1061
+
1062
+ .ui-icon-arrowthick-2-n-s {
1063
+ background-position: -128px -48px; }
1064
+
1065
+ .ui-icon-arrowthick-2-ne-sw {
1066
+ background-position: -144px -48px; }
1067
+
1068
+ .ui-icon-arrowthick-2-e-w {
1069
+ background-position: -160px -48px; }
1070
+
1071
+ .ui-icon-arrowthick-2-se-nw {
1072
+ background-position: -176px -48px; }
1073
+
1074
+ .ui-icon-arrowthickstop-1-n {
1075
+ background-position: -192px -48px; }
1076
+
1077
+ .ui-icon-arrowthickstop-1-e {
1078
+ background-position: -208px -48px; }
1079
+
1080
+ .ui-icon-arrowthickstop-1-s {
1081
+ background-position: -224px -48px; }
1082
+
1083
+ .ui-icon-arrowthickstop-1-w {
1084
+ background-position: -240px -48px; }
1085
+
1086
+ .ui-icon-arrowreturnthick-1-w {
1087
+ background-position: 0 -64px; }
1088
+
1089
+ .ui-icon-arrowreturnthick-1-n {
1090
+ background-position: -16px -64px; }
1091
+
1092
+ .ui-icon-arrowreturnthick-1-e {
1093
+ background-position: -32px -64px; }
1094
+
1095
+ .ui-icon-arrowreturnthick-1-s {
1096
+ background-position: -48px -64px; }
1097
+
1098
+ .ui-icon-arrowreturn-1-w {
1099
+ background-position: -64px -64px; }
1100
+
1101
+ .ui-icon-arrowreturn-1-n {
1102
+ background-position: -80px -64px; }
1103
+
1104
+ .ui-icon-arrowreturn-1-e {
1105
+ background-position: -96px -64px; }
1106
+
1107
+ .ui-icon-arrowreturn-1-s {
1108
+ background-position: -112px -64px; }
1109
+
1110
+ .ui-icon-arrowrefresh-1-w {
1111
+ background-position: -128px -64px; }
1112
+
1113
+ .ui-icon-arrowrefresh-1-n {
1114
+ background-position: -144px -64px; }
1115
+
1116
+ .ui-icon-arrowrefresh-1-e {
1117
+ background-position: -160px -64px; }
1118
+
1119
+ .ui-icon-arrowrefresh-1-s {
1120
+ background-position: -176px -64px; }
1121
+
1122
+ .ui-icon-arrow-4 {
1123
+ background-position: 0 -80px; }
1124
+
1125
+ .ui-icon-arrow-4-diag {
1126
+ background-position: -16px -80px; }
1127
+
1128
+ .ui-icon-extlink {
1129
+ background-position: -32px -80px; }
1130
+
1131
+ .ui-icon-newwin {
1132
+ background-position: -48px -80px; }
1133
+
1134
+ .ui-icon-refresh {
1135
+ background-position: -64px -80px; }
1136
+
1137
+ .ui-icon-shuffle {
1138
+ background-position: -80px -80px; }
1139
+
1140
+ .ui-icon-transfer-e-w {
1141
+ background-position: -96px -80px; }
1142
+
1143
+ .ui-icon-transferthick-e-w {
1144
+ background-position: -112px -80px; }
1145
+
1146
+ .ui-icon-folder-collapsed {
1147
+ background-position: 0 -96px; }
1148
+
1149
+ .ui-icon-folder-open {
1150
+ background-position: -16px -96px; }
1151
+
1152
+ .ui-icon-document {
1153
+ background-position: -32px -96px; }
1154
+
1155
+ .ui-icon-document-b {
1156
+ background-position: -48px -96px; }
1157
+
1158
+ .ui-icon-note {
1159
+ background-position: -64px -96px; }
1160
+
1161
+ .ui-icon-mail-closed {
1162
+ background-position: -80px -96px; }
1163
+
1164
+ .ui-icon-mail-open {
1165
+ background-position: -96px -96px; }
1166
+
1167
+ .ui-icon-suitcase {
1168
+ background-position: -112px -96px; }
1169
+
1170
+ .ui-icon-comment {
1171
+ background-position: -128px -96px; }
1172
+
1173
+ .ui-icon-person {
1174
+ background-position: -144px -96px; }
1175
+
1176
+ .ui-icon-print {
1177
+ background-position: -160px -96px; }
1178
+
1179
+ .ui-icon-trash {
1180
+ background-position: -176px -96px; }
1181
+
1182
+ .ui-icon-locked {
1183
+ background-position: -192px -96px; }
1184
+
1185
+ .ui-icon-unlocked {
1186
+ background-position: -208px -96px; }
1187
+
1188
+ .ui-icon-bookmark {
1189
+ background-position: -224px -96px; }
1190
+
1191
+ .ui-icon-tag {
1192
+ background-position: -240px -96px; }
1193
+
1194
+ .ui-icon-home {
1195
+ background-position: 0 -112px; }
1196
+
1197
+ .ui-icon-flag {
1198
+ background-position: -16px -112px; }
1199
+
1200
+ .ui-icon-calendar {
1201
+ background-position: -32px -112px; }
1202
+
1203
+ .ui-icon-cart {
1204
+ background-position: -48px -112px; }
1205
+
1206
+ .ui-icon-pencil {
1207
+ background-position: -64px -112px; }
1208
+
1209
+ .ui-icon-clock {
1210
+ background-position: -80px -112px; }
1211
+
1212
+ .ui-icon-disk {
1213
+ background-position: -96px -112px; }
1214
+
1215
+ .ui-icon-calculator {
1216
+ background-position: -112px -112px; }
1217
+
1218
+ .ui-icon-zoomin {
1219
+ background-position: -128px -112px; }
1220
+
1221
+ .ui-icon-zoomout {
1222
+ background-position: -144px -112px; }
1223
+
1224
+ .ui-icon-search {
1225
+ background-position: -160px -112px; }
1226
+
1227
+ .ui-icon-wrench {
1228
+ background-position: -176px -112px; }
1229
+
1230
+ .ui-icon-gear {
1231
+ background-position: -192px -112px; }
1232
+
1233
+ .ui-icon-heart {
1234
+ background-position: -208px -112px; }
1235
+
1236
+ .ui-icon-star {
1237
+ background-position: -224px -112px; }
1238
+
1239
+ .ui-icon-link {
1240
+ background-position: -240px -112px; }
1241
+
1242
+ .ui-icon-cancel {
1243
+ background-position: 0 -128px; }
1244
+
1245
+ .ui-icon-plus {
1246
+ background-position: -16px -128px; }
1247
+
1248
+ .ui-icon-plusthick {
1249
+ background-position: -32px -128px; }
1250
+
1251
+ .ui-icon-minus {
1252
+ background-position: -48px -128px; }
1253
+
1254
+ .ui-icon-minusthick {
1255
+ background-position: -64px -128px; }
1256
+
1257
+ .ui-icon-close {
1258
+ background-position: -80px -128px; }
1259
+
1260
+ .ui-icon-closethick {
1261
+ background-position: -96px -128px; }
1262
+
1263
+ .ui-icon-key {
1264
+ background-position: -112px -128px; }
1265
+
1266
+ .ui-icon-lightbulb {
1267
+ background-position: -128px -128px; }
1268
+
1269
+ .ui-icon-scissors {
1270
+ background-position: -144px -128px; }
1271
+
1272
+ .ui-icon-clipboard {
1273
+ background-position: -160px -128px; }
1274
+
1275
+ .ui-icon-copy {
1276
+ background-position: -176px -128px; }
1277
+
1278
+ .ui-icon-contact {
1279
+ background-position: -192px -128px; }
1280
+
1281
+ .ui-icon-image {
1282
+ background-position: -208px -128px; }
1283
+
1284
+ .ui-icon-video {
1285
+ background-position: -224px -128px; }
1286
+
1287
+ .ui-icon-script {
1288
+ background-position: -240px -128px; }
1289
+
1290
+ .ui-icon-alert {
1291
+ background-position: 0 -144px; }
1292
+
1293
+ .ui-icon-info {
1294
+ background-position: -16px -144px; }
1295
+
1296
+ .ui-icon-notice {
1297
+ background-position: -32px -144px; }
1298
+
1299
+ .ui-icon-help {
1300
+ background-position: -48px -144px; }
1301
+
1302
+ .ui-icon-check {
1303
+ background-position: -64px -144px; }
1304
+
1305
+ .ui-icon-bullet {
1306
+ background-position: -80px -144px; }
1307
+
1308
+ .ui-icon-radio-off {
1309
+ background-position: -96px -144px; }
1310
+
1311
+ .ui-icon-radio-on {
1312
+ background-position: -112px -144px; }
1313
+
1314
+ .ui-icon-pin-w {
1315
+ background-position: -128px -144px; }
1316
+
1317
+ .ui-icon-pin-s {
1318
+ background-position: -144px -144px; }
1319
+
1320
+ .ui-icon-play {
1321
+ background-position: 0 -160px; }
1322
+
1323
+ .ui-icon-pause {
1324
+ background-position: -16px -160px; }
1325
+
1326
+ .ui-icon-seek-next {
1327
+ background-position: -32px -160px; }
1328
+
1329
+ .ui-icon-seek-prev {
1330
+ background-position: -48px -160px; }
1331
+
1332
+ .ui-icon-seek-end {
1333
+ background-position: -64px -160px; }
1334
+
1335
+ .ui-icon-seek-start {
1336
+ background-position: -80px -160px; }
1337
+
1338
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
1339
+ .ui-icon-seek-first {
1340
+ background-position: -80px -160px; }
1341
+
1342
+ .ui-icon-stop {
1343
+ background-position: -96px -160px; }
1344
+
1345
+ .ui-icon-eject {
1346
+ background-position: -112px -160px; }
1347
+
1348
+ .ui-icon-volume-off {
1349
+ background-position: -128px -160px; }
1350
+
1351
+ .ui-icon-volume-on {
1352
+ background-position: -144px -160px; }
1353
+
1354
+ .ui-icon-power {
1355
+ background-position: 0 -176px; }
1356
+
1357
+ .ui-icon-signal-diag {
1358
+ background-position: -16px -176px; }
1359
+
1360
+ .ui-icon-signal {
1361
+ background-position: -32px -176px; }
1362
+
1363
+ .ui-icon-battery-0 {
1364
+ background-position: -48px -176px; }
1365
+
1366
+ .ui-icon-battery-1 {
1367
+ background-position: -64px -176px; }
1368
+
1369
+ .ui-icon-battery-2 {
1370
+ background-position: -80px -176px; }
1371
+
1372
+ .ui-icon-battery-3 {
1373
+ background-position: -96px -176px; }
1374
+
1375
+ .ui-icon-circle-plus {
1376
+ background-position: 0 -192px; }
1377
+
1378
+ .ui-icon-circle-minus {
1379
+ background-position: -16px -192px; }
1380
+
1381
+ .ui-icon-circle-close {
1382
+ background-position: -32px -192px; }
1383
+
1384
+ .ui-icon-circle-triangle-e {
1385
+ background-position: -48px -192px; }
1386
+
1387
+ .ui-icon-circle-triangle-s {
1388
+ background-position: -64px -192px; }
1389
+
1390
+ .ui-icon-circle-triangle-w {
1391
+ background-position: -80px -192px; }
1392
+
1393
+ .ui-icon-circle-triangle-n {
1394
+ background-position: -96px -192px; }
1395
+
1396
+ .ui-icon-circle-arrow-e {
1397
+ background-position: -112px -192px; }
1398
+
1399
+ .ui-icon-circle-arrow-s {
1400
+ background-position: -128px -192px; }
1401
+
1402
+ .ui-icon-circle-arrow-w {
1403
+ background-position: -144px -192px; }
1404
+
1405
+ .ui-icon-circle-arrow-n {
1406
+ background-position: -160px -192px; }
1407
+
1408
+ .ui-icon-circle-zoomin {
1409
+ background-position: -176px -192px; }
1410
+
1411
+ .ui-icon-circle-zoomout {
1412
+ background-position: -192px -192px; }
1413
+
1414
+ .ui-icon-circle-check {
1415
+ background-position: -208px -192px; }
1416
+
1417
+ .ui-icon-circlesmall-plus {
1418
+ background-position: 0 -208px; }
1419
+
1420
+ .ui-icon-circlesmall-minus {
1421
+ background-position: -16px -208px; }
1422
+
1423
+ .ui-icon-circlesmall-close {
1424
+ background-position: -32px -208px; }
1425
+
1426
+ .ui-icon-squaresmall-plus {
1427
+ background-position: -48px -208px; }
1428
+
1429
+ .ui-icon-squaresmall-minus {
1430
+ background-position: -64px -208px; }
1431
+
1432
+ .ui-icon-squaresmall-close {
1433
+ background-position: -80px -208px; }
1434
+
1435
+ .ui-icon-grip-dotted-vertical {
1436
+ background-position: 0 -224px; }
1437
+
1438
+ .ui-icon-grip-dotted-horizontal {
1439
+ background-position: -16px -224px; }
1440
+
1441
+ .ui-icon-grip-solid-vertical {
1442
+ background-position: -32px -224px; }
1443
+
1444
+ .ui-icon-grip-solid-horizontal {
1445
+ background-position: -48px -224px; }
1446
+
1447
+ .ui-icon-gripsmall-diagonal-se {
1448
+ background-position: -64px -224px; }
1449
+
1450
+ .ui-icon-grip-diagonal-se {
1451
+ background-position: -80px -224px; }
1452
+
1453
+ /* Misc visuals
1454
+ ----------------------------------*/
1455
+
1456
+ /* Corner radius */
1457
+ .ui-corner-tl {
1458
+ -moz-border-radius-topleft: $ui_cornerRadius;
1459
+ -webkit-border-top-left-radius: $ui_cornerRadius;
1460
+ border-top-left-radius: $ui_cornerRadius; }
1461
+
1462
+ .ui-corner-tr {
1463
+ -moz-border-radius-topright: $ui_cornerRadius;
1464
+ -webkit-border-top-right-radius: $ui_cornerRadius;
1465
+ border-top-right-radius: $ui_cornerRadius; }
1466
+
1467
+ .ui-corner-bl {
1468
+ -moz-border-radius-bottomleft: $ui_cornerRadius;
1469
+ -webkit-border-bottom-left-radius: $ui_cornerRadius;
1470
+ border-bottom-left-radius: $ui_cornerRadius; }
1471
+
1472
+ .ui-corner-br {
1473
+ -moz-border-radius-bottomright: $ui_cornerRadius;
1474
+ -webkit-border-bottom-right-radius: $ui_cornerRadius;
1475
+ border-bottom-right-radius: $ui_cornerRadius; }
1476
+
1477
+ .ui-corner-top {
1478
+ -moz-border-radius-topleft: $ui_cornerRadius;
1479
+ -webkit-border-top-left-radius: $ui_cornerRadius;
1480
+ border-top-left-radius: $ui_cornerRadius;
1481
+ -moz-border-radius-topright: $ui_cornerRadius;
1482
+ -webkit-border-top-right-radius: $ui_cornerRadius;
1483
+ border-top-right-radius: $ui_cornerRadius; }
1484
+
1485
+ .ui-corner-bottom {
1486
+ -moz-border-radius-bottomleft: $ui_cornerRadius;
1487
+ -webkit-border-bottom-left-radius: $ui_cornerRadius;
1488
+ border-bottom-left-radius: $ui_cornerRadius;
1489
+ -moz-border-radius-bottomright: $ui_cornerRadius;
1490
+ -webkit-border-bottom-right-radius: $ui_cornerRadius;
1491
+ border-bottom-right-radius: $ui_cornerRadius; }
1492
+
1493
+ .ui-corner-right {
1494
+ -moz-border-radius-topright: $ui_cornerRadius;
1495
+ -webkit-border-top-right-radius: $ui_cornerRadius;
1496
+ border-top-right-radius: $ui_cornerRadius;
1497
+ -moz-border-radius-bottomright: $ui_cornerRadius;
1498
+ -webkit-border-bottom-right-radius: $ui_cornerRadius;
1499
+ border-bottom-right-radius: $ui_cornerRadius; }
1500
+
1501
+ .ui-corner-left {
1502
+ -moz-border-radius-topleft: $ui_cornerRadius;
1503
+ -webkit-border-top-left-radius: $ui_cornerRadius;
1504
+ border-top-left-radius: $ui_cornerRadius;
1505
+ -moz-border-radius-bottomleft: $ui_cornerRadius;
1506
+ -webkit-border-bottom-left-radius: $ui_cornerRadius;
1507
+ border-bottom-left-radius: $ui_cornerRadius; }
1508
+
1509
+ .ui-corner-all {
1510
+ -moz-border-radius: $ui_cornerRadius;
1511
+ -webkit-border-radius: $ui_cornerRadius;
1512
+ border-radius: $ui_cornerRadius; }
1513
+
1514
+ /* Overlays */
1515
+ .ui-widget-overlay {
1516
+ background: $ui_bgColorOverlay $ui_bgImgUrlOverlay $ui_bgOverlayXPos $ui_bgOverlayYPos $ui_bgOverlayRepeat;
1517
+ opacity: $ui_bgOverlayOpacity;
1518
+ filter: $ui_bgOverlayFilter; }
1519
+
1520
+ .ui-widget-shadow {
1521
+ margin: $ui_offsetTopShadow 0 0 $ui_offsetLeftShadow;
1522
+ padding: $ui_thicknessShadow;
1523
+ background: $ui_bgColorShadow $ui_bgImgUrlShadow $ui_bgShadowXPos $ui_bgShadowYPos $ui_bgShadowRepeat;
1524
+ opacity: $ui_bgShadowOpacity;
1525
+ filter: $ui_bgShadowFilter;
1526
+ -moz-border-radius: $ui_cornerRadiusShadow;
1527
+ -webkit-border-radius: $ui_cornerRadiusShadow;
1528
+ border-radius: $ui_cornerRadiusShadow; }
1529
+
1530
+ /* Add .ui-widget-border*/
1531
+
1532
+ .ui-widget-border {
1533
+ border: 1px solid $ui_borderColorContent; }
1534
+
1535
+ /* Fix Autocomplete */
1536
+
1537
+ .ui-autocomplete-loading {
1538
+ background: $ui_bgColorLoading $ui_bgImgUrlLoading $ui_bgLoadingXPos $ui_bgLoadingYPos $ui_bgLoadingRepeat; }
1539
+ // Generated by compass-jquery-plugin/gem-tasks/jrailsxx.rake