jquery-ui-rails 3.0.1 → 4.0.0

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.

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
@@ -3,10 +3,10 @@
3
3
  //= require jquery.ui.position
4
4
 
5
5
  /*!
6
- * jQuery UI Tooltip 1.9.2
6
+ * jQuery UI Tooltip 1.10.0
7
7
  * http://jqueryui.com
8
8
  *
9
- * Copyright 2012 jQuery Foundation and other contributors
9
+ * Copyright 2013 jQuery Foundation and other contributors
10
10
  * Released under the MIT license.
11
11
  * http://jquery.org/license
12
12
  *
@@ -47,10 +47,14 @@ function removeDescribedBy( elem ) {
47
47
  }
48
48
 
49
49
  $.widget( "ui.tooltip", {
50
- version: "1.9.2",
50
+ version: "1.10.0",
51
51
  options: {
52
52
  content: function() {
53
- return $( this ).attr( "title" );
53
+ // support: IE<9, Opera in jQuery <1.7
54
+ // .text() can't accept undefined, so coerce to a string
55
+ var title = $( this ).attr( "title" ) || "";
56
+ // Escape title, since we're going from an attribute to raw HTML
57
+ return $( "<a>" ).text( title ).html();
54
58
  },
55
59
  hide: true,
56
60
  // Disabled elements have inconsistent behavior across browsers (#8661)
@@ -115,7 +119,7 @@ $.widget( "ui.tooltip", {
115
119
  });
116
120
 
117
121
  // remove title attributes to prevent native tooltips
118
- this.element.find( this.options.items ).andSelf().each(function() {
122
+ this.element.find( this.options.items ).addBack().each(function() {
119
123
  var element = $( this );
120
124
  if ( element.is( "[title]" ) ) {
121
125
  element
@@ -127,7 +131,7 @@ $.widget( "ui.tooltip", {
127
131
 
128
132
  _enable: function() {
129
133
  // restore title attributes
130
- this.element.find( this.options.items ).andSelf().each(function() {
134
+ this.element.find( this.options.items ).addBack().each(function() {
131
135
  var element = $( this );
132
136
  if ( element.data( "ui-tooltip-title" ) ) {
133
137
  element.attr( "title", element.data( "ui-tooltip-title" ) );
@@ -272,7 +276,7 @@ $.widget( "ui.tooltip", {
272
276
  // as the tooltip is visible, position the tooltip using the most recent
273
277
  // event.
274
278
  if ( this.options.show && this.options.show.delay ) {
275
- delayedShow = setInterval(function() {
279
+ delayedShow = this.delayedShow = setInterval(function() {
276
280
  if ( tooltip.is( ":visible" ) ) {
277
281
  position( positionOption.of );
278
282
  clearInterval( delayedShow );
@@ -314,6 +318,9 @@ $.widget( "ui.tooltip", {
314
318
  return;
315
319
  }
316
320
 
321
+ // Clear the interval for delayed tracking tooltips
322
+ clearInterval( this.delayedShow );
323
+
317
324
  // only set title if we had one before (see comment in _open())
318
325
  if ( target.data( "ui-tooltip-title" ) ) {
319
326
  target.attr( "title", target.data( "ui-tooltip-title" ) );
@@ -359,9 +366,6 @@ $.widget( "ui.tooltip", {
359
366
  .addClass( "ui-tooltip-content" )
360
367
  .appendTo( tooltip );
361
368
  tooltip.appendTo( this.document[0].body );
362
- if ( $.fn.bgiframe ) {
363
- tooltip.bgiframe();
364
- }
365
369
  this.tooltips[ id ] = element;
366
370
  return tooltip;
367
371
  },
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Widget 1.9.2
2
+ * jQuery UI Widget 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
  *
@@ -25,6 +25,9 @@ $.cleanData = function( elems ) {
25
25
 
26
26
  $.widget = function( name, base, prototype ) {
27
27
  var fullName, existingConstructor, constructor, basePrototype,
28
+ // proxiedPrototype allows the provided prototype to remain unmodified
29
+ // so that it can be used as a mixin for multiple widgets (#8876)
30
+ proxiedPrototype = {},
28
31
  namespace = name.split( "." )[ 0 ];
29
32
 
30
33
  name = name.split( "." )[ 1 ];
@@ -71,43 +74,43 @@ $.widget = function( name, base, prototype ) {
71
74
  // inheriting from
72
75
  basePrototype.options = $.widget.extend( {}, basePrototype.options );
73
76
  $.each( prototype, function( prop, value ) {
74
- if ( $.isFunction( value ) ) {
75
- prototype[ prop ] = (function() {
76
- var _super = function() {
77
- return base.prototype[ prop ].apply( this, arguments );
78
- },
79
- _superApply = function( args ) {
80
- return base.prototype[ prop ].apply( this, args );
81
- };
82
- return function() {
83
- var __super = this._super,
84
- __superApply = this._superApply,
85
- returnValue;
86
-
87
- this._super = _super;
88
- this._superApply = _superApply;
89
-
90
- returnValue = value.apply( this, arguments );
91
-
92
- this._super = __super;
93
- this._superApply = __superApply;
94
-
95
- return returnValue;
96
- };
97
- })();
77
+ if ( !$.isFunction( value ) ) {
78
+ proxiedPrototype[ prop ] = value;
79
+ return;
98
80
  }
81
+ proxiedPrototype[ prop ] = (function() {
82
+ var _super = function() {
83
+ return base.prototype[ prop ].apply( this, arguments );
84
+ },
85
+ _superApply = function( args ) {
86
+ return base.prototype[ prop ].apply( this, args );
87
+ };
88
+ return function() {
89
+ var __super = this._super,
90
+ __superApply = this._superApply,
91
+ returnValue;
92
+
93
+ this._super = _super;
94
+ this._superApply = _superApply;
95
+
96
+ returnValue = value.apply( this, arguments );
97
+
98
+ this._super = __super;
99
+ this._superApply = __superApply;
100
+
101
+ return returnValue;
102
+ };
103
+ })();
99
104
  });
100
105
  constructor.prototype = $.widget.extend( basePrototype, {
101
106
  // TODO: remove support for widgetEventPrefix
102
107
  // always use the name + a colon as the prefix, e.g., draggable:start
103
108
  // don't prefix for widgets that aren't DOM-based
104
109
  widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name
105
- }, prototype, {
110
+ }, proxiedPrototype, {
106
111
  constructor: constructor,
107
112
  namespace: namespace,
108
113
  widgetName: name,
109
- // TODO remove widgetBaseClass, see #8155
110
- widgetBaseClass: fullName,
111
114
  widgetFullName: fullName
112
115
  });
113
116
 
@@ -233,9 +236,6 @@ $.Widget.prototype = {
233
236
  this.focusable = $();
234
237
 
235
238
  if ( element !== this ) {
236
- // 1.9 BC for #7810
237
- // TODO remove dual storage
238
- $.data( element, this.widgetName, this );
239
239
  $.data( element, this.widgetFullName, this );
240
240
  this._on( true, this.element, {
241
241
  remove: function( event ) {
@@ -502,7 +502,7 @@ $.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
502
502
  if ( options.delay ) {
503
503
  element.delay( options.delay );
504
504
  }
505
- if ( hasOptions && $.effects && ( $.effects.effect[ effectName ] || $.uiBackCompat !== false && $.effects[ effectName ] ) ) {
505
+ if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
506
506
  element[ method ]( options );
507
507
  } else if ( effectName !== method && element[ effectName ] ) {
508
508
  element[ effectName ]( options.duration, options.easing, callback );
@@ -518,11 +518,4 @@ $.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
518
518
  };
519
519
  });
520
520
 
521
- // DEPRECATED
522
- if ( $.uiBackCompat !== false ) {
523
- $.Widget.prototype._getCreateOptions = function() {
524
- return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ];
525
- };
526
- }
527
-
528
521
  })( jQuery );
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Accordion 1.9.2
2
+ * jQuery UI Accordion 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,9 +12,31 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }
16
- .ui-accordion .ui-accordion-icons { padding-left: 2.2em; }
17
- .ui-accordion .ui-accordion-noicons { padding-left: .7em; }
18
- .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }
19
- .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
20
- .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }
15
+ .ui-accordion .ui-accordion-header {
16
+ display: block;
17
+ cursor: pointer;
18
+ position: relative;
19
+ margin-top: 2px;
20
+ padding: .5em .5em .5em .7em;
21
+ min-height: 0; /* support: IE7 */
22
+ }
23
+ .ui-accordion .ui-accordion-icons {
24
+ padding-left: 2.2em;
25
+ }
26
+ .ui-accordion .ui-accordion-noicons {
27
+ padding-left: .7em;
28
+ }
29
+ .ui-accordion .ui-accordion-icons .ui-accordion-icons {
30
+ padding-left: 2.2em;
31
+ }
32
+ .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
33
+ position: absolute;
34
+ left: .5em;
35
+ top: 50%;
36
+ margin-top: -8px;
37
+ }
38
+ .ui-accordion .ui-accordion-content {
39
+ padding: 1em 2.2em;
40
+ border-top: 0;
41
+ overflow: auto;
42
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI CSS Framework 1.9.2
2
+ * jQuery UI CSS Framework 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
  *
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Autocomplete 1.9.2
2
+ * jQuery UI Autocomplete 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
  *
@@ -19,6 +19,3 @@
19
19
  left: 0;
20
20
  cursor: default;
21
21
  }
22
-
23
- /* workarounds */
24
- * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI CSS Framework 1.9.2
2
+ * jQuery UI CSS Framework 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
  *
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Button 1.9.2
2
+ * jQuery UI Button 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,33 +12,107 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
16
- .ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }
17
- .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
18
- button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
19
- .ui-button-icons-only { width: 3.4em; }
20
- button.ui-button-icons-only { width: 3.7em; }
15
+ .ui-button {
16
+ display: inline-block;
17
+ position: relative;
18
+ padding: 0;
19
+ line-height: normal;
20
+ margin-right: .1em;
21
+ cursor: pointer;
22
+ vertical-align: middle;
23
+ text-align: center;
24
+ overflow: visible; /* removes extra width in IE */
25
+ }
26
+ .ui-button,
27
+ .ui-button:link,
28
+ .ui-button:visited,
29
+ .ui-button:hover,
30
+ .ui-button:active {
31
+ text-decoration: none;
32
+ }
33
+ /* to make room for the icon, a width needs to be set here */
34
+ .ui-button-icon-only {
35
+ width: 2.2em;
36
+ }
37
+ /* button elements seem to need a little more width */
38
+ button.ui-button-icon-only {
39
+ width: 2.4em;
40
+ }
41
+ .ui-button-icons-only {
42
+ width: 3.4em;
43
+ }
44
+ button.ui-button-icons-only {
45
+ width: 3.7em;
46
+ }
21
47
 
22
- /*button text element */
23
- .ui-button .ui-button-text { display: block; line-height: 1.4; }
24
- .ui-button-text-only .ui-button-text { padding: .4em 1em; }
25
- .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
26
- .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
27
- .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
28
- .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
48
+ /* button text element */
49
+ .ui-button .ui-button-text {
50
+ display: block;
51
+ line-height: normal;
52
+ }
53
+ .ui-button-text-only .ui-button-text {
54
+ padding: .4em 1em;
55
+ }
56
+ .ui-button-icon-only .ui-button-text,
57
+ .ui-button-icons-only .ui-button-text {
58
+ padding: .4em;
59
+ text-indent: -9999999px;
60
+ }
61
+ .ui-button-text-icon-primary .ui-button-text,
62
+ .ui-button-text-icons .ui-button-text {
63
+ padding: .4em 1em .4em 2.1em;
64
+ }
65
+ .ui-button-text-icon-secondary .ui-button-text,
66
+ .ui-button-text-icons .ui-button-text {
67
+ padding: .4em 2.1em .4em 1em;
68
+ }
69
+ .ui-button-text-icons .ui-button-text {
70
+ padding-left: 2.1em;
71
+ padding-right: 2.1em;
72
+ }
29
73
  /* no icon support for input elements, provide padding by default */
30
- input.ui-button { padding: .4em 1em; }
74
+ input.ui-button {
75
+ padding: .4em 1em;
76
+ }
31
77
 
32
- /*button icon element(s) */
33
- .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
34
- .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
35
- .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
36
- .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
37
- .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
78
+ /* button icon element(s) */
79
+ .ui-button-icon-only .ui-icon,
80
+ .ui-button-text-icon-primary .ui-icon,
81
+ .ui-button-text-icon-secondary .ui-icon,
82
+ .ui-button-text-icons .ui-icon,
83
+ .ui-button-icons-only .ui-icon {
84
+ position: absolute;
85
+ top: 50%;
86
+ margin-top: -8px;
87
+ }
88
+ .ui-button-icon-only .ui-icon {
89
+ left: 50%;
90
+ margin-left: -8px;
91
+ }
92
+ .ui-button-text-icon-primary .ui-button-icon-primary,
93
+ .ui-button-text-icons .ui-button-icon-primary,
94
+ .ui-button-icons-only .ui-button-icon-primary {
95
+ left: .5em;
96
+ }
97
+ .ui-button-text-icon-secondary .ui-button-icon-secondary,
98
+ .ui-button-text-icons .ui-button-icon-secondary,
99
+ .ui-button-icons-only .ui-button-icon-secondary {
100
+ right: .5em;
101
+ }
38
102
 
39
- /*button sets*/
40
- .ui-buttonset { margin-right: 7px; }
41
- .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
103
+ /* button sets */
104
+ .ui-buttonset {
105
+ margin-right: 7px;
106
+ }
107
+ .ui-buttonset .ui-button {
108
+ margin-left: 0;
109
+ margin-right: -.3em;
110
+ }
42
111
 
43
112
  /* workarounds */
44
- button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
113
+ /* reset extra padding in Firefox, see h5bp.com/l */
114
+ input.ui-button::-moz-focus-inner,
115
+ button.ui-button::-moz-focus-inner {
116
+ border: 0;
117
+ padding: 0;
118
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI CSS Framework 1.9.2
2
+ * jQuery UI CSS Framework 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
  *
@@ -11,29 +11,82 @@
11
11
 
12
12
  /* Layout helpers
13
13
  ----------------------------------*/
14
- .ui-helper-hidden { display: none; }
15
- .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
16
- .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
17
- .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
18
- .ui-helper-clearfix:after { clear: both; }
19
- .ui-helper-clearfix { zoom: 1; }
20
- .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
14
+ .ui-helper-hidden {
15
+ display: none;
16
+ }
17
+ .ui-helper-hidden-accessible {
18
+ border: 0;
19
+ clip: rect(0 0 0 0);
20
+ height: 1px;
21
+ margin: -1px;
22
+ overflow: hidden;
23
+ padding: 0;
24
+ position: absolute;
25
+ width: 1px;
26
+ }
27
+ .ui-helper-reset {
28
+ margin: 0;
29
+ padding: 0;
30
+ border: 0;
31
+ outline: 0;
32
+ line-height: 1.3;
33
+ text-decoration: none;
34
+ font-size: 100%;
35
+ list-style: none;
36
+ }
37
+ .ui-helper-clearfix:before,
38
+ .ui-helper-clearfix:after {
39
+ content: "";
40
+ display: table;
41
+ }
42
+ .ui-helper-clearfix:after {
43
+ clear: both;
44
+ }
45
+ .ui-helper-clearfix {
46
+ min-height: 0; /* support: IE7 */
47
+ }
48
+ .ui-helper-zfix {
49
+ width: 100%;
50
+ height: 100%;
51
+ top: 0;
52
+ left: 0;
53
+ position: absolute;
54
+ opacity: 0;
55
+ filter:Alpha(Opacity=0);
56
+ }
57
+
58
+ .ui-front {
59
+ z-index: 100;
60
+ }
21
61
 
22
62
 
23
63
  /* Interaction Cues
24
64
  ----------------------------------*/
25
- .ui-state-disabled { cursor: default !important; }
65
+ .ui-state-disabled {
66
+ cursor: default !important;
67
+ }
26
68
 
27
69
 
28
70
  /* Icons
29
71
  ----------------------------------*/
30
72
 
31
73
  /* states and images */
32
- .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
74
+ .ui-icon {
75
+ display: block;
76
+ text-indent: -99999px;
77
+ overflow: hidden;
78
+ background-repeat: no-repeat;
79
+ }
33
80
 
34
81
 
35
82
  /* Misc visuals
36
83
  ----------------------------------*/
37
84
 
38
85
  /* Overlays */
39
- .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
86
+ .ui-widget-overlay {
87
+ position: fixed;
88
+ top: 0;
89
+ left: 0;
90
+ width: 100%;
91
+ height: 100%;
92
+ }