styleyt 0.2.3 → 0.2.4

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