flashgrid 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/flashgrid/version.rb +1 -1
- data/vendor/assets/javascripts/affix.js +1 -1
- data/vendor/assets/stylesheets/button.css.scss +31 -3
- data/vendor/assets/stylesheets/dropdown.css.scss +1 -0
- data/vendor/assets/stylesheets/footer.css.scss +0 -1
- data/vendor/assets/stylesheets/icon.css.scss +163 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71d37a20f3440a400c1d509d429a2774c43d2ffe
|
4
|
+
data.tar.gz: 12ee62dab3db27d744d81b5d172fb99ab239f9c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 100ba7bfad2e087eb47935889b44b5113f2cb72ed65c2f0da616a4ac8a70569c4437ff29b2b6e262900e0f07887725b0a472d4867a1520767f35aff5febc441c
|
7
|
+
data.tar.gz: 049f8bd11e77999f3d934ef16c0cb2bc102268d6f00f3081c047f979eebddc6bb02e3426a8dfddbe35525fc849ee14e1779c0f5d313c7c0647b44cc2b2ac143f
|
data/lib/flashgrid/version.rb
CHANGED
@@ -253,7 +253,8 @@ input.btn-block {
|
|
253
253
|
|
254
254
|
/* #Button Group
|
255
255
|
================================================== */
|
256
|
-
.btn-group
|
256
|
+
.btn-group,
|
257
|
+
.btn-group-vertical {
|
257
258
|
display: inline-block;
|
258
259
|
font-size: 0;
|
259
260
|
position: relative;
|
@@ -265,7 +266,8 @@ input.btn-block {
|
|
265
266
|
margin-right: 10px;
|
266
267
|
margin-left: 0;
|
267
268
|
}
|
268
|
-
.btn-group > .btn
|
269
|
+
.btn-group > .btn,
|
270
|
+
.btn-group-vertical > .btn {
|
269
271
|
border-radius: 0;
|
270
272
|
margin-left: -1px;
|
271
273
|
position: relative;
|
@@ -283,9 +285,35 @@ input.btn-block {
|
|
283
285
|
.btn-group > .btn:active,
|
284
286
|
.btn-group > .btn.active,
|
285
287
|
.btn-group > .btn:hover,
|
286
|
-
.btn-group > .btn:focus
|
288
|
+
.btn-group > .btn:focus,
|
289
|
+
.btn-group > .btn:hover,
|
290
|
+
.btn-group-vertical > .btn:hover,
|
291
|
+
.btn-group-vertical > .btn:focus,
|
292
|
+
.btn-group-vertical > .btn:active,
|
293
|
+
.btn-group-vertical > .btn.active { z-index: 2; }
|
287
294
|
.btn-group .dropdown-toggle:active,
|
288
295
|
.btn-group.open .dropdown-toggle { outline: 0; }
|
296
|
+
.btn-group-vertical > .btn,
|
297
|
+
.btn-group-vertical > .btn-group,
|
298
|
+
.btn-group-vertical > .btn-group > .btn {
|
299
|
+
display: block;
|
300
|
+
margin-left: 0;
|
301
|
+
margin-top: -1px;
|
302
|
+
max-width: 100%;
|
303
|
+
width: 100%;
|
304
|
+
}
|
305
|
+
.btn-group-vertical > .btn:first-child {
|
306
|
+
border-bottom-left-radius: 0;
|
307
|
+
border-top-right-radius: 2px;
|
308
|
+
border-top-left-radius: 2px;
|
309
|
+
margin-left: 0;
|
310
|
+
}
|
311
|
+
.btn-group-vertical > .btn:last-child,
|
312
|
+
.btn-group-vertical > .dropdown-toggle {
|
313
|
+
border-bottom-right-radius: 2px;
|
314
|
+
border-bottom-left-radius: 2px;
|
315
|
+
border-top-right-radius: 0;
|
316
|
+
}
|
289
317
|
.btn-group-justified {
|
290
318
|
border-collapse: separate;
|
291
319
|
display: table;
|
@@ -6,21 +6,23 @@
|
|
6
6
|
================================================== */
|
7
7
|
@font-face {
|
8
8
|
font-family: "Ionicons";
|
9
|
-
src: url(font_path("ionicons/ionicons.eot?v=1.
|
10
|
-
src: url(font_path("ionicons/ionicons.eot?v=1.
|
11
|
-
url(font_path("ionicons/ionicons.ttf?v=1.
|
12
|
-
url(font_path("ionicons/ionicons.woff?v=1.
|
13
|
-
url(font_path("ionicons/ionicons.svg?v=1.
|
9
|
+
src: url(font_path("ionicons/ionicons.eot?v=1.5.2"));
|
10
|
+
src: url(font_path("ionicons/ionicons.eot?v=1.5.2#iefix")) format("embedded-opentype"),
|
11
|
+
url(font_path("ionicons/ionicons.ttf?v=1.5.2")) format("truetype"),
|
12
|
+
url(font_path("ionicons/ionicons.woff?v=1.5.2")) format("woff"),
|
13
|
+
url(font_path("ionicons/ionicons.svg?v=1.5.2#Ionicons")) format("svg");
|
14
14
|
font-weight: normal;
|
15
15
|
font-style: normal;
|
16
16
|
}
|
17
|
-
.icon,
|
17
|
+
.icon,
|
18
|
+
.icon-loading-a,
|
18
19
|
.icon-loading-b,
|
19
20
|
.icon-loading-c,
|
20
21
|
.icon-loading-d,
|
21
22
|
.icon-looping,
|
22
23
|
.icon-refreshing,
|
23
|
-
.icon-ios7-reloading,
|
24
|
+
.icon-ios7-reloading,
|
25
|
+
.iconicons,
|
24
26
|
.icon-alert,
|
25
27
|
.icon-alert-circled,
|
26
28
|
.icon-android-add,
|
@@ -28,6 +30,7 @@
|
|
28
30
|
.icon-android-alarm,
|
29
31
|
.icon-android-archive,
|
30
32
|
.icon-android-arrow-back,
|
33
|
+
.icon-android-arrow-forward,
|
31
34
|
.icon-android-arrow-down-left,
|
32
35
|
.icon-android-arrow-down-right,
|
33
36
|
.icon-android-arrow-up-left,
|
@@ -47,6 +50,7 @@
|
|
47
50
|
.icon-android-developer,
|
48
51
|
.icon-android-display,
|
49
52
|
.icon-android-download,
|
53
|
+
.icon-android-drawer,
|
50
54
|
.icon-android-dropdown,
|
51
55
|
.icon-android-earth,
|
52
56
|
.icon-android-folder,
|
@@ -77,6 +81,7 @@
|
|
77
81
|
.icon-android-social,
|
78
82
|
.icon-android-social-user,
|
79
83
|
.icon-android-sort,
|
84
|
+
.icon-android-stair-drawer,
|
80
85
|
.icon-android-star,
|
81
86
|
.icon-android-stopwatch,
|
82
87
|
.icon-android-storage,
|
@@ -85,9 +90,11 @@
|
|
85
90
|
.icon-android-system-windows,
|
86
91
|
.icon-android-timer,
|
87
92
|
.icon-android-trash,
|
93
|
+
.icon-android-user-menu,
|
88
94
|
.icon-android-volume,
|
89
95
|
.icon-android-wifi,
|
90
96
|
.icon-archive,
|
97
|
+
.icon-aperture,
|
91
98
|
.icon-arrow-down-a,
|
92
99
|
.icon-arrow-down-b,
|
93
100
|
.icon-arrow-down-c,
|
@@ -99,6 +106,7 @@
|
|
99
106
|
.icon-arrow-left-a,
|
100
107
|
.icon-arrow-left-b,
|
101
108
|
.icon-arrow-left-c,
|
109
|
+
.icon-asterisk,
|
102
110
|
.icon-arrow-move,
|
103
111
|
.icon-arrow-resize,
|
104
112
|
.icon-arrow-return-left,
|
@@ -121,6 +129,7 @@
|
|
121
129
|
.icon-beaker,
|
122
130
|
.icon-beer,
|
123
131
|
.icon-bluetooth,
|
132
|
+
.icon-bonfire,
|
124
133
|
.icon-bookmark,
|
125
134
|
.icon-briefcase,
|
126
135
|
.icon-bug,
|
@@ -128,6 +137,7 @@
|
|
128
137
|
.icon-calendar,
|
129
138
|
.icon-camera,
|
130
139
|
.icon-card,
|
140
|
+
.icon-cash,
|
131
141
|
.icon-chatbox,
|
132
142
|
.icon-chatbox-working,
|
133
143
|
.icon-chatboxes,
|
@@ -146,6 +156,7 @@
|
|
146
156
|
.icon-close,
|
147
157
|
.icon-close-circled,
|
148
158
|
.icon-close-round,
|
159
|
+
.icon-closed-captioning,
|
149
160
|
.icon-cloud,
|
150
161
|
.icon-code,
|
151
162
|
.icon-code-download,
|
@@ -155,6 +166,7 @@
|
|
155
166
|
.icon-compose,
|
156
167
|
.icon-connection-bars,
|
157
168
|
.icon-contrast,
|
169
|
+
.icon-cube,
|
158
170
|
.icon-disc,
|
159
171
|
.icon-document,
|
160
172
|
.icon-document-text,
|
@@ -169,7 +181,9 @@
|
|
169
181
|
.icon-female,
|
170
182
|
.icon-filing,
|
171
183
|
.icon-film-marker,
|
184
|
+
.icon-fireball,
|
172
185
|
.icon-flag,
|
186
|
+
.icon-flame,
|
173
187
|
.icon-flash,
|
174
188
|
.icon-flash-off,
|
175
189
|
.icon-flask,
|
@@ -177,14 +191,17 @@
|
|
177
191
|
.icon-fork,
|
178
192
|
.icon-fork-repo,
|
179
193
|
.icon-forward,
|
194
|
+
.icon-funnel,
|
180
195
|
.icon-game-controller-a,
|
181
196
|
.icon-game-controller-b,
|
182
197
|
.icon-gear-a,
|
183
198
|
.icon-gear-b,
|
184
199
|
.icon-grid,
|
185
200
|
.icon-hammer,
|
201
|
+
.icon-happy,
|
186
202
|
.icon-headphone,
|
187
203
|
.icon-heart,
|
204
|
+
.icon-heart-broken,
|
188
205
|
.icon-help,
|
189
206
|
.icon-help-buoy,
|
190
207
|
.icon-help-circled,
|
@@ -201,6 +218,10 @@
|
|
201
218
|
.icon-ios7-alarm-outline,
|
202
219
|
.icon-ios7-albums,
|
203
220
|
.icon-ios7-albums-outline,
|
221
|
+
.icon-ios7-americanfootball,
|
222
|
+
.icon-ios7-americanfootball-outline,
|
223
|
+
.icon-ios7-analytics,
|
224
|
+
.icon-ios7-analytics-outline,
|
204
225
|
.icon-ios7-arrow-back,
|
205
226
|
.icon-ios7-arrow-down,
|
206
227
|
.icon-ios7-arrow-forward,
|
@@ -213,6 +234,12 @@
|
|
213
234
|
.icon-ios7-arrow-up,
|
214
235
|
.icon-ios7-at,
|
215
236
|
.icon-ios7-at-outline,
|
237
|
+
.icon-ios7-barcode:before,
|
238
|
+
.icon-ios7-barcode-outline,
|
239
|
+
.icon-ios7-baseball,
|
240
|
+
.icon-ios7-baseball-outline,
|
241
|
+
.icon-ios7-basketball,
|
242
|
+
.icon-ios7-basketball-outline,
|
216
243
|
.icon-ios7-bell,
|
217
244
|
.icon-ios7-bell-outline,
|
218
245
|
.icon-ios7-bolt,
|
@@ -282,6 +309,8 @@
|
|
282
309
|
.icon-ios7-flag-outline,
|
283
310
|
.icon-ios7-folder,
|
284
311
|
.icon-ios7-folder-outline,
|
312
|
+
.icon-ios7-football,
|
313
|
+
.icon-ios7-football-outline,
|
285
314
|
.icon-ios7-gear,
|
286
315
|
.icon-ios7-gear-outline,
|
287
316
|
.icon-ios7-glasses,
|
@@ -291,6 +320,8 @@
|
|
291
320
|
.icon-ios7-help,
|
292
321
|
.icon-ios7-help-empty,
|
293
322
|
.icon-ios7-help-outline,
|
323
|
+
.icon-ios7-home,
|
324
|
+
.icon-ios7-home-outline,
|
294
325
|
.icon-ios7-infinite,
|
295
326
|
.icon-ios7-infinite-outline,
|
296
327
|
.icon-ios7-information,
|
@@ -305,6 +336,8 @@
|
|
305
336
|
.icon-ios7-location-outline,
|
306
337
|
.icon-ios7-locked,
|
307
338
|
.icon-ios7-locked-outline,
|
339
|
+
.icon-ios7-loop,
|
340
|
+
.icon-ios7-loop-strong,
|
308
341
|
.icon-ios7-medkit,
|
309
342
|
.icon-ios7-medkit-outline,
|
310
343
|
.icon-ios7-mic,
|
@@ -323,12 +356,16 @@
|
|
323
356
|
.icon-ios7-musical-notes,
|
324
357
|
.icon-ios7-navigate,
|
325
358
|
.icon-ios7-navigate-outline,
|
359
|
+
.icon-ios7-paper,
|
360
|
+
.icon-ios7-paper-outline,
|
326
361
|
.icon-ios7-paperplane,
|
327
362
|
.icon-ios7-paperplane-outline,
|
328
363
|
.icon-ios7-partlysunny,
|
329
364
|
.icon-ios7-partlysunny-outline,
|
330
365
|
.icon-ios7-pause,
|
331
366
|
.icon-ios7-pause-outline,
|
367
|
+
.icon-ios7-paw,
|
368
|
+
.icon-ios7-paw-outline,
|
332
369
|
.icon-ios7-people,
|
333
370
|
.icon-ios7-people-outline,
|
334
371
|
.icon-ios7-person,
|
@@ -346,8 +383,12 @@
|
|
346
383
|
.icon-ios7-plus-outline,
|
347
384
|
.icon-ios7-pricetag,
|
348
385
|
.icon-ios7-pricetag-outline,
|
386
|
+
.icon-ios7-pricetags,
|
387
|
+
.icon-ios7-pricetags-outline,
|
349
388
|
.icon-ios7-printer,
|
350
389
|
.icon-ios7-printer-outline,
|
390
|
+
.icon-ios7-pulse,
|
391
|
+
.icon-ios7-pulse-strong,
|
351
392
|
.icon-ios7-rainy,
|
352
393
|
.icon-ios7-rainy-outline,
|
353
394
|
.icon-ios7-recording,
|
@@ -358,10 +399,14 @@
|
|
358
399
|
.icon-ios7-refresh-empty,
|
359
400
|
.icon-ios7-refresh-outline,
|
360
401
|
.icon-ios7-reload,
|
402
|
+
.icon-ios7-reverse-camera,
|
403
|
+
.icon-ios7-reverse-camera-outline,
|
361
404
|
.icon-ios7-rewind,
|
362
405
|
.icon-ios7-rewind-outline,
|
363
406
|
.icon-ios7-search,
|
364
407
|
.icon-ios7-search-strong,
|
408
|
+
.icon-ios7-settings,
|
409
|
+
.icon-ios7-settings-strong,
|
365
410
|
.icon-ios7-skipbackward,
|
366
411
|
.icon-ios7-skipbackward-outline,
|
367
412
|
.icon-ios7-skipforward,
|
@@ -370,6 +415,7 @@
|
|
370
415
|
.icon-ios7-speedometer,
|
371
416
|
.icon-ios7-speedometer-outline,
|
372
417
|
.icon-ios7-star,
|
418
|
+
.icon-ios7-star-half,
|
373
419
|
.icon-ios7-star-outline,
|
374
420
|
.icon-ios7-stopwatch,
|
375
421
|
.icon-ios7-stopwatch-outline,
|
@@ -377,12 +423,16 @@
|
|
377
423
|
.icon-ios7-sunny-outline,
|
378
424
|
.icon-ios7-telephone,
|
379
425
|
.icon-ios7-telephone-outline,
|
426
|
+
.icon-ios7-tennisball,
|
427
|
+
.icon-ios7-tennisball-outline,
|
380
428
|
.icon-ios7-thunderstorm,
|
381
429
|
.icon-ios7-thunderstorm-outline,
|
382
430
|
.icon-ios7-time,
|
383
431
|
.icon-ios7-time-outline,
|
384
432
|
.icon-ios7-timer,
|
385
433
|
.icon-ios7-timer-outline,
|
434
|
+
.icon-ios7-toggle,
|
435
|
+
.icon-ios7-toggle-outline,
|
386
436
|
.icon-ios7-trash,
|
387
437
|
.icon-ios7-trash-outline,
|
388
438
|
.icon-ios7-undo,
|
@@ -424,6 +474,7 @@
|
|
424
474
|
.icon-man,
|
425
475
|
.icon-map,
|
426
476
|
.icon-medkit,
|
477
|
+
.icon-merge,
|
427
478
|
.icon-mic-a,
|
428
479
|
.icon-mic-b,
|
429
480
|
.icon-mic-c,
|
@@ -433,12 +484,15 @@
|
|
433
484
|
.icon-model-s,
|
434
485
|
.icon-monitor,
|
435
486
|
.icon-more,
|
487
|
+
.icon-mouse,
|
436
488
|
.icon-music-note,
|
437
489
|
.icon-navicon,
|
438
490
|
.icon-navicon-round,
|
439
491
|
.icon-navigate,
|
492
|
+
.icon-network,
|
440
493
|
.icon-no-smoking,
|
441
494
|
.icon-nuclear,
|
495
|
+
.icon-outlet,
|
442
496
|
.icon-paper-airplane,
|
443
497
|
.icon-paperclip,
|
444
498
|
.icon-pause,
|
@@ -450,21 +504,30 @@
|
|
450
504
|
.icon-pinpoint,
|
451
505
|
.icon-pizza,
|
452
506
|
.icon-plane,
|
507
|
+
.icon-planet,
|
453
508
|
.icon-play,
|
454
509
|
.icon-playstation,
|
455
510
|
.icon-plus,
|
456
511
|
.icon-plus-circled,
|
457
512
|
.icon-plus-round,
|
513
|
+
.icon-podium,
|
458
514
|
.icon-pound,
|
459
515
|
.icon-power,
|
460
516
|
.icon-pricetag,
|
461
517
|
.icon-pricetags,
|
462
518
|
.icon-printer,
|
519
|
+
.icon-pull-request,
|
520
|
+
.icon-qr-scanner,
|
521
|
+
.icon-quote,
|
463
522
|
.icon-radio-waves,
|
464
523
|
.icon-record,
|
465
524
|
.icon-refresh,
|
466
525
|
.icon-reply,
|
467
526
|
.icon-reply-all,
|
527
|
+
.icon-ribbon-a,
|
528
|
+
.icon-ribbon-b,
|
529
|
+
.icon-sad,
|
530
|
+
.icon-scissors,
|
468
531
|
.icon-search,
|
469
532
|
.icon-settings,
|
470
533
|
.icon-share,
|
@@ -487,13 +550,19 @@
|
|
487
550
|
.icon-social-dropbox-outline,
|
488
551
|
.icon-social-facebook,
|
489
552
|
.icon-social-facebook-outline,
|
553
|
+
.icon-social-foursquare,
|
554
|
+
.icon-social-foursquare-outline,
|
490
555
|
.icon-social-freebsd-devil,
|
491
556
|
.icon-social-github,
|
492
557
|
.icon-social-github-outline,
|
558
|
+
.icon-social-google,
|
559
|
+
.icon-social-google-outline,
|
493
560
|
.icon-social-googleplus,
|
494
561
|
.icon-social-googleplus-outline,
|
495
562
|
.icon-social-hackernews,
|
496
563
|
.icon-social-hackernews-outline,
|
564
|
+
.icon-social-instagram,
|
565
|
+
.icon-social-instagram-outline,
|
497
566
|
.icon-social-linkedin,
|
498
567
|
.icon-social-linkedin-outline,
|
499
568
|
.icon-social-pinterest,
|
@@ -509,6 +578,8 @@
|
|
509
578
|
.icon-social-tux,
|
510
579
|
.icon-social-twitter,
|
511
580
|
.icon-social-twitter-outline,
|
581
|
+
.icon-social-usd,
|
582
|
+
.icon-social-usd-outline,
|
512
583
|
.icon-social-vimeo,
|
513
584
|
.icon-social-vimeo-outline,
|
514
585
|
.icon-social-windows,
|
@@ -529,9 +600,13 @@
|
|
529
600
|
.icon-thermometer,
|
530
601
|
.icon-thumbsdown,
|
531
602
|
.icon-thumbsup,
|
603
|
+
.icon-toggle,
|
604
|
+
.icon-toggle-filled,
|
532
605
|
.icon-trash-a,
|
533
606
|
.icon-trash-b,
|
607
|
+
.icon-trophie,
|
534
608
|
.icon-umbrella,
|
609
|
+
.icon-university,
|
535
610
|
.icon-unlocked,
|
536
611
|
.icon-upload,
|
537
612
|
.icon-usb,
|
@@ -540,12 +615,16 @@
|
|
540
615
|
.icon-volume-low,
|
541
616
|
.icon-volume-medium,
|
542
617
|
.icon-volume-mute,
|
618
|
+
.icon-wand,
|
543
619
|
.icon-waterdrop,
|
544
620
|
.icon-wifi,
|
545
621
|
.icon-wineglass,
|
546
622
|
.icon-woman,
|
547
623
|
.icon-wrench,
|
548
624
|
.icon-xbox {
|
625
|
+
-webkit-box-sizing: border-box;
|
626
|
+
-moz-box-sizing: border-box;
|
627
|
+
box-sizing: border-box;
|
549
628
|
display: inline-block;
|
550
629
|
font-family: "Ionicons";
|
551
630
|
speak: none;
|
@@ -555,6 +634,8 @@
|
|
555
634
|
text-transform: none;
|
556
635
|
text-rendering: auto;
|
557
636
|
line-height: 1;
|
637
|
+
margin: 0;
|
638
|
+
padding: 0;
|
558
639
|
-webkit-font-smoothing: antialiased;
|
559
640
|
-moz-osx-font-smoothing: grayscale;
|
560
641
|
}
|
@@ -602,6 +683,7 @@
|
|
602
683
|
.icon-android-alarm:before { content: "\f2c8" }
|
603
684
|
.icon-android-archive:before { content: "\f2c9" }
|
604
685
|
.icon-android-arrow-back:before { content: "\f2ca" }
|
686
|
+
.icon-android-arrow-forward:before { content: "\f30f" }
|
605
687
|
.icon-android-arrow-down-left:before { content: "\f2cb" }
|
606
688
|
.icon-android-arrow-down-right:before { content: "\f2cc" }
|
607
689
|
.icon-android-arrow-up-left:before { content: "\f2cd" }
|
@@ -621,6 +703,7 @@
|
|
621
703
|
.icon-android-developer:before { content: "\f2db" }
|
622
704
|
.icon-android-display:before { content: "\f2dc" }
|
623
705
|
.icon-android-download:before { content: "\f2dd" }
|
706
|
+
.icon-android-drawer:before { content: "\f310" }
|
624
707
|
.icon-android-dropdown:before { content: "\f2de" }
|
625
708
|
.icon-android-earth:before { content: "\f2df" }
|
626
709
|
.icon-android-folder:before { content: "\f2e0" }
|
@@ -651,6 +734,7 @@
|
|
651
734
|
.icon-android-social:before { content: "\f2fa" }
|
652
735
|
.icon-android-social-user:before { content: "\f2f9" }
|
653
736
|
.icon-android-sort:before { content: "\f2fb" }
|
737
|
+
.icon-android-stair-drawer:before { content: "\f311" }
|
654
738
|
.icon-android-star:before { content: "\f2fc" }
|
655
739
|
.icon-android-stopwatch:before { content: "\f2fd" }
|
656
740
|
.icon-android-storage:before { content: "\f2fe" }
|
@@ -659,12 +743,15 @@
|
|
659
743
|
.icon-android-system-windows:before { content: "\f301" }
|
660
744
|
.icon-android-timer:before { content: "\f302" }
|
661
745
|
.icon-android-trash:before { content: "\f303" }
|
746
|
+
.icon-android-user-menu:before { content: "\f312" }
|
662
747
|
.icon-android-volume:before { content: "\f304" }
|
663
748
|
.icon-android-wifi:before { content: "\f305" }
|
664
749
|
.icon-archive:before { content: "\f102" }
|
750
|
+
.icon-aperture:before { content: "\f313" }
|
665
751
|
.icon-arrow-down-a:before { content: "\f103" }
|
666
752
|
.icon-arrow-down-b:before { content: "\f104" }
|
667
753
|
.icon-arrow-down-c:before { content: "\f105" }
|
754
|
+
.icon-asterisk:before { content: "\f314" }
|
668
755
|
.icon-arrow-expand:before { content: "\f25e" }
|
669
756
|
.icon-arrow-graph-down-left:before { content: "\f25f" }
|
670
757
|
.icon-arrow-graph-down-right:before { content: "\f260" }
|
@@ -695,6 +782,7 @@
|
|
695
782
|
.icon-beaker:before { content: "\f269" }
|
696
783
|
.icon-beer:before { content: "\f26a" }
|
697
784
|
.icon-bluetooth:before { content: "\f116" }
|
785
|
+
.icon-bonfire:before { content: "\f315" }
|
698
786
|
.icon-bookmark:before { content: "\f26b" }
|
699
787
|
.icon-briefcase:before { content: "\f26c" }
|
700
788
|
.icon-bug:before { content: "\f2be" }
|
@@ -702,6 +790,7 @@
|
|
702
790
|
.icon-calendar:before { content: "\f117" }
|
703
791
|
.icon-camera:before { content: "\f118" }
|
704
792
|
.icon-card:before { content: "\f119" }
|
793
|
+
.icon-cash:before { content: "\f316" }
|
705
794
|
.icon-chatbox:before { content: "\f11b" }
|
706
795
|
.icon-chatbox-working:before { content: "\f11a" }
|
707
796
|
.icon-chatboxes:before { content: "\f11c" }
|
@@ -720,6 +809,7 @@
|
|
720
809
|
.icon-close:before { content: "\f12a" }
|
721
810
|
.icon-close-circled:before { content: "\f128" }
|
722
811
|
.icon-close-round:before { content: "\f129" }
|
812
|
+
.icon-closed-captioning:before { content: "\f317" }
|
723
813
|
.icon-cloud:before { content: "\f12b" }
|
724
814
|
.icon-code:before { content: "\f271" }
|
725
815
|
.icon-code-download:before { content: "\f26f" }
|
@@ -729,6 +819,7 @@
|
|
729
819
|
.icon-compose:before { content: "\f12c" }
|
730
820
|
.icon-connection-bars:before { content: "\f274" }
|
731
821
|
.icon-contrast:before { content: "\f275" }
|
822
|
+
.icon-cube:before { content: "\f318" }
|
732
823
|
.icon-disc:before { content: "\f12d" }
|
733
824
|
.icon-document:before { content: "\f12f" }
|
734
825
|
.icon-document-text:before { content: "\f12e" }
|
@@ -743,7 +834,9 @@
|
|
743
834
|
.icon-female:before { content: "\f278" }
|
744
835
|
.icon-filing:before { content: "\f134" }
|
745
836
|
.icon-film-marker:before { content: "\f135" }
|
837
|
+
.icon-fireball:before { content: "\f319" }
|
746
838
|
.icon-flag:before { content: "\f279" }
|
839
|
+
.icon-flame:before { content: "\f31a" }
|
747
840
|
.icon-flash:before { content: "\f137" }
|
748
841
|
.icon-flash-off:before { content: "\f136" }
|
749
842
|
.icon-flask:before { content: "\f138" }
|
@@ -751,22 +844,24 @@
|
|
751
844
|
.icon-fork:before { content: "\f27a" }
|
752
845
|
.icon-fork-repo:before { content: "\f2c0" }
|
753
846
|
.icon-forward:before { content: "\f13a" }
|
847
|
+
.icon-funnel:before { content: "\f31b" }
|
754
848
|
.icon-game-controller-a:before { content: "\f13b" }
|
755
849
|
.icon-game-controller-b:before { content: "\f13c" }
|
756
850
|
.icon-gear-a:before { content: "\f13d" }
|
757
851
|
.icon-gear-b:before { content: "\f13e" }
|
758
852
|
.icon-grid:before { content: "\f13f" }
|
759
853
|
.icon-hammer:before { content: "\f27b" }
|
854
|
+
.icon-happy:before { content: "\f31c" }
|
760
855
|
.icon-headphone:before { content: "\f140" }
|
761
856
|
.icon-heart:before { content: "\f141" }
|
857
|
+
.icon-heart-broken:before { content: "\f31d" }
|
762
858
|
.icon-help:before { content: "\f143" }
|
763
859
|
.icon-help-buoy:before { content: "\f27c" }
|
764
860
|
.icon-help-circled:before { content: "\f142" }
|
765
861
|
.icon-home:before { content: "\f144" }
|
766
862
|
.icon-icecream:before { content: "\f27d" }
|
767
863
|
.icon-icon-social-google-plus:before { content: "\f146" }
|
768
|
-
.icon-icon-social-google-plus-outline:before
|
769
|
-
{ content: "\f145" }
|
864
|
+
.icon-icon-social-google-plus-outline:before { content: "\f145" }
|
770
865
|
.icon-image:before { content: "\f147" }
|
771
866
|
.icon-images:before { content: "\f148" }
|
772
867
|
.icon-information:before { content: "\f14a" }
|
@@ -776,6 +871,10 @@
|
|
776
871
|
.icon-ios7-alarm-outline:before { content: "\f14c" }
|
777
872
|
.icon-ios7-albums:before { content: "\f14f" }
|
778
873
|
.icon-ios7-albums-outline:before { content: "\f14e" }
|
874
|
+
.icon-ios7-americanfootball:before { content: "\f31f" }
|
875
|
+
.icon-ios7-americanfootball-outline:before { content: "\f31e" }
|
876
|
+
.icon-ios7-analytics:before { content: "\f321" }
|
877
|
+
.icon-ios7-analytics-outline:before { content: "\f320" }
|
779
878
|
.icon-ios7-arrow-back:before { content: "\f150" }
|
780
879
|
.icon-ios7-arrow-down:before { content: "\f151" }
|
781
880
|
.icon-ios7-arrow-forward:before { content: "\f152" }
|
@@ -788,6 +887,12 @@
|
|
788
887
|
.icon-ios7-arrow-up:before { content: "\f155" }
|
789
888
|
.icon-ios7-at:before { content: "\f157" }
|
790
889
|
.icon-ios7-at-outline:before { content: "\f156" }
|
890
|
+
.icon-ios7-barcode:before { content: "\f323" }
|
891
|
+
.icon-ios7-barcode-outline:before { content: "\f322" }
|
892
|
+
.icon-ios7-baseball:before { content: "\f325" }
|
893
|
+
.icon-ios7-baseball-outline:before { content: "\f324" }
|
894
|
+
.icon-ios7-basketball:before { content: "\f327" }
|
895
|
+
.icon-ios7-basketball-outline:before { content: "\f326" }
|
791
896
|
.icon-ios7-bell:before { content: "\f159" }
|
792
897
|
.icon-ios7-bell-outline:before { content: "\f158" }
|
793
898
|
.icon-ios7-bolt:before { content: "\f15b" }
|
@@ -857,6 +962,8 @@
|
|
857
962
|
.icon-ios7-flag-outline:before { content: "\f190" }
|
858
963
|
.icon-ios7-folder:before { content: "\f193" }
|
859
964
|
.icon-ios7-folder-outline:before { content: "\f192" }
|
965
|
+
.icon-ios7-football:before { content: "\f329" }
|
966
|
+
.icon-ios7-football-outline:before { content: "\f328" }
|
860
967
|
.icon-ios7-gear:before { content: "\f195" }
|
861
968
|
.icon-ios7-gear-outline:before { content: "\f194" }
|
862
969
|
.icon-ios7-glasses:before { content: "\f197" }
|
@@ -866,6 +973,8 @@
|
|
866
973
|
.icon-ios7-help:before { content: "\f19c" }
|
867
974
|
.icon-ios7-help-empty:before { content: "\f19a" }
|
868
975
|
.icon-ios7-help-outline:before { content: "\f19b" }
|
976
|
+
.icon-ios7-home:before { content: "\f32b" }
|
977
|
+
.icon-ios7-home-outline:before { content: "\f32a" }
|
869
978
|
.icon-ios7-infinite:before { content: "\f19e" }
|
870
979
|
.icon-ios7-infinite-outline:before { content: "\f19d" }
|
871
980
|
.icon-ios7-information:before { content: "\f1a1" }
|
@@ -880,6 +989,8 @@
|
|
880
989
|
.icon-ios7-location-outline:before { content: "\f1a5" }
|
881
990
|
.icon-ios7-locked:before { content: "\f1a8" }
|
882
991
|
.icon-ios7-locked-outline:before { content: "\f1a7" }
|
992
|
+
.icon-ios7-loop:before { content: "\f32d" }
|
993
|
+
.icon-ios7-loop-strong:before { content: "\f32c" }
|
883
994
|
.icon-ios7-medkit:before { content: "\f289" }
|
884
995
|
.icon-ios7-medkit-outline:before { content: "\f288" }
|
885
996
|
.icon-ios7-mic:before { content: "\f1ab" }
|
@@ -898,12 +1009,16 @@
|
|
898
1009
|
.icon-ios7-musical-notes:before { content: "\f1b6" }
|
899
1010
|
.icon-ios7-navigate:before { content: "\f1b8" }
|
900
1011
|
.icon-ios7-navigate-outline:before { content: "\f1b7" }
|
1012
|
+
.icon-ios7-paper:before { content: "\f32f" }
|
1013
|
+
.icon-ios7-paper-outline:before { content: "\f32e" }
|
901
1014
|
.icon-ios7-paperplane:before { content: "\f1ba" }
|
902
1015
|
.icon-ios7-paperplane-outline:before { content: "\f1b9" }
|
903
1016
|
.icon-ios7-partlysunny:before { content: "\f1bc" }
|
904
1017
|
.icon-ios7-partlysunny-outline:before { content: "\f1bb" }
|
905
1018
|
.icon-ios7-pause:before { content: "\f1be" }
|
906
1019
|
.icon-ios7-pause-outline:before { content: "\f1bd" }
|
1020
|
+
.icon-ios7-paw:before { content: "\f331" }
|
1021
|
+
.icon-ios7-paw-outline:before { content: "\f330" }
|
907
1022
|
.icon-ios7-people:before { content: "\f1c0" }
|
908
1023
|
.icon-ios7-people-outline:before { content: "\f1bf" }
|
909
1024
|
.icon-ios7-person:before { content: "\f1c2" }
|
@@ -921,8 +1036,12 @@
|
|
921
1036
|
.icon-ios7-plus-outline:before { content: "\f1ca" }
|
922
1037
|
.icon-ios7-pricetag:before { content: "\f28d" }
|
923
1038
|
.icon-ios7-pricetag-outline:before { content: "\f28c" }
|
1039
|
+
.icon-ios7-pricetags:before { content: "\f333" }
|
1040
|
+
.icon-ios7-pricetags-outline:before { content: "\f332" }
|
924
1041
|
.icon-ios7-printer:before { content: "\f1cd" }
|
925
1042
|
.icon-ios7-printer-outline:before { content: "\f1cc" }
|
1043
|
+
.icon-ios7-pulse:before { content: "\f335" }
|
1044
|
+
.icon-ios7-pulse-strong:before { content: "\f334" }
|
926
1045
|
.icon-ios7-rainy:before { content: "\f1cf" }
|
927
1046
|
.icon-ios7-rainy-outline:before { content: "\f1ce" }
|
928
1047
|
.icon-ios7-recording:before { content: "\f1d1" }
|
@@ -934,10 +1053,14 @@
|
|
934
1053
|
.icon-ios7-refresh-outline:before { content: "\f1d5" }
|
935
1054
|
.icon-ios7-reload:before,
|
936
1055
|
.icon-ios7-reloading:before { content: "\f28e" }
|
1056
|
+
.icon-ios7-reverse-camera:before { content: "\f337" }
|
1057
|
+
.icon-ios7-reverse-camera-outline:before { content: "\f336" }
|
937
1058
|
.icon-ios7-rewind:before { content: "\f1d8" }
|
938
1059
|
.icon-ios7-rewind-outline:before { content: "\f1d7" }
|
939
1060
|
.icon-ios7-search:before { content: "\f1da" }
|
940
1061
|
.icon-ios7-search-strong:before { content: "\f1d9" }
|
1062
|
+
.icon-ios7-settings:before { content: "\f339" }
|
1063
|
+
.icon-ios7-settings-strong:before { content: "\f338" }
|
941
1064
|
.icon-ios7-skipbackward:before { content: "\f1dc" }
|
942
1065
|
.icon-ios7-skipbackward-outline:before { content: "\f1db" }
|
943
1066
|
.icon-ios7-skipforward:before { content: "\f1de" }
|
@@ -947,18 +1070,23 @@
|
|
947
1070
|
.icon-ios7-speedometer-outline:before { content: "\f28f" }
|
948
1071
|
.icon-ios7-star:before { content: "\f1e0" }
|
949
1072
|
.icon-ios7-star-outline:before { content: "\f1df" }
|
1073
|
+
.icon-ios7-star-half:before { content: "\f33a" }
|
950
1074
|
.icon-ios7-stopwatch:before { content: "\f1e2" }
|
951
1075
|
.icon-ios7-stopwatch-outline:before { content: "\f1e1" }
|
952
1076
|
.icon-ios7-sunny:before { content: "\f1e4" }
|
953
1077
|
.icon-ios7-sunny-outline:before { content: "\f1e3" }
|
954
1078
|
.icon-ios7-telephone:before { content: "\f1e6" }
|
955
1079
|
.icon-ios7-telephone-outline:before { content: "\f1e5" }
|
1080
|
+
.icon-ios7-tennisball:before { content: "\f33c" }
|
1081
|
+
.icon-ios7-tennisball-outline:before { content: "\f33b" }
|
956
1082
|
.icon-ios7-thunderstorm:before { content: "\f1e8" }
|
957
1083
|
.icon-ios7-thunderstorm-outline:before { content: "\f1e7" }
|
958
1084
|
.icon-ios7-time:before { content: "\f292" }
|
959
1085
|
.icon-ios7-time-outline:before { content: "\f291" }
|
960
1086
|
.icon-ios7-timer:before { content: "\f1ea" }
|
961
1087
|
.icon-ios7-timer-outline:before { content: "\f1e9" }
|
1088
|
+
.icon-ios7-toggle:before { content: "\f33e" }
|
1089
|
+
.icon-ios7-toggle-outline:before { content: "\f33d" }
|
962
1090
|
.icon-ios7-trash:before { content: "\f1ec" }
|
963
1091
|
.icon-ios7-trash-outline:before { content: "\f1eb" }
|
964
1092
|
.icon-ios7-undo:before { content: "\f1ee" }
|
@@ -1005,6 +1133,7 @@
|
|
1005
1133
|
.icon-man:before { content: "\f202" }
|
1006
1134
|
.icon-map:before { content: "\f203" }
|
1007
1135
|
.icon-medkit:before { content: "\f2a2" }
|
1136
|
+
.icon-merge:before { content: "\f33f" }
|
1008
1137
|
.icon-mic-a:before { content: "\f204" }
|
1009
1138
|
.icon-mic-b:before { content: "\f205" }
|
1010
1139
|
.icon-mic-c:before { content: "\f206" }
|
@@ -1014,12 +1143,15 @@
|
|
1014
1143
|
.icon-model-s:before { content: "\f2c1" }
|
1015
1144
|
.icon-monitor:before { content: "\f20a" }
|
1016
1145
|
.icon-more:before { content: "\f20b" }
|
1146
|
+
.icon-mouse:before { content: "\f340" }
|
1017
1147
|
.icon-music-note:before { content: "\f20c" }
|
1018
1148
|
.icon-navicon:before { content: "\f20e" }
|
1019
1149
|
.icon-navicon-round:before { content: "\f20d" }
|
1020
1150
|
.icon-navigate:before { content: "\f2a3" }
|
1151
|
+
.icon-network:before { content: "\f341" }
|
1021
1152
|
.icon-no-smoking:before { content: "\f2c2" }
|
1022
1153
|
.icon-nuclear:before { content: "\f2a4" }
|
1154
|
+
.icon-outlet:before { content: "\f342" }
|
1023
1155
|
.icon-paper-airplane:before { content: "\f2c3" }
|
1024
1156
|
.icon-paperclip:before { content: "\f20f" }
|
1025
1157
|
.icon-pause:before { content: "\f210" }
|
@@ -1031,22 +1163,31 @@
|
|
1031
1163
|
.icon-pinpoint:before { content: "\f2a7" }
|
1032
1164
|
.icon-pizza:before { content: "\f2a8" }
|
1033
1165
|
.icon-plane:before { content: "\f214" }
|
1166
|
+
.icon-planet:before { content: "\f343" }
|
1034
1167
|
.icon-play:before { content: "\f215" }
|
1035
1168
|
.icon-playstation:before { content: "\f30a" }
|
1036
1169
|
.icon-plus:before { content: "\f218" }
|
1037
1170
|
.icon-plus-circled:before { content: "\f216" }
|
1038
1171
|
.icon-plus-round:before { content: "\f217" }
|
1172
|
+
.icon-podium:before { content: "\f344" }
|
1039
1173
|
.icon-pound:before { content: "\f219" }
|
1040
1174
|
.icon-power:before { content: "\f2a9" }
|
1041
1175
|
.icon-pricetag:before { content: "\f2aa" }
|
1042
1176
|
.icon-pricetags:before { content: "\f2ab" }
|
1043
1177
|
.icon-printer:before { content: "\f21a" }
|
1178
|
+
.icon-pull-request:before { content: "\f345" }
|
1179
|
+
.icon-qr-scanner:before { content: "\f346" }
|
1180
|
+
.icon-quote:before { content: "\f347" }
|
1044
1181
|
.icon-radio-waves:before { content: "\f2ac" }
|
1045
1182
|
.icon-record:before { content: "\f21b" }
|
1046
1183
|
.icon-refresh:before,
|
1047
1184
|
.icon-refreshing:before { content: "\f21c" }
|
1048
1185
|
.icon-reply:before { content: "\f21e" }
|
1049
1186
|
.icon-reply-all:before { content: "\f21d" }
|
1187
|
+
.icon-ribbon-a:before { content: "\f348" }
|
1188
|
+
.icon-ribbon-b:before { content: "\f349" }
|
1189
|
+
.icon-sad:before { content: "\f34a" }
|
1190
|
+
.icon-scissors:before { content: "\f34b" }
|
1050
1191
|
.icon-search:before { content: "\f21f" }
|
1051
1192
|
.icon-settings:before { content: "\f2ad" }
|
1052
1193
|
.icon-share:before { content: "\f220" }
|
@@ -1069,13 +1210,19 @@
|
|
1069
1210
|
.icon-social-dropbox-outline:before { content: "\f22e" }
|
1070
1211
|
.icon-social-facebook:before { content: "\f231" }
|
1071
1212
|
.icon-social-facebook-outline:before { content: "\f230" }
|
1213
|
+
.icon-social-foursquare:before { content: "\f34d" }
|
1214
|
+
.icon-social-foursquare-outline:before { content: "\f34c" }
|
1072
1215
|
.icon-social-freebsd-devil:before { content: "\f2c4" }
|
1073
1216
|
.icon-social-github:before { content: "\f233" }
|
1074
1217
|
.icon-social-github-outline:before { content: "\f232" }
|
1218
|
+
.icon-social-google:before { content: "\f34f" }
|
1219
|
+
.icon-social-google-outline:before { content: "\f34e" }
|
1075
1220
|
.icon-social-googleplus:before { content: "\f235" }
|
1076
1221
|
.icon-social-googleplus-outline:before { content: "\f234" }
|
1077
1222
|
.icon-social-hackernews:before { content: "\f237" }
|
1078
1223
|
.icon-social-hackernews-outline:before { content: "\f236" }
|
1224
|
+
.icon-social-instagram:before { content: "\f351" }
|
1225
|
+
.icon-social-instagram-outline:before { content: "\f350" }
|
1079
1226
|
.icon-social-linkedin:before { content: "\f239" }
|
1080
1227
|
.icon-social-linkedin-outline:before { content: "\f238" }
|
1081
1228
|
.icon-social-pinterest:before { content: "\f2b1" }
|
@@ -1091,6 +1238,8 @@
|
|
1091
1238
|
.icon-social-tux:before { content: "\f2c5" }
|
1092
1239
|
.icon-social-twitter:before { content: "\f243" }
|
1093
1240
|
.icon-social-twitter-outline:before { content: "\f242" }
|
1241
|
+
.icon-social-usd:before { content: "\f353" }
|
1242
|
+
.icon-social-usd-outline:before { content: "\f352" }
|
1094
1243
|
.icon-social-vimeo:before { content: "\f245" }
|
1095
1244
|
.icon-social-vimeo-outline:before { content: "\f244" }
|
1096
1245
|
.icon-social-windows:before { content: "\f247" }
|
@@ -1111,9 +1260,13 @@
|
|
1111
1260
|
.icon-thermometer:before { content: "\f2b6" }
|
1112
1261
|
.icon-thumbsdown:before { content: "\f250" }
|
1113
1262
|
.icon-thumbsup:before { content: "\f251" }
|
1263
|
+
.icon-toggle:before { content: "\f355" }
|
1264
|
+
.icon-toggle-filled:before { content: "\f354" }
|
1114
1265
|
.icon-trash-a:before { content: "\f252" }
|
1115
1266
|
.icon-trash-b:before { content: "\f253" }
|
1267
|
+
.icon-trophie:before { content: "\f356" }
|
1116
1268
|
.icon-umbrella:before { content: "\f2b7" }
|
1269
|
+
.icon-university:before { content: "\f357" }
|
1117
1270
|
.icon-unlocked:before { content: "\f254" }
|
1118
1271
|
.icon-upload:before { content: "\f255" }
|
1119
1272
|
.icon-usb:before { content: "\f2b8" }
|
@@ -1122,6 +1275,7 @@
|
|
1122
1275
|
.icon-volume-low:before { content: "\f258" }
|
1123
1276
|
.icon-volume-medium:before { content: "\f259" }
|
1124
1277
|
.icon-volume-mute:before { content: "\f25a" }
|
1278
|
+
.icon-wand:before { content: "\f358" }
|
1125
1279
|
.icon-waterdrop:before { content: "\f25b" }
|
1126
1280
|
.icon-wifi:before { content: "\f25c" }
|
1127
1281
|
.icon-wineglass:before { content: "\f2b9" }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flashgrid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|