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 Selectable 1.9.2
2
+ * jQuery UI Selectable 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,4 +12,8 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
15
+ .ui-selectable-helper {
16
+ position: absolute;
17
+ z-index: 100;
18
+ border: 1px dotted black;
19
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Slider 1.9.2
2
+ * jQuery UI Slider 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,18 +12,66 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-slider { position: relative; text-align: left; }
16
- .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
17
- .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
15
+ .ui-slider {
16
+ position: relative;
17
+ text-align: left;
18
+ }
19
+ .ui-slider .ui-slider-handle {
20
+ position: absolute;
21
+ z-index: 2;
22
+ width: 1.2em;
23
+ height: 1.2em;
24
+ cursor: default;
25
+ }
26
+ .ui-slider .ui-slider-range {
27
+ position: absolute;
28
+ z-index: 1;
29
+ font-size: .7em;
30
+ display: block;
31
+ border: 0;
32
+ background-position: 0 0;
33
+ }
18
34
 
19
- .ui-slider-horizontal { height: .8em; }
20
- .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
21
- .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
22
- .ui-slider-horizontal .ui-slider-range-min { left: 0; }
23
- .ui-slider-horizontal .ui-slider-range-max { right: 0; }
35
+ /* For IE8 - See #6727 */
36
+ .ui-slider.ui-state-disabled .ui-slider-handle,
37
+ .ui-slider.ui-state-disabled .ui-slider-range {
38
+ filter: inherit;
39
+ }
24
40
 
25
- .ui-slider-vertical { width: .8em; height: 100px; }
26
- .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
27
- .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
28
- .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
29
- .ui-slider-vertical .ui-slider-range-max { top: 0; }
41
+ .ui-slider-horizontal {
42
+ height: .8em;
43
+ }
44
+ .ui-slider-horizontal .ui-slider-handle {
45
+ top: -.3em;
46
+ margin-left: -.6em;
47
+ }
48
+ .ui-slider-horizontal .ui-slider-range {
49
+ top: 0;
50
+ height: 100%;
51
+ }
52
+ .ui-slider-horizontal .ui-slider-range-min {
53
+ left: 0;
54
+ }
55
+ .ui-slider-horizontal .ui-slider-range-max {
56
+ right: 0;
57
+ }
58
+
59
+ .ui-slider-vertical {
60
+ width: .8em;
61
+ height: 100px;
62
+ }
63
+ .ui-slider-vertical .ui-slider-handle {
64
+ left: -.3em;
65
+ margin-left: 0;
66
+ margin-bottom: -.6em;
67
+ }
68
+ .ui-slider-vertical .ui-slider-range {
69
+ left: 0;
70
+ width: 100%;
71
+ }
72
+ .ui-slider-vertical .ui-slider-range-min {
73
+ bottom: 0;
74
+ }
75
+ .ui-slider-vertical .ui-slider-range-max {
76
+ top: 0;
77
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Spinner 1.9.2
2
+ * jQuery UI Spinner 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
  *
@@ -13,16 +13,58 @@
13
13
  *= require jquery.ui.button
14
14
  *= require jquery.ui.theme
15
15
  */
16
- .ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
17
- .ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
18
- .ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
19
- .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
20
- .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
21
- .ui-spinner-up { top: 0; }
22
- .ui-spinner-down { bottom: 0; }
16
+ .ui-spinner {
17
+ position: relative;
18
+ display: inline-block;
19
+ overflow: hidden;
20
+ padding: 0;
21
+ vertical-align: middle;
22
+ }
23
+ .ui-spinner-input {
24
+ border: none;
25
+ background: none;
26
+ color: inherit;
27
+ padding: 0;
28
+ margin: .2em 0;
29
+ vertical-align: middle;
30
+ margin-left: .4em;
31
+ margin-right: 22px;
32
+ }
33
+ .ui-spinner-button {
34
+ width: 16px;
35
+ height: 50%;
36
+ font-size: .5em;
37
+ padding: 0;
38
+ margin: 0;
39
+ text-align: center;
40
+ position: absolute;
41
+ cursor: default;
42
+ display: block;
43
+ overflow: hidden;
44
+ right: 0;
45
+ }
46
+ /* more specificity required here to overide default borders */
47
+ .ui-spinner a.ui-spinner-button {
48
+ border-top: none;
49
+ border-bottom: none;
50
+ border-right: none;
51
+ }
52
+ /* vertical centre icon */
53
+ .ui-spinner .ui-icon {
54
+ position: absolute;
55
+ margin-top: -8px;
56
+ top: 50%;
57
+ left: 0;
58
+ }
59
+ .ui-spinner-up {
60
+ top: 0;
61
+ }
62
+ .ui-spinner-down {
63
+ bottom: 0;
64
+ }
23
65
 
24
66
  /* TR overrides */
25
67
  .ui-spinner .ui-icon-triangle-1-s {
26
68
  /* need to fix icons sprite */
27
- background-position:-65px -16px;
69
+ background-position: -65px -16px;
28
70
  }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * jQuery UI Tabs 1.9.2
2
+ * jQuery UI Tabs 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,11 +12,45 @@
12
12
  *= require jquery.ui.core
13
13
  *= require jquery.ui.theme
14
14
  */
15
- .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
16
- .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
17
- .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }
18
- .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
19
- .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }
20
- .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
21
- .ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
22
- .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
15
+ .ui-tabs {
16
+ position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
17
+ padding: .2em;
18
+ }
19
+ .ui-tabs .ui-tabs-nav {
20
+ margin: 0;
21
+ padding: .2em .2em 0;
22
+ }
23
+ .ui-tabs .ui-tabs-nav li {
24
+ list-style: none;
25
+ float: left;
26
+ position: relative;
27
+ top: 0;
28
+ margin: 1px .2em 0 0;
29
+ border-bottom: 0;
30
+ padding: 0;
31
+ white-space: nowrap;
32
+ }
33
+ .ui-tabs .ui-tabs-nav li a {
34
+ float: left;
35
+ padding: .5em 1em;
36
+ text-decoration: none;
37
+ }
38
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active {
39
+ margin-bottom: -1px;
40
+ padding-bottom: 1px;
41
+ }
42
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active a,
43
+ .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
44
+ .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
45
+ cursor: text;
46
+ }
47
+ .ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
48
+ .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
49
+ cursor: pointer;
50
+ }
51
+ .ui-tabs .ui-tabs-panel {
52
+ display: block;
53
+ border-width: 0;
54
+ padding: 1em 1.4em;
55
+ background: none;
56
+ }
@@ -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
  *
@@ -17,47 +17,174 @@
17
17
 
18
18
  /* Component containers
19
19
  ----------------------------------*/
20
- .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
21
- .ui-widget .ui-widget { font-size: 1em; }
22
- .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
23
- .ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(<%= image_path("jquery-ui/ui-bg_flat_75_ffffff_40x100.png") %>)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
24
- .ui-widget-content a { color: #222222/*{fcContent}*/; }
25
- .ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(<%= image_path("jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png") %>)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
26
- .ui-widget-header a { color: #222222/*{fcHeader}*/; }
20
+ .ui-widget {
21
+ font-family: Verdana,Arial,sans-serif/*{ffDefault}*/;
22
+ font-size: 1.1em/*{fsDefault}*/;
23
+ }
24
+ .ui-widget .ui-widget {
25
+ font-size: 1em;
26
+ }
27
+ .ui-widget input,
28
+ .ui-widget select,
29
+ .ui-widget textarea,
30
+ .ui-widget button {
31
+ font-family: Verdana,Arial,sans-serif/*{ffDefault}*/;
32
+ font-size: 1em;
33
+ }
34
+ .ui-widget-content {
35
+ border: 1px solid #aaaaaa/*{borderColorContent}*/;
36
+ background: #ffffff/*{bgColorContent}*/ url(<%= image_path("jquery-ui/ui-bg_flat_75_ffffff_40x100.png") %>)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/;
37
+ color: #222222/*{fcContent}*/;
38
+ }
39
+ .ui-widget-content a {
40
+ color: #222222/*{fcContent}*/;
41
+ }
42
+ .ui-widget-header {
43
+ border: 1px solid #aaaaaa/*{borderColorHeader}*/;
44
+ background: #cccccc/*{bgColorHeader}*/ url(<%= image_path("jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png") %>)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/;
45
+ color: #222222/*{fcHeader}*/;
46
+ font-weight: bold;
47
+ }
48
+ .ui-widget-header a {
49
+ color: #222222/*{fcHeader}*/;
50
+ }
27
51
 
28
52
  /* Interaction states
29
53
  ----------------------------------*/
30
- .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(<%= image_path("jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png") %>)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
31
- .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
32
- .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 { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(<%= image_path("jquery-ui/ui-bg_glass_75_dadada_1x400.png") %>)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
33
- .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #212121/*{fcHover}*/; text-decoration: none; }
34
- .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(<%= image_path("jquery-ui/ui-bg_glass_65_ffffff_1x400.png") %>)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
35
- .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; }
54
+ .ui-state-default,
55
+ .ui-widget-content .ui-state-default,
56
+ .ui-widget-header .ui-state-default {
57
+ border: 1px solid #d3d3d3/*{borderColorDefault}*/;
58
+ background: #e6e6e6/*{bgColorDefault}*/ url(<%= image_path("jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png") %>)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/;
59
+ font-weight: normal/*{fwDefault}*/;
60
+ color: #555555/*{fcDefault}*/;
61
+ }
62
+ .ui-state-default a,
63
+ .ui-state-default a:link,
64
+ .ui-state-default a:visited {
65
+ color: #555555/*{fcDefault}*/;
66
+ text-decoration: none;
67
+ }
68
+ .ui-state-hover,
69
+ .ui-widget-content .ui-state-hover,
70
+ .ui-widget-header .ui-state-hover,
71
+ .ui-state-focus,
72
+ .ui-widget-content .ui-state-focus,
73
+ .ui-widget-header .ui-state-focus {
74
+ border: 1px solid #999999/*{borderColorHover}*/;
75
+ background: #dadada/*{bgColorHover}*/ url(<%= image_path("jquery-ui/ui-bg_glass_75_dadada_1x400.png") %>)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/;
76
+ font-weight: normal/*{fwDefault}*/;
77
+ color: #212121/*{fcHover}*/;
78
+ }
79
+ .ui-state-hover a,
80
+ .ui-state-hover a:hover,
81
+ .ui-state-hover a:link,
82
+ .ui-state-hover a:visited {
83
+ color: #212121/*{fcHover}*/;
84
+ text-decoration: none;
85
+ }
86
+ .ui-state-active,
87
+ .ui-widget-content .ui-state-active,
88
+ .ui-widget-header .ui-state-active {
89
+ border: 1px solid #aaaaaa/*{borderColorActive}*/;
90
+ background: #ffffff/*{bgColorActive}*/ url(<%= image_path("jquery-ui/ui-bg_glass_65_ffffff_1x400.png") %>)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/;
91
+ font-weight: normal/*{fwDefault}*/;
92
+ color: #212121/*{fcActive}*/;
93
+ }
94
+ .ui-state-active a,
95
+ .ui-state-active a:link,
96
+ .ui-state-active a:visited {
97
+ color: #212121/*{fcActive}*/;
98
+ text-decoration: none;
99
+ }
36
100
 
37
101
  /* Interaction Cues
38
102
  ----------------------------------*/
39
- .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(<%= image_path("jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png") %>)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
40
- .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
41
- .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(<%= image_path("jquery-ui/ui-bg_glass_95_fef1ec_1x400.png") %>)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
42
- .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
43
- .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
44
- .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
45
- .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
46
- .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
47
- .ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); } /* For IE8 - See #6059 */
103
+ .ui-state-highlight,
104
+ .ui-widget-content .ui-state-highlight,
105
+ .ui-widget-header .ui-state-highlight {
106
+ border: 1px solid #fcefa1/*{borderColorHighlight}*/;
107
+ background: #fbf9ee/*{bgColorHighlight}*/ url(<%= image_path("jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png") %>)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/;
108
+ color: #363636/*{fcHighlight}*/;
109
+ }
110
+ .ui-state-highlight a,
111
+ .ui-widget-content .ui-state-highlight a,
112
+ .ui-widget-header .ui-state-highlight a {
113
+ color: #363636/*{fcHighlight}*/;
114
+ }
115
+ .ui-state-error,
116
+ .ui-widget-content .ui-state-error,
117
+ .ui-widget-header .ui-state-error {
118
+ border: 1px solid #cd0a0a/*{borderColorError}*/;
119
+ background: #fef1ec/*{bgColorError}*/ url(<%= image_path("jquery-ui/ui-bg_glass_95_fef1ec_1x400.png") %>)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/;
120
+ color: #cd0a0a/*{fcError}*/;
121
+ }
122
+ .ui-state-error a,
123
+ .ui-widget-content .ui-state-error a,
124
+ .ui-widget-header .ui-state-error a {
125
+ color: #cd0a0a/*{fcError}*/;
126
+ }
127
+ .ui-state-error-text,
128
+ .ui-widget-content .ui-state-error-text,
129
+ .ui-widget-header .ui-state-error-text {
130
+ color: #cd0a0a/*{fcError}*/;
131
+ }
132
+ .ui-priority-primary,
133
+ .ui-widget-content .ui-priority-primary,
134
+ .ui-widget-header .ui-priority-primary {
135
+ font-weight: bold;
136
+ }
137
+ .ui-priority-secondary,
138
+ .ui-widget-content .ui-priority-secondary,
139
+ .ui-widget-header .ui-priority-secondary {
140
+ opacity: .7;
141
+ filter:Alpha(Opacity=70);
142
+ font-weight: normal;
143
+ }
144
+ .ui-state-disabled,
145
+ .ui-widget-content .ui-state-disabled,
146
+ .ui-widget-header .ui-state-disabled {
147
+ opacity: .35;
148
+ filter:Alpha(Opacity=35);
149
+ background-image: none;
150
+ }
151
+ .ui-state-disabled .ui-icon {
152
+ filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
153
+ }
48
154
 
49
155
  /* Icons
50
156
  ----------------------------------*/
51
157
 
52
158
  /* states and images */
53
- .ui-icon { width: 16px; height: 16px; background-image: url(<%= image_path("jquery-ui/ui-icons_222222_256x240.png") %>)/*{iconsContent}*/; }
54
- .ui-widget-content .ui-icon {background-image: url(<%= image_path("jquery-ui/ui-icons_222222_256x240.png") %>)/*{iconsContent}*/; }
55
- .ui-widget-header .ui-icon {background-image: url(<%= image_path("jquery-ui/ui-icons_222222_256x240.png") %>)/*{iconsHeader}*/; }
56
- .ui-state-default .ui-icon { background-image: url(<%= image_path("jquery-ui/ui-icons_888888_256x240.png") %>)/*{iconsDefault}*/; }
57
- .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(<%= image_path("jquery-ui/ui-icons_454545_256x240.png") %>)/*{iconsHover}*/; }
58
- .ui-state-active .ui-icon {background-image: url(<%= image_path("jquery-ui/ui-icons_454545_256x240.png") %>)/*{iconsActive}*/; }
59
- .ui-state-highlight .ui-icon {background-image: url(<%= image_path("jquery-ui/ui-icons_2e83ff_256x240.png") %>)/*{iconsHighlight}*/; }
60
- .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(<%= image_path("jquery-ui/ui-icons_cd0a0a_256x240.png") %>)/*{iconsError}*/; }
159
+ .ui-icon {
160
+ width: 16px;
161
+ height: 16px;
162
+ background-position: 16px 16px;
163
+ }
164
+ .ui-icon,
165
+ .ui-widget-content .ui-icon {
166
+ background-image: url(<%= image_path("jquery-ui/ui-icons_222222_256x240.png") %>)/*{iconsContent}*/;
167
+ }
168
+ .ui-widget-header .ui-icon {
169
+ background-image: url(<%= image_path("jquery-ui/ui-icons_222222_256x240.png") %>)/*{iconsHeader}*/;
170
+ }
171
+ .ui-state-default .ui-icon {
172
+ background-image: url(<%= image_path("jquery-ui/ui-icons_888888_256x240.png") %>)/*{iconsDefault}*/;
173
+ }
174
+ .ui-state-hover .ui-icon,
175
+ .ui-state-focus .ui-icon {
176
+ background-image: url(<%= image_path("jquery-ui/ui-icons_454545_256x240.png") %>)/*{iconsHover}*/;
177
+ }
178
+ .ui-state-active .ui-icon {
179
+ background-image: url(<%= image_path("jquery-ui/ui-icons_454545_256x240.png") %>)/*{iconsActive}*/;
180
+ }
181
+ .ui-state-highlight .ui-icon {
182
+ background-image: url(<%= image_path("jquery-ui/ui-icons_2e83ff_256x240.png") %>)/*{iconsHighlight}*/;
183
+ }
184
+ .ui-state-error .ui-icon,
185
+ .ui-state-error-text .ui-icon {
186
+ background-image: url(<%= image_path("jquery-ui/ui-icons_cd0a0a_256x240.png") %>)/*{iconsError}*/;
187
+ }
61
188
 
62
189
  /* positioning */
63
190
  .ui-icon-carat-1-n { background-position: 0 0; }
@@ -241,11 +368,42 @@
241
368
  ----------------------------------*/
242
369
 
243
370
  /* Corner radius */
244
- .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -khtml-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
245
- .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -khtml-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
246
- .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
247
- .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
371
+ .ui-corner-all,
372
+ .ui-corner-top,
373
+ .ui-corner-left,
374
+ .ui-corner-tl {
375
+ border-top-left-radius: 4px/*{cornerRadius}*/;
376
+ }
377
+ .ui-corner-all,
378
+ .ui-corner-top,
379
+ .ui-corner-right,
380
+ .ui-corner-tr {
381
+ border-top-right-radius: 4px/*{cornerRadius}*/;
382
+ }
383
+ .ui-corner-all,
384
+ .ui-corner-bottom,
385
+ .ui-corner-left,
386
+ .ui-corner-bl {
387
+ border-bottom-left-radius: 4px/*{cornerRadius}*/;
388
+ }
389
+ .ui-corner-all,
390
+ .ui-corner-bottom,
391
+ .ui-corner-right,
392
+ .ui-corner-br {
393
+ border-bottom-right-radius: 4px/*{cornerRadius}*/;
394
+ }
248
395
 
249
396
  /* Overlays */
250
- .ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(<%= image_path("jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png") %>)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
251
- .ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(<%= image_path("jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png") %>)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }
397
+ .ui-widget-overlay {
398
+ background: #aaaaaa/*{bgColorOverlay}*/ url(<%= image_path("jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png") %>)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/;
399
+ opacity: .3/*{opacityOverlay}*/;
400
+ filter: Alpha(Opacity=30)/*{opacityFilterOverlay}*/;
401
+ }
402
+ .ui-widget-shadow {
403
+ margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/;
404
+ padding: 8px/*{thicknessShadow}*/;
405
+ background: #aaaaaa/*{bgColorShadow}*/ url(<%= image_path("jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png") %>)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/;
406
+ opacity: .3/*{opacityShadow}*/;
407
+ filter: Alpha(Opacity=30)/*{opacityFilterShadow}*/;
408
+ border-radius: 8px/*{cornerRadiusShadow}*/;
409
+ }