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,254 @@
|
|
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 11, ../sass/vex-theme-plain.sass */
|
117
|
+
.vex.vex-theme-plain {
|
118
|
+
padding-top: 160px;
|
119
|
+
padding-bottom: 160px;
|
120
|
+
}
|
121
|
+
/* line 15, ../sass/vex-theme-plain.sass */
|
122
|
+
.vex.vex-theme-plain .vex-content {
|
123
|
+
font-family: "Helvetica Neue", sans-serif;
|
124
|
+
background: white;
|
125
|
+
color: #444444;
|
126
|
+
padding: 1em;
|
127
|
+
position: relative;
|
128
|
+
margin: 0 auto;
|
129
|
+
max-width: 100%;
|
130
|
+
width: 450px;
|
131
|
+
font-size: 1.1em;
|
132
|
+
line-height: 1.5em;
|
133
|
+
}
|
134
|
+
/* line 27, ../sass/vex-theme-plain.sass */
|
135
|
+
.vex.vex-theme-plain .vex-content h1, .vex.vex-theme-plain .vex-content h2, .vex.vex-theme-plain .vex-content h3, .vex.vex-theme-plain .vex-content h4, .vex.vex-theme-plain .vex-content h5, .vex.vex-theme-plain .vex-content h6, .vex.vex-theme-plain .vex-content p, .vex.vex-theme-plain .vex-content ul, .vex.vex-theme-plain .vex-content li {
|
136
|
+
color: inherit;
|
137
|
+
}
|
138
|
+
/* line 30, ../sass/vex-theme-plain.sass */
|
139
|
+
.vex.vex-theme-plain .vex-close {
|
140
|
+
position: absolute;
|
141
|
+
top: 0;
|
142
|
+
right: 0;
|
143
|
+
cursor: pointer;
|
144
|
+
}
|
145
|
+
/* line 36, ../sass/vex-theme-plain.sass */
|
146
|
+
.vex.vex-theme-plain .vex-close:before {
|
147
|
+
position: absolute;
|
148
|
+
content: "\00D7";
|
149
|
+
font-size: 26px;
|
150
|
+
font-weight: normal;
|
151
|
+
line-height: 31px;
|
152
|
+
height: 30px;
|
153
|
+
width: 30px;
|
154
|
+
text-align: center;
|
155
|
+
top: 3px;
|
156
|
+
right: 3px;
|
157
|
+
color: #bbbbbb;
|
158
|
+
background: transparent;
|
159
|
+
}
|
160
|
+
/* line 50, ../sass/vex-theme-plain.sass */
|
161
|
+
.vex.vex-theme-plain .vex-close:hover:before, .vex.vex-theme-plain .vex-close:active:before {
|
162
|
+
color: #777777;
|
163
|
+
background: #e0e0e0;
|
164
|
+
}
|
165
|
+
/* line 56, ../sass/vex-theme-plain.sass */
|
166
|
+
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-message {
|
167
|
+
margin-bottom: 0.5em;
|
168
|
+
}
|
169
|
+
/* line 59, ../sass/vex-theme-plain.sass */
|
170
|
+
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input {
|
171
|
+
margin-bottom: 1em;
|
172
|
+
}
|
173
|
+
/* line 62, ../sass/vex-theme-plain.sass */
|
174
|
+
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"] {
|
175
|
+
background: #f0f0f0;
|
176
|
+
width: 100%;
|
177
|
+
padding: 0.25em 0.67em;
|
178
|
+
border: 0;
|
179
|
+
font-family: inherit;
|
180
|
+
font-weight: inherit;
|
181
|
+
font-size: inherit;
|
182
|
+
min-height: 2.5em;
|
183
|
+
margin: 0 0 0.25em;
|
184
|
+
}
|
185
|
+
/* line 73, ../sass/vex-theme-plain.sass */
|
186
|
+
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"]:focus {
|
187
|
+
-webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
|
188
|
+
-moz-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
|
189
|
+
box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
|
190
|
+
outline: none;
|
191
|
+
}
|
192
|
+
/* line 77, ../sass/vex-theme-plain.sass */
|
193
|
+
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons {
|
194
|
+
*zoom: 1;
|
195
|
+
}
|
196
|
+
/* line 38, ../../../../../.rvm/gems/ruby-1.9.3-p194/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
|
197
|
+
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons:after {
|
198
|
+
content: "";
|
199
|
+
display: table;
|
200
|
+
clear: both;
|
201
|
+
}
|
202
|
+
/* line 80, ../sass/vex-theme-plain.sass */
|
203
|
+
.vex.vex-theme-plain .vex-dialog-button {
|
204
|
+
border: 0;
|
205
|
+
float: right;
|
206
|
+
margin: 0 0 0 0.5em;
|
207
|
+
font-family: inherit;
|
208
|
+
text-transform: uppercase;
|
209
|
+
letter-spacing: 0.1em;
|
210
|
+
font-size: 0.8em;
|
211
|
+
line-height: 1em;
|
212
|
+
padding: 0.75em 2em;
|
213
|
+
}
|
214
|
+
/* line 91, ../sass/vex-theme-plain.sass */
|
215
|
+
.vex.vex-theme-plain .vex-dialog-button.vex-last {
|
216
|
+
margin-left: 0;
|
217
|
+
}
|
218
|
+
/* line 94, ../sass/vex-theme-plain.sass */
|
219
|
+
.vex.vex-theme-plain .vex-dialog-button:focus {
|
220
|
+
animation: vex-pulse 1.1s infinite;
|
221
|
+
-webkit-animation: vex-pulse 1.1s infinite;
|
222
|
+
-moz-animation: vex-pulse 1.1s infinite;
|
223
|
+
-ms-animation: vex-pulse 1.1s infinite;
|
224
|
+
-o-animation: vex-pulse 1.1s infinite;
|
225
|
+
-webkit-backface-visibility: hidden;
|
226
|
+
outline: none;
|
227
|
+
}
|
228
|
+
@media (max-width: 568px) {
|
229
|
+
/* line 94, ../sass/vex-theme-plain.sass */
|
230
|
+
.vex.vex-theme-plain .vex-dialog-button:focus {
|
231
|
+
animation: none;
|
232
|
+
-webkit-animation: none;
|
233
|
+
-moz-animation: none;
|
234
|
+
-ms-animation: none;
|
235
|
+
-o-animation: none;
|
236
|
+
-webkit-backface-visibility: hidden;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
/* line 103, ../sass/vex-theme-plain.sass */
|
240
|
+
.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-primary {
|
241
|
+
background: #3288e6;
|
242
|
+
color: white;
|
243
|
+
}
|
244
|
+
/* line 107, ../sass/vex-theme-plain.sass */
|
245
|
+
.vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-secondary {
|
246
|
+
background: #e0e0e0;
|
247
|
+
color: #777777;
|
248
|
+
}
|
249
|
+
|
250
|
+
/* line 111, ../sass/vex-theme-plain.sass */
|
251
|
+
.vex-loading-spinner.vex-theme-plain {
|
252
|
+
height: 2.5em;
|
253
|
+
width: 2.5em;
|
254
|
+
}
|