el_vfs 0.0.1

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