vex_rails 0.1.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.
- data/.gitignore +19 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +84 -0
- data/Rakefile +1 -0
- data/app/assets/javascripts/vex.combined.min.js +2 -0
- data/app/assets/javascripts/vex.dialog.js +153 -0
- data/app/assets/javascripts/vex.dialog.min.js +2 -0
- data/app/assets/javascripts/vex.js +178 -0
- data/app/assets/javascripts/vex.min.js +2 -0
- data/app/assets/stylesheets/vex-theme-default.css +528 -0
- data/app/assets/stylesheets/vex-theme-flat-attack.css +456 -0
- data/app/assets/stylesheets/vex-theme-os.css +533 -0
- data/app/assets/stylesheets/vex-theme-plain.css +254 -0
- data/app/assets/stylesheets/vex-theme-top.css +503 -0
- data/app/assets/stylesheets/vex-theme-wireframe.css +257 -0
- data/app/assets/stylesheets/vex.css +329 -0
- data/lib/vex_rails/engine.rb +4 -0
- data/lib/vex_rails/version.rb +3 -0
- data/lib/vex_rails.rb +6 -0
- data/vex_rails.gemspec +23 -0
- metadata +107 -0
@@ -0,0 +1,257 @@
|
|
1
|
+
@keyframes vex-pulse {
|
2
|
+
/* line 86, ../sass/_keyframes.sass */
|
3
|
+
0% {
|
4
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
5
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
6
|
+
box-shadow: inset 0 0 0 300px transparent;
|
7
|
+
}
|
8
|
+
|
9
|
+
/* line 88, ../sass/_keyframes.sass */
|
10
|
+
70% {
|
11
|
+
-webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
12
|
+
-moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
13
|
+
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
14
|
+
}
|
15
|
+
|
16
|
+
/* line 90, ../sass/_keyframes.sass */
|
17
|
+
100% {
|
18
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
19
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
20
|
+
box-shadow: inset 0 0 0 300px transparent;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
@-webkit-keyframes vex-pulse {
|
25
|
+
/* line 86, ../sass/_keyframes.sass */
|
26
|
+
0% {
|
27
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
28
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
29
|
+
box-shadow: inset 0 0 0 300px transparent;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* line 88, ../sass/_keyframes.sass */
|
33
|
+
70% {
|
34
|
+
-webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
35
|
+
-moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
36
|
+
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
37
|
+
}
|
38
|
+
|
39
|
+
/* line 90, ../sass/_keyframes.sass */
|
40
|
+
100% {
|
41
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
42
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
43
|
+
box-shadow: inset 0 0 0 300px transparent;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
@-moz-keyframes vex-pulse {
|
48
|
+
/* line 86, ../sass/_keyframes.sass */
|
49
|
+
0% {
|
50
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
51
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
52
|
+
box-shadow: inset 0 0 0 300px transparent;
|
53
|
+
}
|
54
|
+
|
55
|
+
/* line 88, ../sass/_keyframes.sass */
|
56
|
+
70% {
|
57
|
+
-webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
58
|
+
-moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
59
|
+
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
60
|
+
}
|
61
|
+
|
62
|
+
/* line 90, ../sass/_keyframes.sass */
|
63
|
+
100% {
|
64
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
65
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
66
|
+
box-shadow: inset 0 0 0 300px transparent;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
@-ms-keyframes vex-pulse {
|
71
|
+
/* line 86, ../sass/_keyframes.sass */
|
72
|
+
0% {
|
73
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
74
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
75
|
+
box-shadow: inset 0 0 0 300px transparent;
|
76
|
+
}
|
77
|
+
|
78
|
+
/* line 88, ../sass/_keyframes.sass */
|
79
|
+
70% {
|
80
|
+
-webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
81
|
+
-moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
82
|
+
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
83
|
+
}
|
84
|
+
|
85
|
+
/* line 90, ../sass/_keyframes.sass */
|
86
|
+
100% {
|
87
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
88
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
89
|
+
box-shadow: inset 0 0 0 300px transparent;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
@-o-keyframes vex-pulse {
|
94
|
+
/* line 86, ../sass/_keyframes.sass */
|
95
|
+
0% {
|
96
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
97
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
98
|
+
box-shadow: inset 0 0 0 300px transparent;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* line 88, ../sass/_keyframes.sass */
|
102
|
+
70% {
|
103
|
+
-webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
104
|
+
-moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
105
|
+
box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
|
106
|
+
}
|
107
|
+
|
108
|
+
/* line 90, ../sass/_keyframes.sass */
|
109
|
+
100% {
|
110
|
+
-webkit-box-shadow: inset 0 0 0 300px transparent;
|
111
|
+
-moz-box-shadow: inset 0 0 0 300px transparent;
|
112
|
+
box-shadow: inset 0 0 0 300px transparent;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
/* line 9, ../sass/vex-theme-wireframe.sass */
|
117
|
+
.vex.vex-theme-wireframe {
|
118
|
+
padding-top: 160px;
|
119
|
+
padding-bottom: 160px;
|
120
|
+
}
|
121
|
+
/* line 13, ../sass/vex-theme-wireframe.sass */
|
122
|
+
.vex.vex-theme-wireframe .vex-overlay {
|
123
|
+
background: rgba(255, 255, 255, 0.4);
|
124
|
+
}
|
125
|
+
/* line 16, ../sass/vex-theme-wireframe.sass */
|
126
|
+
.vex.vex-theme-wireframe .vex-content {
|
127
|
+
font-family: "Helvetica Neue", sans-serif;
|
128
|
+
background: white;
|
129
|
+
color: black;
|
130
|
+
border: 2px solid black;
|
131
|
+
padding: 2em;
|
132
|
+
position: relative;
|
133
|
+
margin: 0 auto;
|
134
|
+
max-width: 100%;
|
135
|
+
width: 400px;
|
136
|
+
font-size: 1.1em;
|
137
|
+
line-height: 1.5em;
|
138
|
+
}
|
139
|
+
/* line 29, ../sass/vex-theme-wireframe.sass */
|
140
|
+
.vex.vex-theme-wireframe .vex-content h1, .vex.vex-theme-wireframe .vex-content h2, .vex.vex-theme-wireframe .vex-content h3, .vex.vex-theme-wireframe .vex-content h4, .vex.vex-theme-wireframe .vex-content h5, .vex.vex-theme-wireframe .vex-content h6, .vex.vex-theme-wireframe .vex-content p, .vex.vex-theme-wireframe .vex-content ul, .vex.vex-theme-wireframe .vex-content li {
|
141
|
+
color: inherit;
|
142
|
+
}
|
143
|
+
/* line 32, ../sass/vex-theme-wireframe.sass */
|
144
|
+
.vex.vex-theme-wireframe .vex-close {
|
145
|
+
position: absolute;
|
146
|
+
top: 0;
|
147
|
+
right: 0;
|
148
|
+
cursor: pointer;
|
149
|
+
}
|
150
|
+
/* line 38, ../sass/vex-theme-wireframe.sass */
|
151
|
+
.vex.vex-theme-wireframe .vex-close:before {
|
152
|
+
position: absolute;
|
153
|
+
content: "\00D7";
|
154
|
+
font-size: 40px;
|
155
|
+
font-weight: normal;
|
156
|
+
line-height: 80px;
|
157
|
+
height: 80px;
|
158
|
+
width: 80px;
|
159
|
+
text-align: center;
|
160
|
+
top: 3px;
|
161
|
+
right: 3px;
|
162
|
+
color: black;
|
163
|
+
}
|
164
|
+
/* line 51, ../sass/vex-theme-wireframe.sass */
|
165
|
+
.vex.vex-theme-wireframe .vex-close:hover:before, .vex.vex-theme-wireframe .vex-close:active:before {
|
166
|
+
color: black;
|
167
|
+
}
|
168
|
+
/* line 56, ../sass/vex-theme-wireframe.sass */
|
169
|
+
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-message {
|
170
|
+
margin-bottom: 0.5em;
|
171
|
+
}
|
172
|
+
/* line 59, ../sass/vex-theme-wireframe.sass */
|
173
|
+
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input {
|
174
|
+
margin-bottom: 1em;
|
175
|
+
}
|
176
|
+
/* line 62, ../sass/vex-theme-wireframe.sass */
|
177
|
+
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="url"] {
|
178
|
+
background: white;
|
179
|
+
width: 100%;
|
180
|
+
padding: 0.25em 0.67em;
|
181
|
+
font-family: inherit;
|
182
|
+
font-weight: inherit;
|
183
|
+
font-size: inherit;
|
184
|
+
min-height: 2.5em;
|
185
|
+
margin: 0 0 0.25em;
|
186
|
+
border: 2px solid black;
|
187
|
+
}
|
188
|
+
/* line 73, ../sass/vex-theme-wireframe.sass */
|
189
|
+
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-input input[type="url"]:focus {
|
190
|
+
border-style: dashed;
|
191
|
+
outline: none;
|
192
|
+
}
|
193
|
+
/* line 77, ../sass/vex-theme-wireframe.sass */
|
194
|
+
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-buttons {
|
195
|
+
*zoom: 1;
|
196
|
+
}
|
197
|
+
/* line 38, ../../../../../.rvm/gems/ruby-1.9.3-p194/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
|
198
|
+
.vex.vex-theme-wireframe .vex-dialog-form .vex-dialog-buttons:after {
|
199
|
+
content: "";
|
200
|
+
display: table;
|
201
|
+
clear: both;
|
202
|
+
}
|
203
|
+
/* line 80, ../sass/vex-theme-wireframe.sass */
|
204
|
+
.vex.vex-theme-wireframe .vex-dialog-button {
|
205
|
+
border: 0;
|
206
|
+
float: right;
|
207
|
+
margin: 0 0 0 0.5em;
|
208
|
+
font-family: inherit;
|
209
|
+
text-transform: uppercase;
|
210
|
+
letter-spacing: 0.1em;
|
211
|
+
font-size: 0.8em;
|
212
|
+
line-height: 1em;
|
213
|
+
padding: 0.75em 2em;
|
214
|
+
}
|
215
|
+
/* line 91, ../sass/vex-theme-wireframe.sass */
|
216
|
+
.vex.vex-theme-wireframe .vex-dialog-button.vex-last {
|
217
|
+
margin-left: 0;
|
218
|
+
}
|
219
|
+
/* line 94, ../sass/vex-theme-wireframe.sass */
|
220
|
+
.vex.vex-theme-wireframe .vex-dialog-button:focus {
|
221
|
+
animation: vex-pulse 1.1s infinite;
|
222
|
+
-webkit-animation: vex-pulse 1.1s infinite;
|
223
|
+
-moz-animation: vex-pulse 1.1s infinite;
|
224
|
+
-ms-animation: vex-pulse 1.1s infinite;
|
225
|
+
-o-animation: vex-pulse 1.1s infinite;
|
226
|
+
-webkit-backface-visibility: hidden;
|
227
|
+
outline: none;
|
228
|
+
}
|
229
|
+
@media (max-width: 568px) {
|
230
|
+
/* line 94, ../sass/vex-theme-wireframe.sass */
|
231
|
+
.vex.vex-theme-wireframe .vex-dialog-button:focus {
|
232
|
+
animation: none;
|
233
|
+
-webkit-animation: none;
|
234
|
+
-moz-animation: none;
|
235
|
+
-ms-animation: none;
|
236
|
+
-o-animation: none;
|
237
|
+
-webkit-backface-visibility: hidden;
|
238
|
+
}
|
239
|
+
}
|
240
|
+
/* line 103, ../sass/vex-theme-wireframe.sass */
|
241
|
+
.vex.vex-theme-wireframe .vex-dialog-button.vex-dialog-button-primary {
|
242
|
+
background: black;
|
243
|
+
color: white;
|
244
|
+
border: 2px solid transparent;
|
245
|
+
}
|
246
|
+
/* line 108, ../sass/vex-theme-wireframe.sass */
|
247
|
+
.vex.vex-theme-wireframe .vex-dialog-button.vex-dialog-button-secondary {
|
248
|
+
background: white;
|
249
|
+
color: black;
|
250
|
+
border: 2px solid black;
|
251
|
+
}
|
252
|
+
|
253
|
+
/* line 113, ../sass/vex-theme-wireframe.sass */
|
254
|
+
.vex-loading-spinner.vex-theme-wireframe {
|
255
|
+
height: 2.5em;
|
256
|
+
width: 2.5em;
|
257
|
+
}
|
@@ -0,0 +1,329 @@
|
|
1
|
+
@keyframes vex-fadein {
|
2
|
+
/* line 9, ../sass/_keyframes.sass */
|
3
|
+
0% {
|
4
|
+
opacity: 0;
|
5
|
+
}
|
6
|
+
|
7
|
+
/* line 11, ../sass/_keyframes.sass */
|
8
|
+
100% {
|
9
|
+
opacity: 1;
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
@-webkit-keyframes vex-fadein {
|
14
|
+
/* line 9, ../sass/_keyframes.sass */
|
15
|
+
0% {
|
16
|
+
opacity: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
/* line 11, ../sass/_keyframes.sass */
|
20
|
+
100% {
|
21
|
+
opacity: 1;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
@-moz-keyframes vex-fadein {
|
26
|
+
/* line 9, ../sass/_keyframes.sass */
|
27
|
+
0% {
|
28
|
+
opacity: 0;
|
29
|
+
}
|
30
|
+
|
31
|
+
/* line 11, ../sass/_keyframes.sass */
|
32
|
+
100% {
|
33
|
+
opacity: 1;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
@-ms-keyframes vex-fadein {
|
38
|
+
/* line 9, ../sass/_keyframes.sass */
|
39
|
+
0% {
|
40
|
+
opacity: 0;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* line 11, ../sass/_keyframes.sass */
|
44
|
+
100% {
|
45
|
+
opacity: 1;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
@-o-keyframes vex-fadein {
|
50
|
+
/* line 9, ../sass/_keyframes.sass */
|
51
|
+
0% {
|
52
|
+
opacity: 0;
|
53
|
+
}
|
54
|
+
|
55
|
+
/* line 11, ../sass/_keyframes.sass */
|
56
|
+
100% {
|
57
|
+
opacity: 1;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
@keyframes vex-fadeout {
|
62
|
+
/* line 16, ../sass/_keyframes.sass */
|
63
|
+
0% {
|
64
|
+
opacity: 1;
|
65
|
+
}
|
66
|
+
|
67
|
+
/* line 18, ../sass/_keyframes.sass */
|
68
|
+
100% {
|
69
|
+
opacity: 0;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
@-webkit-keyframes vex-fadeout {
|
74
|
+
/* line 16, ../sass/_keyframes.sass */
|
75
|
+
0% {
|
76
|
+
opacity: 1;
|
77
|
+
}
|
78
|
+
|
79
|
+
/* line 18, ../sass/_keyframes.sass */
|
80
|
+
100% {
|
81
|
+
opacity: 0;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
@-moz-keyframes vex-fadeout {
|
86
|
+
/* line 16, ../sass/_keyframes.sass */
|
87
|
+
0% {
|
88
|
+
opacity: 1;
|
89
|
+
}
|
90
|
+
|
91
|
+
/* line 18, ../sass/_keyframes.sass */
|
92
|
+
100% {
|
93
|
+
opacity: 0;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
@-ms-keyframes vex-fadeout {
|
98
|
+
/* line 16, ../sass/_keyframes.sass */
|
99
|
+
0% {
|
100
|
+
opacity: 1;
|
101
|
+
}
|
102
|
+
|
103
|
+
/* line 18, ../sass/_keyframes.sass */
|
104
|
+
100% {
|
105
|
+
opacity: 0;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
@-o-keyframes vex-fadeout {
|
110
|
+
/* line 16, ../sass/_keyframes.sass */
|
111
|
+
0% {
|
112
|
+
opacity: 1;
|
113
|
+
}
|
114
|
+
|
115
|
+
/* line 18, ../sass/_keyframes.sass */
|
116
|
+
100% {
|
117
|
+
opacity: 0;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
@keyframes vex-rotation {
|
122
|
+
/* line 77, ../sass/_keyframes.sass */
|
123
|
+
0% {
|
124
|
+
transform: rotate(0deg);
|
125
|
+
-webkit-transform: rotate(0deg);
|
126
|
+
-moz-transform: rotate(0deg);
|
127
|
+
-ms-transform: rotate(0deg);
|
128
|
+
-o-transform: rotate(0deg);
|
129
|
+
}
|
130
|
+
|
131
|
+
/* line 79, ../sass/_keyframes.sass */
|
132
|
+
100% {
|
133
|
+
transform: rotate(359deg);
|
134
|
+
-webkit-transform: rotate(359deg);
|
135
|
+
-moz-transform: rotate(359deg);
|
136
|
+
-ms-transform: rotate(359deg);
|
137
|
+
-o-transform: rotate(359deg);
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
@-webkit-keyframes vex-rotation {
|
142
|
+
/* line 77, ../sass/_keyframes.sass */
|
143
|
+
0% {
|
144
|
+
transform: rotate(0deg);
|
145
|
+
-webkit-transform: rotate(0deg);
|
146
|
+
-moz-transform: rotate(0deg);
|
147
|
+
-ms-transform: rotate(0deg);
|
148
|
+
-o-transform: rotate(0deg);
|
149
|
+
}
|
150
|
+
|
151
|
+
/* line 79, ../sass/_keyframes.sass */
|
152
|
+
100% {
|
153
|
+
transform: rotate(359deg);
|
154
|
+
-webkit-transform: rotate(359deg);
|
155
|
+
-moz-transform: rotate(359deg);
|
156
|
+
-ms-transform: rotate(359deg);
|
157
|
+
-o-transform: rotate(359deg);
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
@-moz-keyframes vex-rotation {
|
162
|
+
/* line 77, ../sass/_keyframes.sass */
|
163
|
+
0% {
|
164
|
+
transform: rotate(0deg);
|
165
|
+
-webkit-transform: rotate(0deg);
|
166
|
+
-moz-transform: rotate(0deg);
|
167
|
+
-ms-transform: rotate(0deg);
|
168
|
+
-o-transform: rotate(0deg);
|
169
|
+
}
|
170
|
+
|
171
|
+
/* line 79, ../sass/_keyframes.sass */
|
172
|
+
100% {
|
173
|
+
transform: rotate(359deg);
|
174
|
+
-webkit-transform: rotate(359deg);
|
175
|
+
-moz-transform: rotate(359deg);
|
176
|
+
-ms-transform: rotate(359deg);
|
177
|
+
-o-transform: rotate(359deg);
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
@-ms-keyframes vex-rotation {
|
182
|
+
/* line 77, ../sass/_keyframes.sass */
|
183
|
+
0% {
|
184
|
+
transform: rotate(0deg);
|
185
|
+
-webkit-transform: rotate(0deg);
|
186
|
+
-moz-transform: rotate(0deg);
|
187
|
+
-ms-transform: rotate(0deg);
|
188
|
+
-o-transform: rotate(0deg);
|
189
|
+
}
|
190
|
+
|
191
|
+
/* line 79, ../sass/_keyframes.sass */
|
192
|
+
100% {
|
193
|
+
transform: rotate(359deg);
|
194
|
+
-webkit-transform: rotate(359deg);
|
195
|
+
-moz-transform: rotate(359deg);
|
196
|
+
-ms-transform: rotate(359deg);
|
197
|
+
-o-transform: rotate(359deg);
|
198
|
+
}
|
199
|
+
}
|
200
|
+
|
201
|
+
@-o-keyframes vex-rotation {
|
202
|
+
/* line 77, ../sass/_keyframes.sass */
|
203
|
+
0% {
|
204
|
+
transform: rotate(0deg);
|
205
|
+
-webkit-transform: rotate(0deg);
|
206
|
+
-moz-transform: rotate(0deg);
|
207
|
+
-ms-transform: rotate(0deg);
|
208
|
+
-o-transform: rotate(0deg);
|
209
|
+
}
|
210
|
+
|
211
|
+
/* line 79, ../sass/_keyframes.sass */
|
212
|
+
100% {
|
213
|
+
transform: rotate(359deg);
|
214
|
+
-webkit-transform: rotate(359deg);
|
215
|
+
-moz-transform: rotate(359deg);
|
216
|
+
-ms-transform: rotate(359deg);
|
217
|
+
-o-transform: rotate(359deg);
|
218
|
+
}
|
219
|
+
}
|
220
|
+
|
221
|
+
/* line 11, ../sass/vex.sass */
|
222
|
+
.vex, .vex *, .vex *:before, .vex *:after {
|
223
|
+
-webkit-box-sizing: border-box;
|
224
|
+
-moz-box-sizing: border-box;
|
225
|
+
box-sizing: border-box;
|
226
|
+
}
|
227
|
+
|
228
|
+
/* line 14, ../sass/vex.sass */
|
229
|
+
.vex {
|
230
|
+
position: fixed;
|
231
|
+
overflow: auto;
|
232
|
+
z-index: 1111;
|
233
|
+
top: 0;
|
234
|
+
right: 0;
|
235
|
+
bottom: 0;
|
236
|
+
left: 0;
|
237
|
+
}
|
238
|
+
|
239
|
+
/* line 24, ../sass/vex.sass */
|
240
|
+
.vex-overlay {
|
241
|
+
background: black;
|
242
|
+
filter: alpha(opacity=40);
|
243
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
|
244
|
+
}
|
245
|
+
|
246
|
+
/* line 29, ../sass/vex.sass */
|
247
|
+
.vex-overlay {
|
248
|
+
animation: vex-fadein 0.5s;
|
249
|
+
-webkit-animation: vex-fadein 0.5s;
|
250
|
+
-moz-animation: vex-fadein 0.5s;
|
251
|
+
-ms-animation: vex-fadein 0.5s;
|
252
|
+
-o-animation: vex-fadein 0.5s;
|
253
|
+
-webkit-backface-visibility: hidden;
|
254
|
+
position: fixed;
|
255
|
+
background: rgba(0, 0, 0, 0.4);
|
256
|
+
top: 0;
|
257
|
+
right: 0;
|
258
|
+
bottom: 0;
|
259
|
+
left: 0;
|
260
|
+
}
|
261
|
+
/* line 38, ../sass/vex.sass */
|
262
|
+
.vex.vex-closing .vex-overlay {
|
263
|
+
animation: vex-fadeout 0.5s;
|
264
|
+
-webkit-animation: vex-fadeout 0.5s;
|
265
|
+
-moz-animation: vex-fadeout 0.5s;
|
266
|
+
-ms-animation: vex-fadeout 0.5s;
|
267
|
+
-o-animation: vex-fadeout 0.5s;
|
268
|
+
-webkit-backface-visibility: hidden;
|
269
|
+
}
|
270
|
+
|
271
|
+
/* line 41, ../sass/vex.sass */
|
272
|
+
.vex-content {
|
273
|
+
animation: vex-fadein 0.5s;
|
274
|
+
-webkit-animation: vex-fadein 0.5s;
|
275
|
+
-moz-animation: vex-fadein 0.5s;
|
276
|
+
-ms-animation: vex-fadein 0.5s;
|
277
|
+
-o-animation: vex-fadein 0.5s;
|
278
|
+
-webkit-backface-visibility: hidden;
|
279
|
+
background: white;
|
280
|
+
}
|
281
|
+
/* line 45, ../sass/vex.sass */
|
282
|
+
.vex.vex-closing .vex-content {
|
283
|
+
animation: vex-fadeout 0.5s;
|
284
|
+
-webkit-animation: vex-fadeout 0.5s;
|
285
|
+
-moz-animation: vex-fadeout 0.5s;
|
286
|
+
-ms-animation: vex-fadeout 0.5s;
|
287
|
+
-o-animation: vex-fadeout 0.5s;
|
288
|
+
-webkit-backface-visibility: hidden;
|
289
|
+
}
|
290
|
+
|
291
|
+
/* line 48, ../sass/vex.sass */
|
292
|
+
.vex-close:before {
|
293
|
+
font-family: Arial, sans-serif;
|
294
|
+
content: "\00D7";
|
295
|
+
}
|
296
|
+
|
297
|
+
/* line 52, ../sass/vex.sass */
|
298
|
+
.vex-dialog-form {
|
299
|
+
margin: 0;
|
300
|
+
}
|
301
|
+
|
302
|
+
/* line 55, ../sass/vex.sass */
|
303
|
+
.vex-dialog-button {
|
304
|
+
-webkit-appearance: none;
|
305
|
+
cursor: pointer;
|
306
|
+
}
|
307
|
+
|
308
|
+
/* line 59, ../sass/vex.sass */
|
309
|
+
.vex-loading-spinner {
|
310
|
+
animation: vex-rotation 0.7s linear infinite;
|
311
|
+
-webkit-animation: vex-rotation 0.7s linear infinite;
|
312
|
+
-moz-animation: vex-rotation 0.7s linear infinite;
|
313
|
+
-ms-animation: vex-rotation 0.7s linear infinite;
|
314
|
+
-o-animation: vex-rotation 0.7s linear infinite;
|
315
|
+
-webkit-backface-visibility: hidden;
|
316
|
+
-webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
|
317
|
+
-moz-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
|
318
|
+
box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
|
319
|
+
position: fixed;
|
320
|
+
z-index: 1112;
|
321
|
+
margin: auto;
|
322
|
+
top: 0;
|
323
|
+
right: 0;
|
324
|
+
bottom: 0;
|
325
|
+
left: 0;
|
326
|
+
height: 2em;
|
327
|
+
width: 2em;
|
328
|
+
background: white;
|
329
|
+
}
|
data/lib/vex_rails.rb
ADDED
data/vex_rails.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'vex_rails/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "vex_rails"
|
8
|
+
spec.version = VexRails::VERSION
|
9
|
+
spec.authors = ["Robbie Marcelo"]
|
10
|
+
spec.email = ["rbmrclo@hotmail.com"]
|
11
|
+
spec.description = %q{Vex is a modern dialog library which is highly configurable, easily stylable, and gets out of the way.}
|
12
|
+
spec.summary = %q{Vex is a modern dialog library which is highly configurable, easily stylable, and gets out of the way.}
|
13
|
+
spec.homepage = "http://github.com/rbmrclo/vex_rails"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|