batch-rails-4 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +18 -0
- data/README.md +4 -0
- data/Rakefile +6 -0
- data/app/assets/fonts/batch-icons-webfont.eot +0 -0
- data/app/assets/fonts/batch-icons-webfont.svg +360 -0
- data/app/assets/fonts/batch-icons-webfont.ttf +0 -0
- data/app/assets/fonts/batch-icons-webfont.woff +0 -0
- data/app/assets/fonts/batch_webfont_reference.pdf +0 -0
- data/app/assets/stylesheets/batch-webfont.css.erb +1076 -0
- data/app/controllers/application_controller.rb +5 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/views/layouts/application.html.erb +14 -0
- data/lib/batch-rails-4/engine.rb +8 -0
- data/lib/batch-rails-4/version.rb +7 -0
- data/lib/batch-rails-4.rb +2 -0
- data/test/test_helper.rb +15 -0
- metadata +123 -0
@@ -0,0 +1,1076 @@
|
|
1
|
+
/*!
|
2
|
+
* Batch Webfont 1.3
|
3
|
+
* -------------------------------------------------------
|
4
|
+
* Icon source: @AdamWhitcroft
|
5
|
+
* http://adamwhitcroft.com/batch/
|
6
|
+
*
|
7
|
+
* License
|
8
|
+
* -------------------------------------------------------
|
9
|
+
* http://adamwhitcroft.com/batch/license/
|
10
|
+
*
|
11
|
+
* CSS
|
12
|
+
* -------------------------------------------------------
|
13
|
+
* Author: @zethussuen
|
14
|
+
*/
|
15
|
+
/* FONT PATH
|
16
|
+
* -------------------------- */
|
17
|
+
@font-face {
|
18
|
+
font-family: 'Batch';
|
19
|
+
src: url('<%= font_path('batch-icons-webfont.eot') %>');
|
20
|
+
src: url('<%= font_path('batch-icons-webfont.eot?#iefix') %>') format('embedded-opentype'), url('<%= font_path('batch-icons-webfont.woff') %>') format('woff'), url('<%= font_path('batch-icons-webfont.ttf') %>') format('truetype'), url('<%= font_path('batch-icons-webfont.svg#batchregular') %>') format('svg');
|
21
|
+
font-weight: normal;
|
22
|
+
font-style: normal;
|
23
|
+
}
|
24
|
+
/* BATCH CLASSES
|
25
|
+
* -------------------------- */
|
26
|
+
.batch {
|
27
|
+
font-family: "Batch";
|
28
|
+
font-size: 16px;
|
29
|
+
line-height: 1;
|
30
|
+
font-weight: normal;
|
31
|
+
font-style: normal;
|
32
|
+
text-decoration: inherit;
|
33
|
+
-webkit-font-smoothing: antialiased;
|
34
|
+
}
|
35
|
+
|
36
|
+
[class^="batch-"]:before,
|
37
|
+
[class*=" batch-"]:before {
|
38
|
+
text-decoration: inherit;
|
39
|
+
display: inline-block;
|
40
|
+
speak: none;
|
41
|
+
}
|
42
|
+
|
43
|
+
.batch--large { font-size: 2em; }
|
44
|
+
.batch--large { font-size: 4em; }
|
45
|
+
.batch--natural { font-size: inherit; }
|
46
|
+
|
47
|
+
/* Batch Unicode */
|
48
|
+
.batch-speech-left:before {
|
49
|
+
content: "\F000";
|
50
|
+
}
|
51
|
+
.batch-speech-middle:before {
|
52
|
+
content: "\F001";
|
53
|
+
}
|
54
|
+
.batch-speech-right:before {
|
55
|
+
content: "\F002";
|
56
|
+
}
|
57
|
+
.batch-speech-text-left:before {
|
58
|
+
content: "\F003";
|
59
|
+
}
|
60
|
+
.batch-speech-text-middle:before {
|
61
|
+
content: "\F004";
|
62
|
+
}
|
63
|
+
.batch-speech-text-right:before {
|
64
|
+
content: "\F005";
|
65
|
+
}
|
66
|
+
.batch-speech-text-alt-left:before {
|
67
|
+
content: "\F006";
|
68
|
+
}
|
69
|
+
.batch-speech-text-alt-middle:before {
|
70
|
+
content: "\F007";
|
71
|
+
}
|
72
|
+
.batch-speech-text-alt-right:before {
|
73
|
+
content: "\F008";
|
74
|
+
}
|
75
|
+
.batch-speech-chat-left:before {
|
76
|
+
content: "\F009";
|
77
|
+
}
|
78
|
+
.batch-speech-chat-right:before {
|
79
|
+
content: "\F00A";
|
80
|
+
}
|
81
|
+
.batch-browser:before {
|
82
|
+
content: "\F00B";
|
83
|
+
}
|
84
|
+
.batch-browser-new:before {
|
85
|
+
content: "\F00C";
|
86
|
+
}
|
87
|
+
.batch-browser-close:before {
|
88
|
+
content: "\F00D";
|
89
|
+
}
|
90
|
+
.batch-browser-quit:before {
|
91
|
+
content: "\F00E";
|
92
|
+
}
|
93
|
+
.batch-browser-upload:before {
|
94
|
+
content: "\F010";
|
95
|
+
}
|
96
|
+
.batch-browser-download:before {
|
97
|
+
content: "\F011";
|
98
|
+
}
|
99
|
+
.batch-browser-terminal:before {
|
100
|
+
content: "\F012";
|
101
|
+
}
|
102
|
+
.batch-browser-windows:before {
|
103
|
+
content: "\F013";
|
104
|
+
}
|
105
|
+
.batch-browser-alt:before {
|
106
|
+
content: "\F014";
|
107
|
+
}
|
108
|
+
.batch-browser-alt-new:before {
|
109
|
+
content: "\F015";
|
110
|
+
}
|
111
|
+
.batch-browser-alt-close:before {
|
112
|
+
content: "\F016";
|
113
|
+
}
|
114
|
+
.batch-browser-alt-quit:before {
|
115
|
+
content: "\F017";
|
116
|
+
}
|
117
|
+
.batch-browser-alt-upload:before {
|
118
|
+
content: "\F018";
|
119
|
+
}
|
120
|
+
.batch-browser-alt-download:before {
|
121
|
+
content: "\F019";
|
122
|
+
}
|
123
|
+
.batch-browser-alt-terminal:before {
|
124
|
+
content: "\F01A";
|
125
|
+
}
|
126
|
+
.batch-browser-alt-windows:before {
|
127
|
+
content: "\F01B";
|
128
|
+
}
|
129
|
+
.batch-plus:before {
|
130
|
+
content: "\F01D";
|
131
|
+
}
|
132
|
+
.batch-minus:before {
|
133
|
+
content: "\F01E";
|
134
|
+
}
|
135
|
+
.batch-marquee:before {
|
136
|
+
content: "\F020";
|
137
|
+
}
|
138
|
+
.batch-marquee-plus:before {
|
139
|
+
content: "\F021";
|
140
|
+
}
|
141
|
+
.batch-marquee-minus:before {
|
142
|
+
content: "\F022";
|
143
|
+
}
|
144
|
+
.batch-marquee-upload:before {
|
145
|
+
content: "\F023";
|
146
|
+
}
|
147
|
+
.batch-marquee-download:before {
|
148
|
+
content: "\F024";
|
149
|
+
}
|
150
|
+
.batch-marquee-upload:before {
|
151
|
+
content: "\F023";
|
152
|
+
}
|
153
|
+
.batch-crate:before {
|
154
|
+
content: "\F025";
|
155
|
+
}
|
156
|
+
.batch-grid:before {
|
157
|
+
content: "\F026";
|
158
|
+
}
|
159
|
+
.batch-grid-alt:before {
|
160
|
+
content: "\F027";
|
161
|
+
}
|
162
|
+
.batch-list:before {
|
163
|
+
content: "\F028";
|
164
|
+
}
|
165
|
+
.batch-list-alt:before {
|
166
|
+
content: "\F029";
|
167
|
+
}
|
168
|
+
.batch-in:before {
|
169
|
+
content: "\F02A";
|
170
|
+
}
|
171
|
+
.batch-out:before {
|
172
|
+
content: "\F02B";
|
173
|
+
}
|
174
|
+
.batch-inbox:before {
|
175
|
+
content: "\F02C";
|
176
|
+
}
|
177
|
+
.batch-outbox:before {
|
178
|
+
content: "\F02D";
|
179
|
+
}
|
180
|
+
.batch-outgoing:before {
|
181
|
+
content: "\F02E";
|
182
|
+
}
|
183
|
+
.batch-align-justify:before {
|
184
|
+
content: "\F030";
|
185
|
+
}
|
186
|
+
.batch-align-left:before {
|
187
|
+
content: "\F031";
|
188
|
+
}
|
189
|
+
.batch-align-center:before {
|
190
|
+
content: "\F032";
|
191
|
+
}
|
192
|
+
.batch-align-right:before {
|
193
|
+
content: "\F033";
|
194
|
+
}
|
195
|
+
.batch-align-justify-alt:before {
|
196
|
+
content: "\F034";
|
197
|
+
}
|
198
|
+
.batch-align-left-alt:before {
|
199
|
+
content: "\F035";
|
200
|
+
}
|
201
|
+
.batch-align-center-alt:before {
|
202
|
+
content: "\F036";
|
203
|
+
}
|
204
|
+
.batch-align-right-alt:before {
|
205
|
+
content: "\F037";
|
206
|
+
}
|
207
|
+
.batch-mute:before {
|
208
|
+
content: "\F038";
|
209
|
+
}
|
210
|
+
.batch-audio-low:before {
|
211
|
+
content: "\F039";
|
212
|
+
}
|
213
|
+
.batch-audio-mid:before {
|
214
|
+
content: "\F03A";
|
215
|
+
}
|
216
|
+
.batch-audio-high:before {
|
217
|
+
content: "\F03B";
|
218
|
+
}
|
219
|
+
.batch-bright:before {
|
220
|
+
content: "\F03C";
|
221
|
+
}
|
222
|
+
.batch-dim:before {
|
223
|
+
content: "\F03D";
|
224
|
+
}
|
225
|
+
.batch-contrast:before {
|
226
|
+
content: "\F03E";
|
227
|
+
}
|
228
|
+
.batch-image:before {
|
229
|
+
content: "\F040";
|
230
|
+
}
|
231
|
+
.batch-video:before {
|
232
|
+
content: "\F041";
|
233
|
+
}
|
234
|
+
.batch-video-alt:before {
|
235
|
+
content: "\F042";
|
236
|
+
}
|
237
|
+
.batch-user:before {
|
238
|
+
content: "\F043";
|
239
|
+
}
|
240
|
+
.batch-user-alt:before {
|
241
|
+
content: "\F044";
|
242
|
+
}
|
243
|
+
.batch-users:before {
|
244
|
+
content: "\F045";
|
245
|
+
}
|
246
|
+
.batch-user-circle:before {
|
247
|
+
content: "\F046";
|
248
|
+
}
|
249
|
+
.batch-user-card:before {
|
250
|
+
content: "\F047";
|
251
|
+
}
|
252
|
+
.batch-user-card-alt:before {
|
253
|
+
content: "\F048";
|
254
|
+
}
|
255
|
+
.batch-heart-fill:before {
|
256
|
+
content: "\F049";
|
257
|
+
}
|
258
|
+
.batch-heart-half:before {
|
259
|
+
content: "\F04A";
|
260
|
+
}
|
261
|
+
.batch-heart:before {
|
262
|
+
content: "\F04B";
|
263
|
+
}
|
264
|
+
.batch-cog:before {
|
265
|
+
content: "\F04C";
|
266
|
+
}
|
267
|
+
.batch-cog-alt:before {
|
268
|
+
content: "\F04D";
|
269
|
+
}
|
270
|
+
.batch-cogs:before {
|
271
|
+
content: "\F04E";
|
272
|
+
}
|
273
|
+
.batch-flask:before {
|
274
|
+
content: "\F050";
|
275
|
+
}
|
276
|
+
.batch-flask-alt:before {
|
277
|
+
content: "\F051";
|
278
|
+
}
|
279
|
+
.batch-switch-on:before {
|
280
|
+
content: "\F052";
|
281
|
+
}
|
282
|
+
.batch-switch-off:before {
|
283
|
+
content: "\F053";
|
284
|
+
}
|
285
|
+
.batch-toggle-on:before {
|
286
|
+
content: "\F054";
|
287
|
+
}
|
288
|
+
.batch-toggle-off:before {
|
289
|
+
content: "\F055";
|
290
|
+
}
|
291
|
+
.batch-trash:before {
|
292
|
+
content: "\F056";
|
293
|
+
}
|
294
|
+
.batch-trash-alt:before {
|
295
|
+
content: "\F057";
|
296
|
+
}
|
297
|
+
.batch-floppy:before {
|
298
|
+
content: "\F058";
|
299
|
+
}
|
300
|
+
.batch-floppy-alt:before {
|
301
|
+
content: "\F059";
|
302
|
+
}
|
303
|
+
.batch-notes:before {
|
304
|
+
content: "\F05A";
|
305
|
+
}
|
306
|
+
.batch-calendar:before {
|
307
|
+
content: "\F05B";
|
308
|
+
}
|
309
|
+
.batch-reminder:before {
|
310
|
+
content: "\F05C";
|
311
|
+
}
|
312
|
+
.batch-clipboard:before {
|
313
|
+
content: "\F05D";
|
314
|
+
}
|
315
|
+
.batch-clipboard-alt:before {
|
316
|
+
content: "\F05E";
|
317
|
+
}
|
318
|
+
.batch-terminal:before {
|
319
|
+
content: "\F060";
|
320
|
+
}
|
321
|
+
.batch-code:before {
|
322
|
+
content: "\F061";
|
323
|
+
}
|
324
|
+
.batch-code-alt:before {
|
325
|
+
content: "\F062";
|
326
|
+
}
|
327
|
+
.batch-curlybraces:before {
|
328
|
+
content: "\F063";
|
329
|
+
}
|
330
|
+
.batch-brackets:before {
|
331
|
+
content: "\F064";
|
332
|
+
}
|
333
|
+
.batch-cmd:before {
|
334
|
+
content: "\F066";
|
335
|
+
}
|
336
|
+
.batch-infinity:before {
|
337
|
+
content: "\F067";
|
338
|
+
}
|
339
|
+
.batch-tilde:before {
|
340
|
+
content: "\F068";
|
341
|
+
}
|
342
|
+
.batch-power:before {
|
343
|
+
content: "\F069";
|
344
|
+
}
|
345
|
+
.batch-keys:before {
|
346
|
+
content: "\F06A";
|
347
|
+
}
|
348
|
+
.batch-mixer:before {
|
349
|
+
content: "\F06B";
|
350
|
+
}
|
351
|
+
.batch-wave:before {
|
352
|
+
content: "\F06C";
|
353
|
+
}
|
354
|
+
.batch-wave-alt:before {
|
355
|
+
content: "\F06D";
|
356
|
+
}
|
357
|
+
.batch-vinyl:before {
|
358
|
+
content: "\F06E";
|
359
|
+
}
|
360
|
+
.batch-spool:before {
|
361
|
+
content: "\F070";
|
362
|
+
}
|
363
|
+
.batch-casette:before {
|
364
|
+
content: "\F071";
|
365
|
+
}
|
366
|
+
.batch-voicemail:before {
|
367
|
+
content: "\F072";
|
368
|
+
}
|
369
|
+
.batch-microphone:before {
|
370
|
+
content: "\F073";
|
371
|
+
}
|
372
|
+
.batch-microphone-alt:before {
|
373
|
+
content: "\F074";
|
374
|
+
}
|
375
|
+
.batch-bullhorn:before {
|
376
|
+
content: "\F075";
|
377
|
+
}
|
378
|
+
.batch-bullhorn-alt:before {
|
379
|
+
content: "\F076";
|
380
|
+
}
|
381
|
+
.batch-headset:before {
|
382
|
+
content: "\F077";
|
383
|
+
}
|
384
|
+
.batch-camera-fill:before {
|
385
|
+
content: "\F078";
|
386
|
+
}
|
387
|
+
.batch-camera:before {
|
388
|
+
content: "\F079";
|
389
|
+
}
|
390
|
+
.batch-camera-alt:before {
|
391
|
+
content: "\F07A";
|
392
|
+
}
|
393
|
+
.batch-pin:before {
|
394
|
+
content: "\F07B";
|
395
|
+
}
|
396
|
+
.batch-pin-alt:before {
|
397
|
+
content: "\F07C";
|
398
|
+
}
|
399
|
+
.batch-map:before {
|
400
|
+
content: "\F07D";
|
401
|
+
}
|
402
|
+
.batch-map-alt:before {
|
403
|
+
content: "\F07E";
|
404
|
+
}
|
405
|
+
.batch-rolodex:before {
|
406
|
+
content: "\F080";
|
407
|
+
}
|
408
|
+
.batch-battery-100:before {
|
409
|
+
content: "\F081";
|
410
|
+
}
|
411
|
+
.batch-battery-80:before {
|
412
|
+
content: "\F082";
|
413
|
+
}
|
414
|
+
.batch-battery-60:before {
|
415
|
+
content: "\F083";
|
416
|
+
}
|
417
|
+
.batch-battery-40:before {
|
418
|
+
content: "\F084";
|
419
|
+
}
|
420
|
+
.batch-battery-20:before {
|
421
|
+
content: "\F085";
|
422
|
+
}
|
423
|
+
.batch-battery-0:before {
|
424
|
+
content: "\F086";
|
425
|
+
}
|
426
|
+
.batch-battery-charge:before {
|
427
|
+
content: "\F087";
|
428
|
+
}
|
429
|
+
.batch-battery-alt-100:before {
|
430
|
+
content: "\F088";
|
431
|
+
}
|
432
|
+
.batch-battery-alt-80:before {
|
433
|
+
content: "\F089";
|
434
|
+
}
|
435
|
+
.batch-battery-alt-60:before {
|
436
|
+
content: "\F08A";
|
437
|
+
}
|
438
|
+
.batch-battery-alt-40:before {
|
439
|
+
content: "\F08B";
|
440
|
+
}
|
441
|
+
.batch-battery-alt-20:before {
|
442
|
+
content: "\F08C";
|
443
|
+
}
|
444
|
+
.batch-battery-alt-0:before {
|
445
|
+
content: "\F08D";
|
446
|
+
}
|
447
|
+
.batch-battery-alt-charge:before {
|
448
|
+
content: "\F08E";
|
449
|
+
}
|
450
|
+
.batch-clock:before {
|
451
|
+
content: "\F090";
|
452
|
+
}
|
453
|
+
.batch-flux:before {
|
454
|
+
content: "\F091";
|
455
|
+
}
|
456
|
+
.batch-sleep:before {
|
457
|
+
content: "\F092";
|
458
|
+
}
|
459
|
+
.batch-nope:before {
|
460
|
+
content: "\F093";
|
461
|
+
}
|
462
|
+
.batch-search:before {
|
463
|
+
content: "\F094";
|
464
|
+
}
|
465
|
+
.batch-zoomin:before {
|
466
|
+
content: "\F095";
|
467
|
+
}
|
468
|
+
.batch-zoomout:before {
|
469
|
+
content: "\F096";
|
470
|
+
}
|
471
|
+
.batch-search-alt:before {
|
472
|
+
content: "\F097";
|
473
|
+
}
|
474
|
+
.batch-zoomin-alt:before {
|
475
|
+
content: "\F098";
|
476
|
+
}
|
477
|
+
.batch-zoomout-alt:before {
|
478
|
+
content: "\F099";
|
479
|
+
}
|
480
|
+
.batch-eye:before {
|
481
|
+
content: "\F09A";
|
482
|
+
}
|
483
|
+
.batch-eye-alt:before {
|
484
|
+
content: "\F09B";
|
485
|
+
}
|
486
|
+
.batch-wifi-low:before {
|
487
|
+
content: "\F09C";
|
488
|
+
}
|
489
|
+
.batch-wifi-half:before {
|
490
|
+
content: "\F09D";
|
491
|
+
}
|
492
|
+
.batch-wifi-high:before {
|
493
|
+
content: "\F09E";
|
494
|
+
}
|
495
|
+
.batch-expand:before {
|
496
|
+
content: "\F0A0";
|
497
|
+
}
|
498
|
+
.batch-contract:before {
|
499
|
+
content: "\F0A1";
|
500
|
+
}
|
501
|
+
.batch-expand-alt:before {
|
502
|
+
content: "\F0A2";
|
503
|
+
}
|
504
|
+
.batch-contract-alt:before {
|
505
|
+
content: "\F0A3";
|
506
|
+
}
|
507
|
+
.batch-expand-alt-2:before {
|
508
|
+
content: "\F0A4";
|
509
|
+
}
|
510
|
+
.batch-maximize:before {
|
511
|
+
content: "\F0A5";
|
512
|
+
}
|
513
|
+
.batch-contract-alt-2:before {
|
514
|
+
content: "\F0A6";
|
515
|
+
}
|
516
|
+
.batch-menu-down:before {
|
517
|
+
content: "\F0A7";
|
518
|
+
}
|
519
|
+
.batch-menu-up:before {
|
520
|
+
content: "\F0A8";
|
521
|
+
}
|
522
|
+
.batch-menu:before {
|
523
|
+
content: "\F0A9";
|
524
|
+
}
|
525
|
+
.batch-menu-alt:before {
|
526
|
+
content: "\F0AA";
|
527
|
+
}
|
528
|
+
.batch-tag:before {
|
529
|
+
content: "\F0AB";
|
530
|
+
}
|
531
|
+
.batch-tag-alt:before {
|
532
|
+
content: "\F0AC";
|
533
|
+
}
|
534
|
+
.batch-tagged:before {
|
535
|
+
content: "\F0AD";
|
536
|
+
}
|
537
|
+
.batch-tagged-alt:before {
|
538
|
+
content: "\F0AE";
|
539
|
+
}
|
540
|
+
.batch-refresh:before {
|
541
|
+
content: "\F0B0";
|
542
|
+
}
|
543
|
+
.batch-repeat:before {
|
544
|
+
content: "\F0B1";
|
545
|
+
}
|
546
|
+
.batch-repeat-alt:before {
|
547
|
+
content: "\F0B2";
|
548
|
+
}
|
549
|
+
.batch-shuffle:before {
|
550
|
+
content: "\F0B3";
|
551
|
+
}
|
552
|
+
.batch-return:before {
|
553
|
+
content: "\F0B4";
|
554
|
+
}
|
555
|
+
.batch-wiggle:before {
|
556
|
+
content: "\F0B5";
|
557
|
+
}
|
558
|
+
.batch-split:before {
|
559
|
+
content: "\F0B6";
|
560
|
+
}
|
561
|
+
.batch-split-alt:before {
|
562
|
+
content: "\F0B7";
|
563
|
+
}
|
564
|
+
.batch-merge:before {
|
565
|
+
content: "\F0B8";
|
566
|
+
}
|
567
|
+
.batch-swap:before {
|
568
|
+
content: "\F0B9";
|
569
|
+
}
|
570
|
+
.batch-swap-alt:before {
|
571
|
+
content: "\F0BA";
|
572
|
+
}
|
573
|
+
.batch-transfer:before {
|
574
|
+
content: "\F0BB";
|
575
|
+
}
|
576
|
+
.batch-crate:before {
|
577
|
+
content: "\F0BC";
|
578
|
+
}
|
579
|
+
.batch-crate-inbox:before {
|
580
|
+
content: "\F0BD";
|
581
|
+
}
|
582
|
+
.batch-crate-outbox:before {
|
583
|
+
content: "\F0BE";
|
584
|
+
}
|
585
|
+
.batch-key:before {
|
586
|
+
content: "\F0C0";
|
587
|
+
}
|
588
|
+
.batch-key-alt:before {
|
589
|
+
content: "\F0C1";
|
590
|
+
}
|
591
|
+
.batch-lock:before {
|
592
|
+
content: "\F0C2";
|
593
|
+
}
|
594
|
+
.batch-unlocked:before {
|
595
|
+
content: "\F0C3";
|
596
|
+
}
|
597
|
+
.batch-safe:before {
|
598
|
+
content: "\F0C4";
|
599
|
+
}
|
600
|
+
.batch-spinner:before {
|
601
|
+
content: "\F0C5";
|
602
|
+
}
|
603
|
+
.batch-spinner-alt:before {
|
604
|
+
content: "\F0C6";
|
605
|
+
}
|
606
|
+
.batch-spinner-alt-thick:before {
|
607
|
+
content: "\F0C7";
|
608
|
+
}
|
609
|
+
.batch-stamp:before {
|
610
|
+
content: "\F0C8";
|
611
|
+
}
|
612
|
+
.batch-stamp-alt:before {
|
613
|
+
content: "\F0C9";
|
614
|
+
}
|
615
|
+
.batch-mail:before {
|
616
|
+
content: "\F0CA";
|
617
|
+
}
|
618
|
+
.batch-mail-alt:before {
|
619
|
+
content: "\F0CB";
|
620
|
+
}
|
621
|
+
.batch-mail-frame:before {
|
622
|
+
content: "\F0CC";
|
623
|
+
}
|
624
|
+
.batch-addressbook:before {
|
625
|
+
content: "\F0CD";
|
626
|
+
}
|
627
|
+
.batch-addressbook-alt:before {
|
628
|
+
content: "\F0CE";
|
629
|
+
}
|
630
|
+
.batch-book:before {
|
631
|
+
content: "\F0D0";
|
632
|
+
}
|
633
|
+
.batch-book-lines:before {
|
634
|
+
content: "\F0D1";
|
635
|
+
}
|
636
|
+
.batch-book-alt:before {
|
637
|
+
content: "\F0D2";
|
638
|
+
}
|
639
|
+
.batch-book-alt-lines:before {
|
640
|
+
content: "\F0D3";
|
641
|
+
}
|
642
|
+
.batch-paperroll:before {
|
643
|
+
content: "\F0D4";
|
644
|
+
}
|
645
|
+
.batch-paperroll-alt:before {
|
646
|
+
content: "\F0D5";
|
647
|
+
}
|
648
|
+
.batch-paper-ripped:before {
|
649
|
+
content: "\F0D6";
|
650
|
+
}
|
651
|
+
.batch-database:before {
|
652
|
+
content: "\F0D7";
|
653
|
+
}
|
654
|
+
.batch-database-add:before {
|
655
|
+
content: "\F0D8";
|
656
|
+
}
|
657
|
+
.batch-database-drop:before {
|
658
|
+
content: "\F0D9";
|
659
|
+
}
|
660
|
+
.batch-support:before {
|
661
|
+
content: "\F0DA";
|
662
|
+
}
|
663
|
+
.batch-support-alt:before {
|
664
|
+
content: "\F0DB";
|
665
|
+
}
|
666
|
+
.batch-support-alt-2:before {
|
667
|
+
content: "\F0DC";
|
668
|
+
}
|
669
|
+
.batch-podcast:before {
|
670
|
+
content: "\F0DD";
|
671
|
+
}
|
672
|
+
.batch-podcast-alt:before {
|
673
|
+
content: "\F0DE";
|
674
|
+
}
|
675
|
+
.batch-folder:before {
|
676
|
+
content: "\F0E0";
|
677
|
+
}
|
678
|
+
.batch-folder-add:before {
|
679
|
+
content: "\F0E1";
|
680
|
+
}
|
681
|
+
.batch-folder-delete:before {
|
682
|
+
content: "\F0E2";
|
683
|
+
}
|
684
|
+
.batch-folders:before {
|
685
|
+
content: "\F0E3";
|
686
|
+
}
|
687
|
+
.batch-folder-alt:before {
|
688
|
+
content: "\F0E4";
|
689
|
+
}
|
690
|
+
.batch-folder-alt-add:before {
|
691
|
+
content: "\F0E5";
|
692
|
+
}
|
693
|
+
.batch-folder-alt-delete:before {
|
694
|
+
content: "\F0E6";
|
695
|
+
}
|
696
|
+
.batch-folders-alt:before {
|
697
|
+
content: "\F0E7";
|
698
|
+
}
|
699
|
+
.batch-cloud:before {
|
700
|
+
content: "\F0E8";
|
701
|
+
}
|
702
|
+
.batch-cloud-upload:before {
|
703
|
+
content: "\F0E9";
|
704
|
+
}
|
705
|
+
.batch-cloud-download:before {
|
706
|
+
content: "\F0EA";
|
707
|
+
}
|
708
|
+
.batch-cloud-add:before {
|
709
|
+
content: "\F0EB";
|
710
|
+
}
|
711
|
+
.batch-cloud-delete:before {
|
712
|
+
content: "\F0EC";
|
713
|
+
}
|
714
|
+
.batch-cloud-alt-add:before {
|
715
|
+
content: "\F0ED";
|
716
|
+
}
|
717
|
+
.batch-cloud-alt-delete:before {
|
718
|
+
content: "\F0EE";
|
719
|
+
}
|
720
|
+
.batch-store:before {
|
721
|
+
content: "\F100";
|
722
|
+
}
|
723
|
+
.batch-store-alt:before {
|
724
|
+
content: "\F101";
|
725
|
+
}
|
726
|
+
.batch-card:before {
|
727
|
+
content: "\F102";
|
728
|
+
}
|
729
|
+
.batch-card-fill:before {
|
730
|
+
content: "\F103";
|
731
|
+
}
|
732
|
+
.batch-card-alt:before {
|
733
|
+
content: "\F104";
|
734
|
+
}
|
735
|
+
.batch-card-fill-alt:before {
|
736
|
+
content: "\F105";
|
737
|
+
}
|
738
|
+
.batch-wallet:before {
|
739
|
+
content: "\F106";
|
740
|
+
}
|
741
|
+
.batch-wallet-alt:before {
|
742
|
+
content: "\F107";
|
743
|
+
}
|
744
|
+
.batch-newspaper-lines:before {
|
745
|
+
content: "\F108";
|
746
|
+
}
|
747
|
+
.batch-newspaper:before {
|
748
|
+
content: "\F109";
|
749
|
+
}
|
750
|
+
.batch-document:before {
|
751
|
+
content: "\F10A";
|
752
|
+
}
|
753
|
+
.batch-document-add:before {
|
754
|
+
content: "\F10B";
|
755
|
+
}
|
756
|
+
.batch-document-delete:before {
|
757
|
+
content: "\F10C";
|
758
|
+
}
|
759
|
+
.batch-clip:before {
|
760
|
+
content: "\F10D";
|
761
|
+
}
|
762
|
+
.batch-clip-alt:before {
|
763
|
+
content: "\F10E";
|
764
|
+
}
|
765
|
+
.batch-align-topedges:before {
|
766
|
+
content: "\F110";
|
767
|
+
}
|
768
|
+
.batch-align-verticalcenters:before {
|
769
|
+
content: "\F111";
|
770
|
+
}
|
771
|
+
.batch-align-bottomedges:before {
|
772
|
+
content: "\F112";
|
773
|
+
}
|
774
|
+
.batch-align-leftedges:before {
|
775
|
+
content: "\F113";
|
776
|
+
}
|
777
|
+
.batch-align-horizontalcenters:before {
|
778
|
+
content: "\F114";
|
779
|
+
}
|
780
|
+
.batch-align-rightedges:before {
|
781
|
+
content: "\F115";
|
782
|
+
}
|
783
|
+
.batch-distribute-topedges:before {
|
784
|
+
content: "\F116";
|
785
|
+
}
|
786
|
+
.batch-distribute-verticalcenters:before {
|
787
|
+
content: "\F117";
|
788
|
+
}
|
789
|
+
.batch-distribute-bottomedges:before {
|
790
|
+
content: "\F118";
|
791
|
+
}
|
792
|
+
.batch-distribute-leftedges:before {
|
793
|
+
content: "\F119";
|
794
|
+
}
|
795
|
+
.batch-distribute-rightedges:before {
|
796
|
+
content: "\F11A";
|
797
|
+
}
|
798
|
+
.batch-distribute-horizontalcenters:before {
|
799
|
+
content: "\F11B";
|
800
|
+
}
|
801
|
+
.batch-unite:before {
|
802
|
+
content: "\F11C";
|
803
|
+
}
|
804
|
+
.batch-subtract:before {
|
805
|
+
content: "\F11D";
|
806
|
+
}
|
807
|
+
.batch-intersect:before {
|
808
|
+
content: "\F11E";
|
809
|
+
}
|
810
|
+
.batch-exclude:before {
|
811
|
+
content: "\F120";
|
812
|
+
}
|
813
|
+
.batch-sidebar-left:before {
|
814
|
+
content: "\F121";
|
815
|
+
}
|
816
|
+
.batch-sidebar-both:before {
|
817
|
+
content: "\F122";
|
818
|
+
}
|
819
|
+
.batch-sidebar-right:before {
|
820
|
+
content: "\F123";
|
821
|
+
}
|
822
|
+
.batch-content-left:before {
|
823
|
+
content: "\F124";
|
824
|
+
}
|
825
|
+
.batch-content-right:before {
|
826
|
+
content: "\F125";
|
827
|
+
}
|
828
|
+
.batch-content-left-alt:before {
|
829
|
+
content: "\F126";
|
830
|
+
}
|
831
|
+
.batch-content-right-alt:before {
|
832
|
+
content: "\F127";
|
833
|
+
}
|
834
|
+
.batch-rulers:before {
|
835
|
+
content: "\F128";
|
836
|
+
}
|
837
|
+
.batch-swatch:before {
|
838
|
+
content: "\F129";
|
839
|
+
}
|
840
|
+
.batch-swatches:before {
|
841
|
+
content: "\F12A";
|
842
|
+
}
|
843
|
+
.batch-crop:before {
|
844
|
+
content: "\F12B";
|
845
|
+
}
|
846
|
+
.batch-bulb:before {
|
847
|
+
content: "\F12C";
|
848
|
+
}
|
849
|
+
.batch-bulb-alt:before {
|
850
|
+
content: "\F12D";
|
851
|
+
}
|
852
|
+
.batch-ink:before {
|
853
|
+
content: "\F12E";
|
854
|
+
}
|
855
|
+
.batch-printer:before {
|
856
|
+
content: "\F130";
|
857
|
+
}
|
858
|
+
.batch-printer-alt:before {
|
859
|
+
content: "\F131";
|
860
|
+
}
|
861
|
+
.batch-bell:before {
|
862
|
+
content: "\F132";
|
863
|
+
}
|
864
|
+
.batch-bell-alt:before {
|
865
|
+
content: "\F133";
|
866
|
+
}
|
867
|
+
.batch-bell-silent:before {
|
868
|
+
content: "\F134";
|
869
|
+
}
|
870
|
+
.batch-bell-alt-silent:before {
|
871
|
+
content: "\F135";
|
872
|
+
}
|
873
|
+
.batch-pen:before {
|
874
|
+
content: "\F136";
|
875
|
+
}
|
876
|
+
.batch-featherpen:before {
|
877
|
+
content: "\F137";
|
878
|
+
}
|
879
|
+
.batch-feather:before {
|
880
|
+
content: "\F138";
|
881
|
+
}
|
882
|
+
.batch-pencil:before {
|
883
|
+
content: "\F139";
|
884
|
+
}
|
885
|
+
.batch-marker:before {
|
886
|
+
content: "\F13A";
|
887
|
+
}
|
888
|
+
.batch-featherpen-alt:before {
|
889
|
+
content: "\F13B";
|
890
|
+
}
|
891
|
+
.batch-feather-atl:before {
|
892
|
+
content: "\F13C";
|
893
|
+
}
|
894
|
+
.batch-pencil-alt:before {
|
895
|
+
content: "\F13D";
|
896
|
+
}
|
897
|
+
.batch-marker-alt:before {
|
898
|
+
content: "\F13E";
|
899
|
+
}
|
900
|
+
.batch-dot:before {
|
901
|
+
content: "\F140";
|
902
|
+
}
|
903
|
+
.batch-dots:before {
|
904
|
+
content: "\F141";
|
905
|
+
}
|
906
|
+
.batch-timeline:before {
|
907
|
+
content: "\F142";
|
908
|
+
}
|
909
|
+
.batch-link:before {
|
910
|
+
content: "\F143";
|
911
|
+
}
|
912
|
+
.batch-link-alt:before {
|
913
|
+
content: "\F144";
|
914
|
+
}
|
915
|
+
.batch-anchor:before {
|
916
|
+
content: "\F145";
|
917
|
+
}
|
918
|
+
.batch-asterisk:before {
|
919
|
+
content: "\F146";
|
920
|
+
}
|
921
|
+
.batch-compass:before {
|
922
|
+
content: "\F147";
|
923
|
+
}
|
924
|
+
.batch-arrow-up:before {
|
925
|
+
content: "\F148";
|
926
|
+
}
|
927
|
+
.batch-arrow-down:before {
|
928
|
+
content: "\F149";
|
929
|
+
}
|
930
|
+
.batch-arrow-left:before {
|
931
|
+
content: "\F14A";
|
932
|
+
}
|
933
|
+
.batch-arrow-right:before {
|
934
|
+
content: "\F14B";
|
935
|
+
}
|
936
|
+
.batch-positive:before {
|
937
|
+
content: "\F14C";
|
938
|
+
}
|
939
|
+
.batch-negative:before {
|
940
|
+
content: "\F14D";
|
941
|
+
}
|
942
|
+
.batch-remove:before {
|
943
|
+
content: "\F14E";
|
944
|
+
}
|
945
|
+
.batch-email:before {
|
946
|
+
content: "\F150";
|
947
|
+
}
|
948
|
+
.batch-ampersand:before {
|
949
|
+
content: "\F151";
|
950
|
+
}
|
951
|
+
.batch-envelope:before {
|
952
|
+
content: "\F152";
|
953
|
+
}
|
954
|
+
.batch-envelope-send:before {
|
955
|
+
content: "\F153";
|
956
|
+
}
|
957
|
+
.batch-envelope-receive:before {
|
958
|
+
content: "\F154";
|
959
|
+
}
|
960
|
+
.batch-trash:before {
|
961
|
+
content: "\F155";
|
962
|
+
}
|
963
|
+
.batch-outgoing-alt:before {
|
964
|
+
content: "\F156";
|
965
|
+
}
|
966
|
+
.batch-reply-all:before {
|
967
|
+
content: "\F157";
|
968
|
+
}
|
969
|
+
.batch-reply:before {
|
970
|
+
content: "\F158";
|
971
|
+
}
|
972
|
+
.batch-share:before {
|
973
|
+
content: "\F159";
|
974
|
+
}
|
975
|
+
.batch-bang-alt:before {
|
976
|
+
content: "\F15A";
|
977
|
+
}
|
978
|
+
.batch-bang:before {
|
979
|
+
content: "\F15B";
|
980
|
+
}
|
981
|
+
.batch-star-alt:before {
|
982
|
+
content: "\F15C";
|
983
|
+
}
|
984
|
+
.batch-star:before {
|
985
|
+
content: "\F15D";
|
986
|
+
}
|
987
|
+
.batch-flag:before {
|
988
|
+
content: "\F15E";
|
989
|
+
}
|
990
|
+
.batch-flag-alt:before {
|
991
|
+
content: "\F160";
|
992
|
+
}
|
993
|
+
.batch-home:before {
|
994
|
+
content: "\F16!";
|
995
|
+
}
|
996
|
+
.batch-home-alt:before {
|
997
|
+
content: "\F162";
|
998
|
+
}
|
999
|
+
.batch-home-alt-2:before {
|
1000
|
+
content: "\F163";
|
1001
|
+
}
|
1002
|
+
.batch-checkbox-yes:before {
|
1003
|
+
content: "\F164";
|
1004
|
+
}
|
1005
|
+
.batch-checkbox-nos:before {
|
1006
|
+
content: "\F165";
|
1007
|
+
}
|
1008
|
+
.batch-alarm:before {
|
1009
|
+
content: "\F166";
|
1010
|
+
}
|
1011
|
+
.batch-stopwatch:before {
|
1012
|
+
content: "\F167";
|
1013
|
+
}
|
1014
|
+
.batch-skip-back:before {
|
1015
|
+
content: "\F168";
|
1016
|
+
}
|
1017
|
+
.batch-rewind:before {
|
1018
|
+
content: "\F169";
|
1019
|
+
}
|
1020
|
+
.batch-stop:before {
|
1021
|
+
content: "\F16A";
|
1022
|
+
}
|
1023
|
+
.batch-play:before {
|
1024
|
+
content: "\F16B";
|
1025
|
+
}
|
1026
|
+
.batch-pause:before {
|
1027
|
+
content: "\F16C";
|
1028
|
+
}
|
1029
|
+
.batch-fastforward:before {
|
1030
|
+
content: "\F16D";
|
1031
|
+
}
|
1032
|
+
.batch-skip-forward:before {
|
1033
|
+
content: "\F16E";
|
1034
|
+
}
|
1035
|
+
.batch-profile:before {
|
1036
|
+
content: "\F170";
|
1037
|
+
}
|
1038
|
+
.batch-profile-add:before {
|
1039
|
+
content: "\F171";
|
1040
|
+
}
|
1041
|
+
.batch-profile-delete:before {
|
1042
|
+
content: "\F172";
|
1043
|
+
}
|
1044
|
+
.batch-profile-add-alt:before {
|
1045
|
+
content: "\F173";
|
1046
|
+
}
|
1047
|
+
.batch-profile-delete-alt:before {
|
1048
|
+
content: "\F174";
|
1049
|
+
}
|
1050
|
+
.batch-fork:before {
|
1051
|
+
content: "\F175";
|
1052
|
+
}
|
1053
|
+
.batch-merge:before {
|
1054
|
+
content: "\F176";
|
1055
|
+
}
|
1056
|
+
.batch-commit:before {
|
1057
|
+
content: "\F177";
|
1058
|
+
}
|
1059
|
+
.batch-watcher:before {
|
1060
|
+
content: "\F178";
|
1061
|
+
}
|
1062
|
+
.batch-watcher-add:before {
|
1063
|
+
content: "\F179";
|
1064
|
+
}
|
1065
|
+
.batch-watcher-delete:before {
|
1066
|
+
content: "\F17A";
|
1067
|
+
}
|
1068
|
+
.batch-watcher-delete:before {
|
1069
|
+
content: "\F17A";
|
1070
|
+
}
|
1071
|
+
.batch-settings:before {
|
1072
|
+
content: "\F17B";
|
1073
|
+
}
|
1074
|
+
.batch-commithistory:before {
|
1075
|
+
content: "\F17C";
|
1076
|
+
}
|