font_awesome_rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/Gemfile +2 -0
- data/LICENSE.md +26 -0
- data/README.md +69 -0
- data/Rakefile +6 -0
- data/app/assets/stylesheets/_font-awesome.scss +2 -0
- data/app/assets/stylesheets/font-awesome/_font.scss +13 -0
- data/app/assets/stylesheets/font-awesome/_icons.scss +210 -0
- data/app/assets/stylesheets/font-awesome/_mixins.scss +58 -0
- data/app/assets/stylesheets/font-awesome/_styles.scss +53 -0
- data/font_awesome_rails.gemspec +25 -0
- data/lib/font_awesome/font.rb +52 -0
- data/lib/font_awesome/hex_code.rb +39 -0
- data/lib/font_awesome/icon.rb +80 -0
- data/lib/font_awesome/nokogiri.rb +17 -0
- data/lib/font_awesome/sass_extensions/functions.rb +26 -0
- data/lib/font_awesome/sass_extensions.rb +6 -0
- data/lib/font_awesome.rb +10 -0
- data/lib/font_awesome_rails/engine.rb +4 -0
- data/lib/font_awesome_rails/version.rb +3 -0
- data/lib/font_awesome_rails.rb +10 -0
- data/spec/font_awesome/font_spec.rb +103 -0
- data/spec/font_awesome/hex_code_spec.rb +66 -0
- data/spec/font_awesome/icon_spec.rb +92 -0
- data/spec/font_awesome/sass_extensions/functions_spec.rb +69 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/tasks/update_classic_sass_task_spec.rb +33 -0
- data/spec/tasks/update_hex_codes_task_spec.rb +44 -0
- data/spec/tasks/update_metrics_task_spec.rb +34 -0
- data/spec/tasks/update_sass_task_spec.rb +20 -0
- data/tasks/gem_dir.rb +12 -0
- data/tasks/spec.rake +3 -0
- data/tasks/task.rb +5 -0
- data/tasks/update/classic.rake +27 -0
- data/tasks/update/font.rake +13 -0
- data/tasks/update/font_awesome.rake +20 -0
- data/tasks/update/hex_codes.rake +9 -0
- data/tasks/update/metrics.rake +8 -0
- data/tasks/update/metrics.rb +62 -0
- data/tasks/update/sass.rake +6 -0
- data/tasks/update/update_classic_sass_task.rb +21 -0
- data/tasks/update/update_hex_codes_task.rb +34 -0
- data/tasks/update/update_metrics_task.rb +25 -0
- data/tasks/update/update_sass_task.rb +20 -0
- data/tasks/update.rake +8 -0
- data/vendor/assets/font/fontawesome-webfont.eot +0 -0
- data/vendor/assets/font/fontawesome-webfont.svg +255 -0
- data/vendor/assets/font/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/font/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/font-awesome/_classic.scss +292 -0
- data/vendor/assets/stylesheets/font-awesome/ie7.css +645 -0
- metadata +225 -0
@@ -0,0 +1,645 @@
|
|
1
|
+
[class^="icon-"],
|
2
|
+
[class*=" icon-"] {
|
3
|
+
font-family: FontAwesome;
|
4
|
+
font-style: normal;
|
5
|
+
font-weight: normal;
|
6
|
+
}
|
7
|
+
.btn.dropdown-toggle [class^="icon-"],
|
8
|
+
.btn.dropdown-toggle [class*=" icon-"] {
|
9
|
+
/* keeps button heights with and without icons the same */
|
10
|
+
|
11
|
+
line-height: 1.4em;
|
12
|
+
}
|
13
|
+
.icon-large {
|
14
|
+
font-size: 1.3333em;
|
15
|
+
}
|
16
|
+
.icon-glass {
|
17
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
18
|
+
}
|
19
|
+
.icon-music {
|
20
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
21
|
+
}
|
22
|
+
.icon-search {
|
23
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
24
|
+
}
|
25
|
+
.icon-envelope {
|
26
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
27
|
+
}
|
28
|
+
.icon-heart {
|
29
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
30
|
+
}
|
31
|
+
.icon-star {
|
32
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
33
|
+
}
|
34
|
+
.icon-star-empty {
|
35
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
36
|
+
}
|
37
|
+
.icon-user {
|
38
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
39
|
+
}
|
40
|
+
.icon-film {
|
41
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
42
|
+
}
|
43
|
+
.icon-th-large {
|
44
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
45
|
+
}
|
46
|
+
.icon-th {
|
47
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
48
|
+
}
|
49
|
+
.icon-th-list {
|
50
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
51
|
+
}
|
52
|
+
.icon-ok {
|
53
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
54
|
+
}
|
55
|
+
.icon-remove {
|
56
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
57
|
+
}
|
58
|
+
.icon-zoom-in {
|
59
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
60
|
+
}
|
61
|
+
.icon-zoom-out {
|
62
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
63
|
+
}
|
64
|
+
.icon-off {
|
65
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
66
|
+
}
|
67
|
+
.icon-signal {
|
68
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
69
|
+
}
|
70
|
+
.icon-cog {
|
71
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
72
|
+
}
|
73
|
+
.icon-trash {
|
74
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
75
|
+
}
|
76
|
+
.icon-home {
|
77
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
78
|
+
}
|
79
|
+
.icon-file {
|
80
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
81
|
+
}
|
82
|
+
.icon-time {
|
83
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
84
|
+
}
|
85
|
+
.icon-road {
|
86
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
87
|
+
}
|
88
|
+
.icon-download-alt {
|
89
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
90
|
+
}
|
91
|
+
.icon-download {
|
92
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
93
|
+
}
|
94
|
+
.icon-upload {
|
95
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
96
|
+
}
|
97
|
+
.icon-inbox {
|
98
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
99
|
+
}
|
100
|
+
.icon-play-circle {
|
101
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
102
|
+
}
|
103
|
+
.icon-repeat {
|
104
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
105
|
+
}
|
106
|
+
.icon-refresh {
|
107
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
108
|
+
}
|
109
|
+
.icon-list-alt {
|
110
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
111
|
+
}
|
112
|
+
.icon-lock {
|
113
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
114
|
+
}
|
115
|
+
.icon-flag {
|
116
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
117
|
+
}
|
118
|
+
.icon-headphones {
|
119
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
120
|
+
}
|
121
|
+
.icon-volume-off {
|
122
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
123
|
+
}
|
124
|
+
.icon-volume-down {
|
125
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
126
|
+
}
|
127
|
+
.icon-volume-up {
|
128
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
129
|
+
}
|
130
|
+
.icon-qrcode {
|
131
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
132
|
+
}
|
133
|
+
.icon-barcode {
|
134
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
135
|
+
}
|
136
|
+
.icon-tag {
|
137
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
138
|
+
}
|
139
|
+
.icon-tags {
|
140
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
141
|
+
}
|
142
|
+
.icon-book {
|
143
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
144
|
+
}
|
145
|
+
.icon-bookmark {
|
146
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
147
|
+
}
|
148
|
+
.icon-print {
|
149
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
150
|
+
}
|
151
|
+
.icon-camera {
|
152
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
153
|
+
}
|
154
|
+
.icon-font {
|
155
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
156
|
+
}
|
157
|
+
.icon-bold {
|
158
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
159
|
+
}
|
160
|
+
.icon-italic {
|
161
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
162
|
+
}
|
163
|
+
.icon-text-height {
|
164
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
165
|
+
}
|
166
|
+
.icon-text-width {
|
167
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
168
|
+
}
|
169
|
+
.icon-align-left {
|
170
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
171
|
+
}
|
172
|
+
.icon-align-center {
|
173
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
174
|
+
}
|
175
|
+
.icon-align-right {
|
176
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
177
|
+
}
|
178
|
+
.icon-align-justify {
|
179
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
180
|
+
}
|
181
|
+
.icon-list {
|
182
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
183
|
+
}
|
184
|
+
.icon-indent-left {
|
185
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
186
|
+
}
|
187
|
+
.icon-indent-right {
|
188
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
189
|
+
}
|
190
|
+
.icon-facetime-video {
|
191
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
192
|
+
}
|
193
|
+
.icon-picture {
|
194
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
195
|
+
}
|
196
|
+
.icon-pencil {
|
197
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
198
|
+
}
|
199
|
+
.icon-map-marker {
|
200
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
201
|
+
}
|
202
|
+
.icon-adjust {
|
203
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
204
|
+
}
|
205
|
+
.icon-tint {
|
206
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
207
|
+
}
|
208
|
+
.icon-edit {
|
209
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
210
|
+
}
|
211
|
+
.icon-share {
|
212
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
213
|
+
}
|
214
|
+
.icon-check {
|
215
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
216
|
+
}
|
217
|
+
.icon-move {
|
218
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
219
|
+
}
|
220
|
+
.icon-step-backward {
|
221
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
222
|
+
}
|
223
|
+
.icon-fast-backward {
|
224
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
225
|
+
}
|
226
|
+
.icon-backward {
|
227
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
228
|
+
}
|
229
|
+
.icon-play {
|
230
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
231
|
+
}
|
232
|
+
.icon-pause {
|
233
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
234
|
+
}
|
235
|
+
.icon-stop {
|
236
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
237
|
+
}
|
238
|
+
.icon-forward {
|
239
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
240
|
+
}
|
241
|
+
.icon-fast-forward {
|
242
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
243
|
+
}
|
244
|
+
.icon-step-forward {
|
245
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
246
|
+
}
|
247
|
+
.icon-eject {
|
248
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
249
|
+
}
|
250
|
+
.icon-chevron-left {
|
251
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
252
|
+
}
|
253
|
+
.icon-chevron-right {
|
254
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
255
|
+
}
|
256
|
+
.icon-plus-sign {
|
257
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
258
|
+
}
|
259
|
+
.icon-minus-sign {
|
260
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
261
|
+
}
|
262
|
+
.icon-remove-sign {
|
263
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
264
|
+
}
|
265
|
+
.icon-ok-sign {
|
266
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
267
|
+
}
|
268
|
+
.icon-question-sign {
|
269
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
270
|
+
}
|
271
|
+
.icon-info-sign {
|
272
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
273
|
+
}
|
274
|
+
.icon-screenshot {
|
275
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
276
|
+
}
|
277
|
+
.icon-remove-circle {
|
278
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
279
|
+
}
|
280
|
+
.icon-ok-circle {
|
281
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
282
|
+
}
|
283
|
+
.icon-ban-circle {
|
284
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
285
|
+
}
|
286
|
+
.icon-arrow-left {
|
287
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
288
|
+
}
|
289
|
+
.icon-arrow-right {
|
290
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
291
|
+
}
|
292
|
+
.icon-arrow-up {
|
293
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
294
|
+
}
|
295
|
+
.icon-arrow-down {
|
296
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
297
|
+
}
|
298
|
+
.icon-share-alt {
|
299
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
300
|
+
}
|
301
|
+
.icon-resize-full {
|
302
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
303
|
+
}
|
304
|
+
.icon-resize-small {
|
305
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
306
|
+
}
|
307
|
+
.icon-plus {
|
308
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
309
|
+
}
|
310
|
+
.icon-minus {
|
311
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
312
|
+
}
|
313
|
+
.icon-asterisk {
|
314
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
315
|
+
}
|
316
|
+
.icon-exclamation-sign {
|
317
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
318
|
+
}
|
319
|
+
.icon-gift {
|
320
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
321
|
+
}
|
322
|
+
.icon-leaf {
|
323
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
324
|
+
}
|
325
|
+
.icon-fire {
|
326
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
327
|
+
}
|
328
|
+
.icon-eye-open {
|
329
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
330
|
+
}
|
331
|
+
.icon-eye-close {
|
332
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
333
|
+
}
|
334
|
+
.icon-warning-sign {
|
335
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
336
|
+
}
|
337
|
+
.icon-plane {
|
338
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
339
|
+
}
|
340
|
+
.icon-calendar {
|
341
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
342
|
+
}
|
343
|
+
.icon-random {
|
344
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
345
|
+
}
|
346
|
+
.icon-comment {
|
347
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
348
|
+
}
|
349
|
+
.icon-magnet {
|
350
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
351
|
+
}
|
352
|
+
.icon-chevron-up {
|
353
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
354
|
+
}
|
355
|
+
.icon-chevron-down {
|
356
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
357
|
+
}
|
358
|
+
.icon-retweet {
|
359
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
360
|
+
}
|
361
|
+
.icon-shopping-cart {
|
362
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
363
|
+
}
|
364
|
+
.icon-folder-close {
|
365
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
366
|
+
}
|
367
|
+
.icon-folder-open {
|
368
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
369
|
+
}
|
370
|
+
.icon-resize-vertical {
|
371
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
372
|
+
}
|
373
|
+
.icon-resize-horizontal {
|
374
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
375
|
+
}
|
376
|
+
.icon-bar-chart {
|
377
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
378
|
+
}
|
379
|
+
.icon-twitter-sign {
|
380
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
381
|
+
}
|
382
|
+
.icon-facebook-sign {
|
383
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
384
|
+
}
|
385
|
+
.icon-camera-retro {
|
386
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
387
|
+
}
|
388
|
+
.icon-key {
|
389
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
390
|
+
}
|
391
|
+
.icon-cogs {
|
392
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
393
|
+
}
|
394
|
+
.icon-comments {
|
395
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
396
|
+
}
|
397
|
+
.icon-thumbs-up {
|
398
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
399
|
+
}
|
400
|
+
.icon-thumbs-down {
|
401
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
402
|
+
}
|
403
|
+
.icon-star-half {
|
404
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
405
|
+
}
|
406
|
+
.icon-heart-empty {
|
407
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
408
|
+
}
|
409
|
+
.icon-signout {
|
410
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
411
|
+
}
|
412
|
+
.icon-linkedin-sign {
|
413
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
414
|
+
}
|
415
|
+
.icon-pushpin {
|
416
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
417
|
+
}
|
418
|
+
.icon-external-link {
|
419
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
420
|
+
}
|
421
|
+
.icon-signin {
|
422
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
423
|
+
}
|
424
|
+
.icon-trophy {
|
425
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
426
|
+
}
|
427
|
+
.icon-github-sign {
|
428
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
429
|
+
}
|
430
|
+
.icon-upload-alt {
|
431
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
432
|
+
}
|
433
|
+
.icon-lemon {
|
434
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
435
|
+
}
|
436
|
+
.icon-phone {
|
437
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
438
|
+
}
|
439
|
+
.icon-check-empty {
|
440
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
441
|
+
}
|
442
|
+
.icon-bookmark-empty {
|
443
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
444
|
+
}
|
445
|
+
.icon-phone-sign {
|
446
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
447
|
+
}
|
448
|
+
.icon-twitter {
|
449
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
450
|
+
}
|
451
|
+
.icon-facebook {
|
452
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
453
|
+
}
|
454
|
+
.icon-github {
|
455
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
456
|
+
}
|
457
|
+
.icon-unlock {
|
458
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
459
|
+
}
|
460
|
+
.icon-credit-card {
|
461
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
462
|
+
}
|
463
|
+
.icon-rss {
|
464
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
465
|
+
}
|
466
|
+
.icon-hdd {
|
467
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
468
|
+
}
|
469
|
+
.icon-bullhorn {
|
470
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
471
|
+
}
|
472
|
+
.icon-bell {
|
473
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
474
|
+
}
|
475
|
+
.icon-certificate {
|
476
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
477
|
+
}
|
478
|
+
.icon-hand-right {
|
479
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
480
|
+
}
|
481
|
+
.icon-hand-left {
|
482
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
483
|
+
}
|
484
|
+
.icon-hand-up {
|
485
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
486
|
+
}
|
487
|
+
.icon-hand-down {
|
488
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
489
|
+
}
|
490
|
+
.icon-circle-arrow-left {
|
491
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
492
|
+
}
|
493
|
+
.icon-circle-arrow-right {
|
494
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
495
|
+
}
|
496
|
+
.icon-circle-arrow-up {
|
497
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
498
|
+
}
|
499
|
+
.icon-circle-arrow-down {
|
500
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
501
|
+
}
|
502
|
+
.icon-globe {
|
503
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
504
|
+
}
|
505
|
+
.icon-wrench {
|
506
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
507
|
+
}
|
508
|
+
.icon-tasks {
|
509
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
510
|
+
}
|
511
|
+
.icon-filter {
|
512
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
513
|
+
}
|
514
|
+
.icon-briefcase {
|
515
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
516
|
+
}
|
517
|
+
.icon-fullscreen {
|
518
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
519
|
+
}
|
520
|
+
.icon-group {
|
521
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
522
|
+
}
|
523
|
+
.icon-link {
|
524
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
525
|
+
}
|
526
|
+
.icon-cloud {
|
527
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
528
|
+
}
|
529
|
+
.icon-beaker {
|
530
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
531
|
+
}
|
532
|
+
.icon-cut {
|
533
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
534
|
+
}
|
535
|
+
.icon-copy {
|
536
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
537
|
+
}
|
538
|
+
.icon-paper-clip {
|
539
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
540
|
+
}
|
541
|
+
.icon-save {
|
542
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
543
|
+
}
|
544
|
+
.icon-sign-blank {
|
545
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
546
|
+
}
|
547
|
+
.icon-reorder {
|
548
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
549
|
+
}
|
550
|
+
.icon-list-ul {
|
551
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
552
|
+
}
|
553
|
+
.icon-list-ol {
|
554
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
555
|
+
}
|
556
|
+
.icon-strikethrough {
|
557
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
558
|
+
}
|
559
|
+
.icon-underline {
|
560
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
561
|
+
}
|
562
|
+
.icon-table {
|
563
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
564
|
+
}
|
565
|
+
.icon-magic {
|
566
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
567
|
+
}
|
568
|
+
.icon-truck {
|
569
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
570
|
+
}
|
571
|
+
.icon-pinterest {
|
572
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
573
|
+
}
|
574
|
+
.icon-pinterest-sign {
|
575
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
576
|
+
}
|
577
|
+
.icon-google-plus-sign {
|
578
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
579
|
+
}
|
580
|
+
.icon-google-plus {
|
581
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
582
|
+
}
|
583
|
+
.icon-money {
|
584
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
585
|
+
}
|
586
|
+
.icon-caret-down {
|
587
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
588
|
+
}
|
589
|
+
.icon-caret-up {
|
590
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
591
|
+
}
|
592
|
+
.icon-caret-left {
|
593
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
594
|
+
}
|
595
|
+
.icon-caret-right {
|
596
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
597
|
+
}
|
598
|
+
.icon-columns {
|
599
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
600
|
+
}
|
601
|
+
.icon-sort {
|
602
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
603
|
+
}
|
604
|
+
.icon-sort-down {
|
605
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
606
|
+
}
|
607
|
+
.icon-sort-up {
|
608
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
609
|
+
}
|
610
|
+
.icon-envelope-alt {
|
611
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
612
|
+
}
|
613
|
+
.icon-linkedin {
|
614
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
615
|
+
}
|
616
|
+
.icon-undo {
|
617
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
618
|
+
}
|
619
|
+
.icon-legal {
|
620
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
621
|
+
}
|
622
|
+
.icon-dashboard {
|
623
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
624
|
+
}
|
625
|
+
.icon-comment-alt {
|
626
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
627
|
+
}
|
628
|
+
.icon-comments-alt {
|
629
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
630
|
+
}
|
631
|
+
.icon-bolt {
|
632
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
633
|
+
}
|
634
|
+
.icon-sitemap {
|
635
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
636
|
+
}
|
637
|
+
.icon-umbrella {
|
638
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
639
|
+
}
|
640
|
+
.icon-paste {
|
641
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
642
|
+
}
|
643
|
+
.icon-user-md {
|
644
|
+
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
|
645
|
+
}
|