jquery-ui-sass-rails 4.0.2.beta1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/.gitmodules +3 -0
- data/.travis.yml +3 -0
- data/Gemfile +3 -0
- data/History.md +5 -0
- data/License.txt +2 -0
- data/README.md +62 -0
- data/Rakefile +75 -0
- data/app/assets/stylesheets/_jquery.ui.variables.css.scss +78 -0
- data/app/assets/stylesheets/jquery.ui.accordion.css.scss +39 -0
- data/app/assets/stylesheets/jquery.ui.all.css.scss +11 -0
- data/app/assets/stylesheets/jquery.ui.autocomplete.css.scss +17 -0
- data/app/assets/stylesheets/jquery.ui.base.css.scss +11 -0
- data/app/assets/stylesheets/jquery.ui.button.css.scss +115 -0
- data/app/assets/stylesheets/jquery.ui.core.css.scss +92 -0
- data/app/assets/stylesheets/jquery.ui.datepicker.css.scss +179 -0
- data/app/assets/stylesheets/jquery.ui.dialog.css.scss +70 -0
- data/app/assets/stylesheets/jquery.ui.menu.css.scss +78 -0
- data/app/assets/stylesheets/jquery.ui.progressbar.css.scss +29 -0
- data/app/assets/stylesheets/jquery.ui.resizable.css.scss +79 -0
- data/app/assets/stylesheets/jquery.ui.selectable.css.scss +16 -0
- data/app/assets/stylesheets/jquery.ui.slider.css.scss +74 -0
- data/app/assets/stylesheets/jquery.ui.spinner.css.scss +66 -0
- data/app/assets/stylesheets/jquery.ui.tabs.css.scss +53 -0
- data/app/assets/stylesheets/jquery.ui.theme.css.scss +408 -0
- data/app/assets/stylesheets/jquery.ui.tooltip.css.scss +20 -0
- data/lib/jquery-ui-sass-rails.rb +1 -0
- data/lib/jquery/ui/sass/rails.rb +2 -0
- data/lib/jquery/ui/sass/rails/engine.rb +10 -0
- data/lib/jquery/ui/sass/rails/version.rb +10 -0
- metadata +140 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery UI CSS Framework 1.10.0
|
3
|
+
* http://jqueryui.com
|
4
|
+
*
|
5
|
+
* Copyright 2013 jQuery Foundation and other contributors
|
6
|
+
* Released under the MIT license.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://docs.jquery.com/UI/Theming/API
|
10
|
+
*/
|
11
|
+
|
12
|
+
/* Layout helpers
|
13
|
+
----------------------------------*/
|
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
|
+
}
|
61
|
+
|
62
|
+
|
63
|
+
/* Interaction Cues
|
64
|
+
----------------------------------*/
|
65
|
+
.ui-state-disabled {
|
66
|
+
cursor: default !important;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
/* Icons
|
71
|
+
----------------------------------*/
|
72
|
+
|
73
|
+
/* states and images */
|
74
|
+
.ui-icon {
|
75
|
+
display: block;
|
76
|
+
text-indent: -99999px;
|
77
|
+
overflow: hidden;
|
78
|
+
background-repeat: no-repeat;
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
/* Misc visuals
|
83
|
+
----------------------------------*/
|
84
|
+
|
85
|
+
/* Overlays */
|
86
|
+
.ui-widget-overlay {
|
87
|
+
position: fixed;
|
88
|
+
top: 0;
|
89
|
+
left: 0;
|
90
|
+
width: 100%;
|
91
|
+
height: 100%;
|
92
|
+
}
|
@@ -0,0 +1,179 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery UI Datepicker 1.10.0
|
3
|
+
* http://jqueryui.com
|
4
|
+
*
|
5
|
+
* Copyright 2013 jQuery Foundation and other contributors
|
6
|
+
* Released under the MIT license.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://docs.jquery.com/UI/Datepicker#theming
|
10
|
+
*/
|
11
|
+
|
12
|
+
.ui-datepicker {
|
13
|
+
width: 17em;
|
14
|
+
padding: .2em .2em 0;
|
15
|
+
display: none;
|
16
|
+
}
|
17
|
+
.ui-datepicker .ui-datepicker-header {
|
18
|
+
position: relative;
|
19
|
+
padding: .2em 0;
|
20
|
+
}
|
21
|
+
.ui-datepicker .ui-datepicker-prev,
|
22
|
+
.ui-datepicker .ui-datepicker-next {
|
23
|
+
position: absolute;
|
24
|
+
top: 2px;
|
25
|
+
width: 1.8em;
|
26
|
+
height: 1.8em;
|
27
|
+
}
|
28
|
+
.ui-datepicker .ui-datepicker-prev-hover,
|
29
|
+
.ui-datepicker .ui-datepicker-next-hover {
|
30
|
+
top: 1px;
|
31
|
+
}
|
32
|
+
.ui-datepicker .ui-datepicker-prev {
|
33
|
+
left: 2px;
|
34
|
+
}
|
35
|
+
.ui-datepicker .ui-datepicker-next {
|
36
|
+
right: 2px;
|
37
|
+
}
|
38
|
+
.ui-datepicker .ui-datepicker-prev-hover {
|
39
|
+
left: 1px;
|
40
|
+
}
|
41
|
+
.ui-datepicker .ui-datepicker-next-hover {
|
42
|
+
right: 1px;
|
43
|
+
}
|
44
|
+
.ui-datepicker .ui-datepicker-prev span,
|
45
|
+
.ui-datepicker .ui-datepicker-next span {
|
46
|
+
display: block;
|
47
|
+
position: absolute;
|
48
|
+
left: 50%;
|
49
|
+
margin-left: -8px;
|
50
|
+
top: 50%;
|
51
|
+
margin-top: -8px;
|
52
|
+
}
|
53
|
+
.ui-datepicker .ui-datepicker-title {
|
54
|
+
margin: 0 2.3em;
|
55
|
+
line-height: 1.8em;
|
56
|
+
text-align: center;
|
57
|
+
}
|
58
|
+
.ui-datepicker .ui-datepicker-title select {
|
59
|
+
font-size: 1em;
|
60
|
+
margin: 1px 0;
|
61
|
+
}
|
62
|
+
.ui-datepicker select.ui-datepicker-month-year {
|
63
|
+
width: 100%;
|
64
|
+
}
|
65
|
+
.ui-datepicker select.ui-datepicker-month,
|
66
|
+
.ui-datepicker select.ui-datepicker-year {
|
67
|
+
width: 49%;
|
68
|
+
}
|
69
|
+
.ui-datepicker table {
|
70
|
+
width: 100%;
|
71
|
+
font-size: .9em;
|
72
|
+
border-collapse: collapse;
|
73
|
+
margin: 0 0 .4em;
|
74
|
+
}
|
75
|
+
.ui-datepicker th {
|
76
|
+
padding: .7em .3em;
|
77
|
+
text-align: center;
|
78
|
+
font-weight: bold;
|
79
|
+
border: 0;
|
80
|
+
}
|
81
|
+
.ui-datepicker td {
|
82
|
+
border: 0;
|
83
|
+
padding: 1px;
|
84
|
+
}
|
85
|
+
.ui-datepicker td span,
|
86
|
+
.ui-datepicker td a {
|
87
|
+
display: block;
|
88
|
+
padding: .2em;
|
89
|
+
text-align: right;
|
90
|
+
text-decoration: none;
|
91
|
+
}
|
92
|
+
.ui-datepicker .ui-datepicker-buttonpane {
|
93
|
+
background-image: none;
|
94
|
+
margin: .7em 0 0 0;
|
95
|
+
padding: 0 .2em;
|
96
|
+
border-left: 0;
|
97
|
+
border-right: 0;
|
98
|
+
border-bottom: 0;
|
99
|
+
}
|
100
|
+
.ui-datepicker .ui-datepicker-buttonpane button {
|
101
|
+
float: right;
|
102
|
+
margin: .5em .2em .4em;
|
103
|
+
cursor: pointer;
|
104
|
+
padding: .2em .6em .3em .6em;
|
105
|
+
width: auto;
|
106
|
+
overflow: visible;
|
107
|
+
}
|
108
|
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
109
|
+
float: left;
|
110
|
+
}
|
111
|
+
|
112
|
+
/* with multiple calendars */
|
113
|
+
.ui-datepicker.ui-datepicker-multi {
|
114
|
+
width: auto;
|
115
|
+
}
|
116
|
+
.ui-datepicker-multi .ui-datepicker-group {
|
117
|
+
float: left;
|
118
|
+
}
|
119
|
+
.ui-datepicker-multi .ui-datepicker-group table {
|
120
|
+
width: 95%;
|
121
|
+
margin: 0 auto .4em;
|
122
|
+
}
|
123
|
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
124
|
+
width: 50%;
|
125
|
+
}
|
126
|
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
127
|
+
width: 33.3%;
|
128
|
+
}
|
129
|
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
130
|
+
width: 25%;
|
131
|
+
}
|
132
|
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
133
|
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
134
|
+
border-left-width: 0;
|
135
|
+
}
|
136
|
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
137
|
+
clear: left;
|
138
|
+
}
|
139
|
+
.ui-datepicker-row-break {
|
140
|
+
clear: both;
|
141
|
+
width: 100%;
|
142
|
+
font-size: 0;
|
143
|
+
}
|
144
|
+
|
145
|
+
/* RTL support */
|
146
|
+
.ui-datepicker-rtl {
|
147
|
+
direction: rtl;
|
148
|
+
}
|
149
|
+
.ui-datepicker-rtl .ui-datepicker-prev {
|
150
|
+
right: 2px;
|
151
|
+
left: auto;
|
152
|
+
}
|
153
|
+
.ui-datepicker-rtl .ui-datepicker-next {
|
154
|
+
left: 2px;
|
155
|
+
right: auto;
|
156
|
+
}
|
157
|
+
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
158
|
+
right: 1px;
|
159
|
+
left: auto;
|
160
|
+
}
|
161
|
+
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
162
|
+
left: 1px;
|
163
|
+
right: auto;
|
164
|
+
}
|
165
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
166
|
+
clear: right;
|
167
|
+
}
|
168
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
169
|
+
float: left;
|
170
|
+
}
|
171
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
172
|
+
.ui-datepicker-rtl .ui-datepicker-group {
|
173
|
+
float: right;
|
174
|
+
}
|
175
|
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
176
|
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
177
|
+
border-right-width: 0;
|
178
|
+
border-left-width: 1px;
|
179
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery UI Dialog 1.10.0
|
3
|
+
* http://jqueryui.com
|
4
|
+
*
|
5
|
+
* Copyright 2013 jQuery Foundation and other contributors
|
6
|
+
* Released under the MIT license.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://docs.jquery.com/UI/Dialog#theming
|
10
|
+
*/
|
11
|
+
|
12
|
+
.ui-dialog {
|
13
|
+
position: absolute;
|
14
|
+
top: 0;
|
15
|
+
left: 0;
|
16
|
+
padding: .2em;
|
17
|
+
outline: 0;
|
18
|
+
}
|
19
|
+
.ui-dialog .ui-dialog-titlebar {
|
20
|
+
padding: .4em 1em;
|
21
|
+
position: relative;
|
22
|
+
}
|
23
|
+
.ui-dialog .ui-dialog-title {
|
24
|
+
float: left;
|
25
|
+
margin: .1em 0;
|
26
|
+
white-space: nowrap;
|
27
|
+
width: 90%;
|
28
|
+
overflow: hidden;
|
29
|
+
text-overflow: ellipsis;
|
30
|
+
}
|
31
|
+
.ui-dialog .ui-dialog-titlebar-close {
|
32
|
+
position: absolute;
|
33
|
+
right: .3em;
|
34
|
+
top: 50%;
|
35
|
+
width: 21px;
|
36
|
+
margin: -10px 0 0 0;
|
37
|
+
padding: 1px;
|
38
|
+
height: 20px;
|
39
|
+
}
|
40
|
+
.ui-dialog .ui-dialog-content {
|
41
|
+
position: relative;
|
42
|
+
border: 0;
|
43
|
+
padding: .5em 1em;
|
44
|
+
background: none;
|
45
|
+
overflow: auto;
|
46
|
+
}
|
47
|
+
.ui-dialog .ui-dialog-buttonpane {
|
48
|
+
text-align: left;
|
49
|
+
border-width: 1px 0 0 0;
|
50
|
+
background-image: none;
|
51
|
+
margin-top: .5em;
|
52
|
+
padding: .3em 1em .5em .4em;
|
53
|
+
}
|
54
|
+
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
55
|
+
float: right;
|
56
|
+
}
|
57
|
+
.ui-dialog .ui-dialog-buttonpane button {
|
58
|
+
margin: .5em .4em .5em 0;
|
59
|
+
cursor: pointer;
|
60
|
+
}
|
61
|
+
.ui-dialog .ui-resizable-se {
|
62
|
+
width: 12px;
|
63
|
+
height: 12px;
|
64
|
+
right: -5px;
|
65
|
+
bottom: -5px;
|
66
|
+
background-position: 16px 16px;
|
67
|
+
}
|
68
|
+
.ui-draggable .ui-dialog-titlebar {
|
69
|
+
cursor: move;
|
70
|
+
}
|
@@ -0,0 +1,78 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery UI Menu 1.10.0
|
3
|
+
* http://jqueryui.com
|
4
|
+
*
|
5
|
+
* Copyright 2013 jQuery Foundation and other contributors
|
6
|
+
* Released under the MIT license.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://docs.jquery.com/UI/Menu#theming
|
10
|
+
*/
|
11
|
+
|
12
|
+
.ui-menu {
|
13
|
+
list-style: none;
|
14
|
+
padding: 2px;
|
15
|
+
margin: 0;
|
16
|
+
display: block;
|
17
|
+
outline: none;
|
18
|
+
}
|
19
|
+
.ui-menu .ui-menu {
|
20
|
+
margin-top: -3px;
|
21
|
+
position: absolute;
|
22
|
+
}
|
23
|
+
.ui-menu .ui-menu-item {
|
24
|
+
margin: 0;
|
25
|
+
padding: 0;
|
26
|
+
width: 100%;
|
27
|
+
}
|
28
|
+
.ui-menu .ui-menu-divider {
|
29
|
+
margin: 5px -2px 5px -2px;
|
30
|
+
height: 0;
|
31
|
+
font-size: 0;
|
32
|
+
line-height: 0;
|
33
|
+
border-width: 1px 0 0 0;
|
34
|
+
}
|
35
|
+
.ui-menu .ui-menu-item a {
|
36
|
+
text-decoration: none;
|
37
|
+
display: block;
|
38
|
+
padding: 2px .4em;
|
39
|
+
line-height: 1.5;
|
40
|
+
min-height: 0; /* support: IE7 */
|
41
|
+
font-weight: normal;
|
42
|
+
}
|
43
|
+
.ui-menu .ui-menu-item a.ui-state-focus,
|
44
|
+
.ui-menu .ui-menu-item a.ui-state-active {
|
45
|
+
font-weight: normal;
|
46
|
+
margin: -1px;
|
47
|
+
}
|
48
|
+
|
49
|
+
.ui-menu .ui-state-disabled {
|
50
|
+
font-weight: normal;
|
51
|
+
margin: .4em 0 .2em;
|
52
|
+
line-height: 1.5;
|
53
|
+
}
|
54
|
+
.ui-menu .ui-state-disabled a {
|
55
|
+
cursor: default;
|
56
|
+
}
|
57
|
+
|
58
|
+
/* icon support */
|
59
|
+
.ui-menu-icons {
|
60
|
+
position: relative;
|
61
|
+
}
|
62
|
+
.ui-menu-icons .ui-menu-item a {
|
63
|
+
position: relative;
|
64
|
+
padding-left: 2em;
|
65
|
+
}
|
66
|
+
|
67
|
+
/* left-aligned */
|
68
|
+
.ui-menu .ui-icon {
|
69
|
+
position: absolute;
|
70
|
+
top: .2em;
|
71
|
+
left: .2em;
|
72
|
+
}
|
73
|
+
|
74
|
+
/* right-aligned */
|
75
|
+
.ui-menu .ui-menu-icon {
|
76
|
+
position: static;
|
77
|
+
float: right;
|
78
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery UI Progressbar 1.10.0
|
3
|
+
* http://jqueryui.com
|
4
|
+
*
|
5
|
+
* Copyright 2013 jQuery Foundation and other contributors
|
6
|
+
* Released under the MIT license.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://docs.jquery.com/UI/Progressbar#theming
|
10
|
+
*/
|
11
|
+
|
12
|
+
.ui-progressbar {
|
13
|
+
height: 2em;
|
14
|
+
text-align: left;
|
15
|
+
overflow: hidden;
|
16
|
+
}
|
17
|
+
.ui-progressbar .ui-progressbar-value {
|
18
|
+
margin: -1px;
|
19
|
+
height: 100%;
|
20
|
+
}
|
21
|
+
.ui-progressbar .ui-progressbar-overlay {
|
22
|
+
background: url(image-path("jquery-ui/animated-overlay.gif"));
|
23
|
+
height: 100%;
|
24
|
+
filter: alpha(opacity=25);
|
25
|
+
opacity: 0.25;
|
26
|
+
}
|
27
|
+
.ui-progressbar-indeterminate .ui-progressbar-value {
|
28
|
+
background-image: none;
|
29
|
+
}
|