jquery-ui-rails 3.0.1 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jquery-ui-rails might be problematic. Click here for more details.

Files changed (61) hide show
  1. data/History.md +10 -0
  2. data/README.md +1 -1
  3. data/Rakefile +4 -5
  4. data/lib/jquery/ui/rails/version.rb +1 -1
  5. data/vendor/assets/javascripts/jquery.ui.accordion.js +130 -290
  6. data/vendor/assets/javascripts/jquery.ui.autocomplete.js +30 -18
  7. data/vendor/assets/javascripts/jquery.ui.button.js +9 -8
  8. data/vendor/assets/javascripts/jquery.ui.core.js +19 -53
  9. data/vendor/assets/javascripts/jquery.ui.datepicker-be.js +23 -0
  10. data/vendor/assets/javascripts/jquery.ui.datepicker-fr-CA.js +23 -0
  11. data/vendor/assets/javascripts/jquery.ui.datepicker-ky.js +24 -0
  12. data/vendor/assets/javascripts/jquery.ui.datepicker-nb.js +22 -0
  13. data/vendor/assets/javascripts/jquery.ui.datepicker-nn.js +22 -0
  14. data/vendor/assets/javascripts/jquery.ui.datepicker.js +1076 -878
  15. data/vendor/assets/javascripts/jquery.ui.dialog.js +456 -547
  16. data/vendor/assets/javascripts/jquery.ui.draggable.js +317 -207
  17. data/vendor/assets/javascripts/jquery.ui.droppable.js +177 -100
  18. data/vendor/assets/javascripts/jquery.ui.effect-blind.js +2 -2
  19. data/vendor/assets/javascripts/jquery.ui.effect-bounce.js +2 -2
  20. data/vendor/assets/javascripts/jquery.ui.effect-clip.js +2 -2
  21. data/vendor/assets/javascripts/jquery.ui.effect-drop.js +2 -2
  22. data/vendor/assets/javascripts/jquery.ui.effect-explode.js +2 -2
  23. data/vendor/assets/javascripts/jquery.ui.effect-fade.js +2 -2
  24. data/vendor/assets/javascripts/jquery.ui.effect-fold.js +2 -2
  25. data/vendor/assets/javascripts/jquery.ui.effect-highlight.js +2 -2
  26. data/vendor/assets/javascripts/jquery.ui.effect-pulsate.js +2 -2
  27. data/vendor/assets/javascripts/jquery.ui.effect-scale.js +2 -2
  28. data/vendor/assets/javascripts/jquery.ui.effect-shake.js +2 -2
  29. data/vendor/assets/javascripts/jquery.ui.effect-slide.js +2 -2
  30. data/vendor/assets/javascripts/jquery.ui.effect-transfer.js +3 -3
  31. data/vendor/assets/javascripts/jquery.ui.effect.js +91 -99
  32. data/vendor/assets/javascripts/jquery.ui.menu.js +20 -9
  33. data/vendor/assets/javascripts/jquery.ui.mouse.js +25 -25
  34. data/vendor/assets/javascripts/jquery.ui.position.js +39 -59
  35. data/vendor/assets/javascripts/jquery.ui.progressbar.js +73 -33
  36. data/vendor/assets/javascripts/jquery.ui.resizable.js +461 -294
  37. data/vendor/assets/javascripts/jquery.ui.selectable.js +67 -51
  38. data/vendor/assets/javascripts/jquery.ui.slider.js +100 -95
  39. data/vendor/assets/javascripts/jquery.ui.sortable.js +411 -257
  40. data/vendor/assets/javascripts/jquery.ui.spinner.js +19 -5
  41. data/vendor/assets/javascripts/jquery.ui.tabs.js +47 -567
  42. data/vendor/assets/javascripts/jquery.ui.tooltip.js +14 -10
  43. data/vendor/assets/javascripts/jquery.ui.widget.js +33 -40
  44. data/vendor/assets/stylesheets/jquery.ui.accordion.css.erb +30 -8
  45. data/vendor/assets/stylesheets/jquery.ui.all.css.erb +2 -2
  46. data/vendor/assets/stylesheets/jquery.ui.autocomplete.css.erb +2 -5
  47. data/vendor/assets/stylesheets/jquery.ui.base.css.erb +2 -2
  48. data/vendor/assets/stylesheets/jquery.ui.button.css.erb +100 -26
  49. data/vendor/assets/stylesheets/jquery.ui.core.css.erb +65 -12
  50. data/vendor/assets/stylesheets/jquery.ui.datepicker.css.erb +166 -55
  51. data/vendor/assets/stylesheets/jquery.ui.dialog.css.erb +61 -14
  52. data/vendor/assets/stylesheets/jquery.ui.menu.css.erb +61 -14
  53. data/vendor/assets/stylesheets/jquery.ui.progressbar.css.erb +20 -4
  54. data/vendor/assets/stylesheets/jquery.ui.resizable.css.erb +70 -13
  55. data/vendor/assets/stylesheets/jquery.ui.selectable.css.erb +7 -3
  56. data/vendor/assets/stylesheets/jquery.ui.slider.css.erb +63 -15
  57. data/vendor/assets/stylesheets/jquery.ui.spinner.css.erb +52 -10
  58. data/vendor/assets/stylesheets/jquery.ui.tabs.css.erb +44 -10
  59. data/vendor/assets/stylesheets/jquery.ui.theme.css.erb +196 -38
  60. data/vendor/assets/stylesheets/jquery.ui.tooltip.css.erb +4 -6
  61. metadata +8 -3
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Datepicker 1.9.2
2
+ * jQuery UI Datepicker 1.10.0
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2012 jQuery Foundation and other contributors
5
+ * Copyright 2013 jQuery Foundation and other contributors
6
6
  * Released under the MIT license.
7
7
  * http://jquery.org/license
8
8
  *
@@ -12,60 +12,171 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
16
- .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
17
- .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
18
- .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
19
- .ui-datepicker .ui-datepicker-prev { left:2px; }
20
- .ui-datepicker .ui-datepicker-next { right:2px; }
21
- .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
22
- .ui-datepicker .ui-datepicker-next-hover { right:1px; }
23
- .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
24
- .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
25
- .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
26
- .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
27
- .ui-datepicker select.ui-datepicker-month,
28
- .ui-datepicker select.ui-datepicker-year { width: 49%;}
29
- .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
30
- .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
31
- .ui-datepicker td { border: 0; padding: 1px; }
32
- .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
33
- .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
34
- .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
35
- .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
15
+ .ui-datepicker {
16
+ width: 17em;
17
+ padding: .2em .2em 0;
18
+ display: none;
19
+ }
20
+ .ui-datepicker .ui-datepicker-header {
21
+ position: relative;
22
+ padding: .2em 0;
23
+ }
24
+ .ui-datepicker .ui-datepicker-prev,
25
+ .ui-datepicker .ui-datepicker-next {
26
+ position: absolute;
27
+ top: 2px;
28
+ width: 1.8em;
29
+ height: 1.8em;
30
+ }
31
+ .ui-datepicker .ui-datepicker-prev-hover,
32
+ .ui-datepicker .ui-datepicker-next-hover {
33
+ top: 1px;
34
+ }
35
+ .ui-datepicker .ui-datepicker-prev {
36
+ left: 2px;
37
+ }
38
+ .ui-datepicker .ui-datepicker-next {
39
+ right: 2px;
40
+ }
41
+ .ui-datepicker .ui-datepicker-prev-hover {
42
+ left: 1px;
43
+ }
44
+ .ui-datepicker .ui-datepicker-next-hover {
45
+ right: 1px;
46
+ }
47
+ .ui-datepicker .ui-datepicker-prev span,
48
+ .ui-datepicker .ui-datepicker-next span {
49
+ display: block;
50
+ position: absolute;
51
+ left: 50%;
52
+ margin-left: -8px;
53
+ top: 50%;
54
+ margin-top: -8px;
55
+ }
56
+ .ui-datepicker .ui-datepicker-title {
57
+ margin: 0 2.3em;
58
+ line-height: 1.8em;
59
+ text-align: center;
60
+ }
61
+ .ui-datepicker .ui-datepicker-title select {
62
+ font-size: 1em;
63
+ margin: 1px 0;
64
+ }
65
+ .ui-datepicker select.ui-datepicker-month-year {
66
+ width: 100%;
67
+ }
68
+ .ui-datepicker select.ui-datepicker-month,
69
+ .ui-datepicker select.ui-datepicker-year {
70
+ width: 49%;
71
+ }
72
+ .ui-datepicker table {
73
+ width: 100%;
74
+ font-size: .9em;
75
+ border-collapse: collapse;
76
+ margin: 0 0 .4em;
77
+ }
78
+ .ui-datepicker th {
79
+ padding: .7em .3em;
80
+ text-align: center;
81
+ font-weight: bold;
82
+ border: 0;
83
+ }
84
+ .ui-datepicker td {
85
+ border: 0;
86
+ padding: 1px;
87
+ }
88
+ .ui-datepicker td span,
89
+ .ui-datepicker td a {
90
+ display: block;
91
+ padding: .2em;
92
+ text-align: right;
93
+ text-decoration: none;
94
+ }
95
+ .ui-datepicker .ui-datepicker-buttonpane {
96
+ background-image: none;
97
+ margin: .7em 0 0 0;
98
+ padding: 0 .2em;
99
+ border-left: 0;
100
+ border-right: 0;
101
+ border-bottom: 0;
102
+ }
103
+ .ui-datepicker .ui-datepicker-buttonpane button {
104
+ float: right;
105
+ margin: .5em .2em .4em;
106
+ cursor: pointer;
107
+ padding: .2em .6em .3em .6em;
108
+ width: auto;
109
+ overflow: visible;
110
+ }
111
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
112
+ float: left;
113
+ }
36
114
 
37
115
  /* with multiple calendars */
38
- .ui-datepicker.ui-datepicker-multi { width:auto; }
39
- .ui-datepicker-multi .ui-datepicker-group { float:left; }
40
- .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
41
- .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
42
- .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
43
- .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
44
- .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
45
- .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
46
- .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
47
- .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
116
+ .ui-datepicker.ui-datepicker-multi {
117
+ width: auto;
118
+ }
119
+ .ui-datepicker-multi .ui-datepicker-group {
120
+ float: left;
121
+ }
122
+ .ui-datepicker-multi .ui-datepicker-group table {
123
+ width: 95%;
124
+ margin: 0 auto .4em;
125
+ }
126
+ .ui-datepicker-multi-2 .ui-datepicker-group {
127
+ width: 50%;
128
+ }
129
+ .ui-datepicker-multi-3 .ui-datepicker-group {
130
+ width: 33.3%;
131
+ }
132
+ .ui-datepicker-multi-4 .ui-datepicker-group {
133
+ width: 25%;
134
+ }
135
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
136
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
137
+ border-left-width: 0;
138
+ }
139
+ .ui-datepicker-multi .ui-datepicker-buttonpane {
140
+ clear: left;
141
+ }
142
+ .ui-datepicker-row-break {
143
+ clear: both;
144
+ width: 100%;
145
+ font-size: 0;
146
+ }
48
147
 
49
148
  /* RTL support */
50
- .ui-datepicker-rtl { direction: rtl; }
51
- .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
52
- .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
53
- .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
54
- .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
55
- .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
56
- .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
57
- .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
58
- .ui-datepicker-rtl .ui-datepicker-group { float:right; }
59
- .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
60
- .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
61
-
62
- /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
63
- .ui-datepicker-cover {
64
- position: absolute; /*must have*/
65
- z-index: -1; /*must have*/
66
- filter: mask(); /*must have*/
67
- top: -4px; /*must have*/
68
- left: -4px; /*must have*/
69
- width: 200px; /*must have*/
70
- height: 200px; /*must have*/
71
- }
149
+ .ui-datepicker-rtl {
150
+ direction: rtl;
151
+ }
152
+ .ui-datepicker-rtl .ui-datepicker-prev {
153
+ right: 2px;
154
+ left: auto;
155
+ }
156
+ .ui-datepicker-rtl .ui-datepicker-next {
157
+ left: 2px;
158
+ right: auto;
159
+ }
160
+ .ui-datepicker-rtl .ui-datepicker-prev:hover {
161
+ right: 1px;
162
+ left: auto;
163
+ }
164
+ .ui-datepicker-rtl .ui-datepicker-next:hover {
165
+ left: 1px;
166
+ right: auto;
167
+ }
168
+ .ui-datepicker-rtl .ui-datepicker-buttonpane {
169
+ clear: right;
170
+ }
171
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button {
172
+ float: left;
173
+ }
174
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
175
+ .ui-datepicker-rtl .ui-datepicker-group {
176
+ float: right;
177
+ }
178
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
179
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
180
+ border-right-width: 0;
181
+ border-left-width: 1px;
182
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Dialog 1.9.2
2
+ * jQuery UI Dialog 1.10.0
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2012 jQuery Foundation and other contributors
5
+ * Copyright 2013 jQuery Foundation and other contributors
6
6
  * Released under the MIT license.
7
7
  * http://jquery.org/license
8
8
  *
@@ -14,15 +14,62 @@
14
14
  *= require jquery.ui.resizable
15
15
  *= require jquery.ui.theme
16
16
  */
17
- .ui-dialog { position: absolute; top: 0; left: 0; padding: .2em; width: 300px; overflow: hidden; }
18
- .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
19
- .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
20
- .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
21
- .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
22
- .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
23
- .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
24
- .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
25
- .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
26
- .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
27
- .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
28
- .ui-draggable .ui-dialog-titlebar { cursor: move; }
17
+ .ui-dialog {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ padding: .2em;
22
+ outline: 0;
23
+ }
24
+ .ui-dialog .ui-dialog-titlebar {
25
+ padding: .4em 1em;
26
+ position: relative;
27
+ }
28
+ .ui-dialog .ui-dialog-title {
29
+ float: left;
30
+ margin: .1em 0;
31
+ white-space: nowrap;
32
+ width: 90%;
33
+ overflow: hidden;
34
+ text-overflow: ellipsis;
35
+ }
36
+ .ui-dialog .ui-dialog-titlebar-close {
37
+ position: absolute;
38
+ right: .3em;
39
+ top: 50%;
40
+ width: 21px;
41
+ margin: -10px 0 0 0;
42
+ padding: 1px;
43
+ height: 20px;
44
+ }
45
+ .ui-dialog .ui-dialog-content {
46
+ position: relative;
47
+ border: 0;
48
+ padding: .5em 1em;
49
+ background: none;
50
+ overflow: auto;
51
+ }
52
+ .ui-dialog .ui-dialog-buttonpane {
53
+ text-align: left;
54
+ border-width: 1px 0 0 0;
55
+ background-image: none;
56
+ margin-top: .5em;
57
+ padding: .3em 1em .5em .4em;
58
+ }
59
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
60
+ float: right;
61
+ }
62
+ .ui-dialog .ui-dialog-buttonpane button {
63
+ margin: .5em .4em .5em 0;
64
+ cursor: pointer;
65
+ }
66
+ .ui-dialog .ui-resizable-se {
67
+ width: 12px;
68
+ height: 12px;
69
+ right: -5px;
70
+ bottom: -5px;
71
+ background-position: 16px 16px;
72
+ }
73
+ .ui-draggable .ui-dialog-titlebar {
74
+ cursor: move;
75
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Menu 1.9.2
2
+ * jQuery UI Menu 1.10.0
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2012 jQuery Foundation and other contributors
5
+ * Copyright 2013 jQuery Foundation and other contributors
6
6
  * Released under the MIT license.
7
7
  * http://jquery.org/license
8
8
  *
@@ -12,23 +12,70 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }
16
- .ui-menu .ui-menu { margin-top: -3px; position: absolute; }
17
- .ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }
18
- .ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
19
- .ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
15
+ .ui-menu {
16
+ list-style: none;
17
+ padding: 2px;
18
+ margin: 0;
19
+ display: block;
20
+ outline: none;
21
+ }
22
+ .ui-menu .ui-menu {
23
+ margin-top: -3px;
24
+ position: absolute;
25
+ }
26
+ .ui-menu .ui-menu-item {
27
+ margin: 0;
28
+ padding: 0;
29
+ width: 100%;
30
+ }
31
+ .ui-menu .ui-menu-divider {
32
+ margin: 5px -2px 5px -2px;
33
+ height: 0;
34
+ font-size: 0;
35
+ line-height: 0;
36
+ border-width: 1px 0 0 0;
37
+ }
38
+ .ui-menu .ui-menu-item a {
39
+ text-decoration: none;
40
+ display: block;
41
+ padding: 2px .4em;
42
+ line-height: 1.5;
43
+ min-height: 0; /* support: IE7 */
44
+ font-weight: normal;
45
+ }
20
46
  .ui-menu .ui-menu-item a.ui-state-focus,
21
- .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }
47
+ .ui-menu .ui-menu-item a.ui-state-active {
48
+ font-weight: normal;
49
+ margin: -1px;
50
+ }
22
51
 
23
- .ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
24
- .ui-menu .ui-state-disabled a { cursor: default; }
52
+ .ui-menu .ui-state-disabled {
53
+ font-weight: normal;
54
+ margin: .4em 0 .2em;
55
+ line-height: 1.5;
56
+ }
57
+ .ui-menu .ui-state-disabled a {
58
+ cursor: default;
59
+ }
25
60
 
26
61
  /* icon support */
27
- .ui-menu-icons { position: relative; }
28
- .ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }
62
+ .ui-menu-icons {
63
+ position: relative;
64
+ }
65
+ .ui-menu-icons .ui-menu-item a {
66
+ position: relative;
67
+ padding-left: 2em;
68
+ }
29
69
 
30
70
  /* left-aligned */
31
- .ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }
71
+ .ui-menu .ui-icon {
72
+ position: absolute;
73
+ top: .2em;
74
+ left: .2em;
75
+ }
32
76
 
33
77
  /* right-aligned */
34
- .ui-menu .ui-menu-icon { position: static; float: right; }
78
+ .ui-menu .ui-menu-icon {
79
+ position: static;
80
+ float: right;
81
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Progressbar 1.9.2
2
+ * jQuery UI Progressbar 1.10.0
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2012 jQuery Foundation and other contributors
5
+ * Copyright 2013 jQuery Foundation and other contributors
6
6
  * Released under the MIT license.
7
7
  * http://jquery.org/license
8
8
  *
@@ -12,5 +12,21 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-progressbar { height:2em; text-align: left; overflow: hidden; }
16
- .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
15
+ .ui-progressbar {
16
+ height: 2em;
17
+ text-align: left;
18
+ overflow: hidden;
19
+ }
20
+ .ui-progressbar .ui-progressbar-value {
21
+ margin: -1px;
22
+ height: 100%;
23
+ }
24
+ .ui-progressbar .ui-progressbar-overlay {
25
+ background: url("images/animated-overlay.gif");
26
+ height: 100%;
27
+ filter: alpha(opacity=25);
28
+ opacity: 0.25;
29
+ }
30
+ .ui-progressbar-indeterminate .ui-progressbar-value {
31
+ background-image: none;
32
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Resizable 1.9.2
2
+ * jQuery UI Resizable 1.10.0
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2012 jQuery Foundation and other contributors
5
+ * Copyright 2013 jQuery Foundation and other contributors
6
6
  * Released under the MIT license.
7
7
  * http://jquery.org/license
8
8
  *
@@ -12,14 +12,71 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-resizable { position: relative;}
16
- .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
17
- .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
18
- .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
19
- .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
20
- .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
21
- .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
22
- .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
23
- .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
24
- .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
25
- .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
15
+ .ui-resizable {
16
+ position: relative;
17
+ }
18
+ .ui-resizable-handle {
19
+ position: absolute;
20
+ font-size: 0.1px;
21
+ display: block;
22
+ }
23
+ .ui-resizable-disabled .ui-resizable-handle,
24
+ .ui-resizable-autohide .ui-resizable-handle {
25
+ display: none;
26
+ }
27
+ .ui-resizable-n {
28
+ cursor: n-resize;
29
+ height: 7px;
30
+ width: 100%;
31
+ top: -5px;
32
+ left: 0;
33
+ }
34
+ .ui-resizable-s {
35
+ cursor: s-resize;
36
+ height: 7px;
37
+ width: 100%;
38
+ bottom: -5px;
39
+ left: 0;
40
+ }
41
+ .ui-resizable-e {
42
+ cursor: e-resize;
43
+ width: 7px;
44
+ right: -5px;
45
+ top: 0;
46
+ height: 100%;
47
+ }
48
+ .ui-resizable-w {
49
+ cursor: w-resize;
50
+ width: 7px;
51
+ left: -5px;
52
+ top: 0;
53
+ height: 100%;
54
+ }
55
+ .ui-resizable-se {
56
+ cursor: se-resize;
57
+ width: 12px;
58
+ height: 12px;
59
+ right: 1px;
60
+ bottom: 1px;
61
+ }
62
+ .ui-resizable-sw {
63
+ cursor: sw-resize;
64
+ width: 9px;
65
+ height: 9px;
66
+ left: -5px;
67
+ bottom: -5px;
68
+ }
69
+ .ui-resizable-nw {
70
+ cursor: nw-resize;
71
+ width: 9px;
72
+ height: 9px;
73
+ left: -5px;
74
+ top: -5px;
75
+ }
76
+ .ui-resizable-ne {
77
+ cursor: ne-resize;
78
+ width: 9px;
79
+ height: 9px;
80
+ right: -5px;
81
+ top: -5px;
82
+ }