less-rails-fontawesome 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +21 -15
- data/lib/less-rails-fontawesome/version.rb +1 -1
- data/vendor/assets/fonts/FontAwesome.otf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.svg +89 -34
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/bootstrap.less +78 -0
- data/vendor/assets/stylesheets/core.less +132 -0
- data/vendor/assets/stylesheets/extras.less +79 -0
- data/vendor/assets/stylesheets/font-awesome-ie7.less +80 -17
- data/vendor/assets/stylesheets/font-awesome.less +16 -521
- data/vendor/assets/stylesheets/icons.less +330 -0
- data/vendor/assets/stylesheets/mixins.less +34 -0
- data/vendor/assets/stylesheets/path.less +15 -0
- data/vendor/assets/stylesheets/variables.less +9 -0
- metadata +9 -2
@@ -0,0 +1,330 @@
|
|
1
|
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
2
|
+
readers do not read off random characters that represent icons */
|
3
|
+
.icon-glass:before { content: "\f000"; }
|
4
|
+
.icon-music:before { content: "\f001"; }
|
5
|
+
.icon-search:before { content: "\f002"; }
|
6
|
+
.icon-envelope:before { content: "\f003"; }
|
7
|
+
.icon-heart:before { content: "\f004"; }
|
8
|
+
.icon-star:before { content: "\f005"; }
|
9
|
+
.icon-star-empty:before { content: "\f006"; }
|
10
|
+
.icon-user:before { content: "\f007"; }
|
11
|
+
.icon-film:before { content: "\f008"; }
|
12
|
+
.icon-th-large:before { content: "\f009"; }
|
13
|
+
.icon-th:before { content: "\f00a"; }
|
14
|
+
.icon-th-list:before { content: "\f00b"; }
|
15
|
+
.icon-ok:before { content: "\f00c"; }
|
16
|
+
.icon-remove:before { content: "\f00d"; }
|
17
|
+
.icon-zoom-in:before { content: "\f00e"; }
|
18
|
+
|
19
|
+
.icon-zoom-out:before { content: "\f010"; }
|
20
|
+
.icon-off:before { content: "\f011"; }
|
21
|
+
.icon-signal:before { content: "\f012"; }
|
22
|
+
.icon-cog:before { content: "\f013"; }
|
23
|
+
.icon-trash:before { content: "\f014"; }
|
24
|
+
.icon-home:before { content: "\f015"; }
|
25
|
+
.icon-file:before { content: "\f016"; }
|
26
|
+
.icon-time:before { content: "\f017"; }
|
27
|
+
.icon-road:before { content: "\f018"; }
|
28
|
+
.icon-download-alt:before { content: "\f019"; }
|
29
|
+
.icon-download:before { content: "\f01a"; }
|
30
|
+
.icon-upload:before { content: "\f01b"; }
|
31
|
+
.icon-inbox:before { content: "\f01c"; }
|
32
|
+
.icon-play-circle:before { content: "\f01d"; }
|
33
|
+
.icon-repeat:before,
|
34
|
+
.icon-rotate-right:before { content: "\f01e"; }
|
35
|
+
|
36
|
+
/* F020 doesn't work in Safari. all shifted one down */
|
37
|
+
.icon-refresh:before { content: "\f021"; }
|
38
|
+
.icon-list-alt:before { content: "\f022"; }
|
39
|
+
.icon-lock:before { content: "\f023"; }
|
40
|
+
.icon-flag:before { content: "\f024"; }
|
41
|
+
.icon-headphones:before { content: "\f025"; }
|
42
|
+
.icon-volume-off:before { content: "\f026"; }
|
43
|
+
.icon-volume-down:before { content: "\f027"; }
|
44
|
+
.icon-volume-up:before { content: "\f028"; }
|
45
|
+
.icon-qrcode:before { content: "\f029"; }
|
46
|
+
.icon-barcode:before { content: "\f02a"; }
|
47
|
+
.icon-tag:before { content: "\f02b"; }
|
48
|
+
.icon-tags:before { content: "\f02c"; }
|
49
|
+
.icon-book:before { content: "\f02d"; }
|
50
|
+
.icon-bookmark:before { content: "\f02e"; }
|
51
|
+
.icon-print:before { content: "\f02f"; }
|
52
|
+
|
53
|
+
.icon-camera:before { content: "\f030"; }
|
54
|
+
.icon-font:before { content: "\f031"; }
|
55
|
+
.icon-bold:before { content: "\f032"; }
|
56
|
+
.icon-italic:before { content: "\f033"; }
|
57
|
+
.icon-text-height:before { content: "\f034"; }
|
58
|
+
.icon-text-width:before { content: "\f035"; }
|
59
|
+
.icon-align-left:before { content: "\f036"; }
|
60
|
+
.icon-align-center:before { content: "\f037"; }
|
61
|
+
.icon-align-right:before { content: "\f038"; }
|
62
|
+
.icon-align-justify:before { content: "\f039"; }
|
63
|
+
.icon-list:before { content: "\f03a"; }
|
64
|
+
.icon-indent-left:before { content: "\f03b"; }
|
65
|
+
.icon-indent-right:before { content: "\f03c"; }
|
66
|
+
.icon-facetime-video:before { content: "\f03d"; }
|
67
|
+
.icon-picture:before { content: "\f03e"; }
|
68
|
+
|
69
|
+
.icon-pencil:before { content: "\f040"; }
|
70
|
+
.icon-map-marker:before { content: "\f041"; }
|
71
|
+
.icon-adjust:before { content: "\f042"; }
|
72
|
+
.icon-tint:before { content: "\f043"; }
|
73
|
+
.icon-edit:before { content: "\f044"; }
|
74
|
+
.icon-share:before { content: "\f045"; }
|
75
|
+
.icon-check:before { content: "\f046"; }
|
76
|
+
.icon-move:before { content: "\f047"; }
|
77
|
+
.icon-step-backward:before { content: "\f048"; }
|
78
|
+
.icon-fast-backward:before { content: "\f049"; }
|
79
|
+
.icon-backward:before { content: "\f04a"; }
|
80
|
+
.icon-play:before { content: "\f04b"; }
|
81
|
+
.icon-pause:before { content: "\f04c"; }
|
82
|
+
.icon-stop:before { content: "\f04d"; }
|
83
|
+
.icon-forward:before { content: "\f04e"; }
|
84
|
+
|
85
|
+
.icon-fast-forward:before { content: "\f050"; }
|
86
|
+
.icon-step-forward:before { content: "\f051"; }
|
87
|
+
.icon-eject:before { content: "\f052"; }
|
88
|
+
.icon-chevron-left:before { content: "\f053"; }
|
89
|
+
.icon-chevron-right:before { content: "\f054"; }
|
90
|
+
.icon-plus-sign:before { content: "\f055"; }
|
91
|
+
.icon-minus-sign:before { content: "\f056"; }
|
92
|
+
.icon-remove-sign:before { content: "\f057"; }
|
93
|
+
.icon-ok-sign:before { content: "\f058"; }
|
94
|
+
.icon-question-sign:before { content: "\f059"; }
|
95
|
+
.icon-info-sign:before { content: "\f05a"; }
|
96
|
+
.icon-screenshot:before { content: "\f05b"; }
|
97
|
+
.icon-remove-circle:before { content: "\f05c"; }
|
98
|
+
.icon-ok-circle:before { content: "\f05d"; }
|
99
|
+
.icon-ban-circle:before { content: "\f05e"; }
|
100
|
+
|
101
|
+
.icon-arrow-left:before { content: "\f060"; }
|
102
|
+
.icon-arrow-right:before { content: "\f061"; }
|
103
|
+
.icon-arrow-up:before { content: "\f062"; }
|
104
|
+
.icon-arrow-down:before { content: "\f063"; }
|
105
|
+
.icon-share-alt:before,
|
106
|
+
.icon-mail-forward:before { content: "\f064"; }
|
107
|
+
.icon-resize-full:before { content: "\f065"; }
|
108
|
+
.icon-resize-small:before { content: "\f066"; }
|
109
|
+
.icon-plus:before { content: "\f067"; }
|
110
|
+
.icon-minus:before { content: "\f068"; }
|
111
|
+
.icon-asterisk:before { content: "\f069"; }
|
112
|
+
.icon-exclamation-sign:before { content: "\f06a"; }
|
113
|
+
.icon-gift:before { content: "\f06b"; }
|
114
|
+
.icon-leaf:before { content: "\f06c"; }
|
115
|
+
.icon-fire:before { content: "\f06d"; }
|
116
|
+
.icon-eye-open:before { content: "\f06e"; }
|
117
|
+
|
118
|
+
.icon-eye-close:before { content: "\f070"; }
|
119
|
+
.icon-warning-sign:before { content: "\f071"; }
|
120
|
+
.icon-plane:before { content: "\f072"; }
|
121
|
+
.icon-calendar:before { content: "\f073"; }
|
122
|
+
.icon-random:before { content: "\f074"; }
|
123
|
+
.icon-comment:before { content: "\f075"; }
|
124
|
+
.icon-magnet:before { content: "\f076"; }
|
125
|
+
.icon-chevron-up:before { content: "\f077"; }
|
126
|
+
.icon-chevron-down:before { content: "\f078"; }
|
127
|
+
.icon-retweet:before { content: "\f079"; }
|
128
|
+
.icon-shopping-cart:before { content: "\f07a"; }
|
129
|
+
.icon-folder-close:before { content: "\f07b"; }
|
130
|
+
.icon-folder-open:before { content: "\f07c"; }
|
131
|
+
.icon-resize-vertical:before { content: "\f07d"; }
|
132
|
+
.icon-resize-horizontal:before { content: "\f07e"; }
|
133
|
+
|
134
|
+
.icon-bar-chart:before { content: "\f080"; }
|
135
|
+
.icon-twitter-sign:before { content: "\f081"; }
|
136
|
+
.icon-facebook-sign:before { content: "\f082"; }
|
137
|
+
.icon-camera-retro:before { content: "\f083"; }
|
138
|
+
.icon-key:before { content: "\f084"; }
|
139
|
+
.icon-cogs:before { content: "\f085"; }
|
140
|
+
.icon-comments:before { content: "\f086"; }
|
141
|
+
.icon-thumbs-up:before { content: "\f087"; }
|
142
|
+
.icon-thumbs-down:before { content: "\f088"; }
|
143
|
+
.icon-star-half:before { content: "\f089"; }
|
144
|
+
.icon-heart-empty:before { content: "\f08a"; }
|
145
|
+
.icon-signout:before { content: "\f08b"; }
|
146
|
+
.icon-linkedin-sign:before { content: "\f08c"; }
|
147
|
+
.icon-pushpin:before { content: "\f08d"; }
|
148
|
+
.icon-external-link:before { content: "\f08e"; }
|
149
|
+
|
150
|
+
.icon-signin:before { content: "\f090"; }
|
151
|
+
.icon-trophy:before { content: "\f091"; }
|
152
|
+
.icon-github-sign:before { content: "\f092"; }
|
153
|
+
.icon-upload-alt:before { content: "\f093"; }
|
154
|
+
.icon-lemon:before { content: "\f094"; }
|
155
|
+
.icon-phone:before { content: "\f095"; }
|
156
|
+
.icon-check-empty:before { content: "\f096"; }
|
157
|
+
.icon-bookmark-empty:before { content: "\f097"; }
|
158
|
+
.icon-phone-sign:before { content: "\f098"; }
|
159
|
+
.icon-twitter:before { content: "\f099"; }
|
160
|
+
.icon-facebook:before { content: "\f09a"; }
|
161
|
+
.icon-github:before { content: "\f09b"; }
|
162
|
+
.icon-unlock:before { content: "\f09c"; }
|
163
|
+
.icon-credit-card:before { content: "\f09d"; }
|
164
|
+
.icon-rss:before { content: "\f09e"; }
|
165
|
+
|
166
|
+
.icon-hdd:before { content: "\f0a0"; }
|
167
|
+
.icon-bullhorn:before { content: "\f0a1"; }
|
168
|
+
.icon-bell:before { content: "\f0a2"; }
|
169
|
+
.icon-certificate:before { content: "\f0a3"; }
|
170
|
+
.icon-hand-right:before { content: "\f0a4"; }
|
171
|
+
.icon-hand-left:before { content: "\f0a5"; }
|
172
|
+
.icon-hand-up:before { content: "\f0a6"; }
|
173
|
+
.icon-hand-down:before { content: "\f0a7"; }
|
174
|
+
.icon-circle-arrow-left:before { content: "\f0a8"; }
|
175
|
+
.icon-circle-arrow-right:before { content: "\f0a9"; }
|
176
|
+
.icon-circle-arrow-up:before { content: "\f0aa"; }
|
177
|
+
.icon-circle-arrow-down:before { content: "\f0ab"; }
|
178
|
+
.icon-globe:before { content: "\f0ac"; }
|
179
|
+
.icon-wrench:before { content: "\f0ad"; }
|
180
|
+
.icon-tasks:before { content: "\f0ae"; }
|
181
|
+
|
182
|
+
.icon-filter:before { content: "\f0b0"; }
|
183
|
+
.icon-briefcase:before { content: "\f0b1"; }
|
184
|
+
.icon-fullscreen:before { content: "\f0b2"; }
|
185
|
+
|
186
|
+
.icon-group:before { content: "\f0c0"; }
|
187
|
+
.icon-link:before { content: "\f0c1"; }
|
188
|
+
.icon-cloud:before { content: "\f0c2"; }
|
189
|
+
.icon-beaker:before { content: "\f0c3"; }
|
190
|
+
.icon-cut:before { content: "\f0c4"; }
|
191
|
+
.icon-copy:before { content: "\f0c5"; }
|
192
|
+
.icon-paper-clip:before { content: "\f0c6"; }
|
193
|
+
.icon-save:before { content: "\f0c7"; }
|
194
|
+
.icon-sign-blank:before { content: "\f0c8"; }
|
195
|
+
.icon-reorder:before { content: "\f0c9"; }
|
196
|
+
.icon-list-ul:before { content: "\f0ca"; }
|
197
|
+
.icon-list-ol:before { content: "\f0cb"; }
|
198
|
+
.icon-strikethrough:before { content: "\f0cc"; }
|
199
|
+
.icon-underline:before { content: "\f0cd"; }
|
200
|
+
.icon-table:before { content: "\f0ce"; }
|
201
|
+
|
202
|
+
.icon-magic:before { content: "\f0d0"; }
|
203
|
+
.icon-truck:before { content: "\f0d1"; }
|
204
|
+
.icon-pinterest:before { content: "\f0d2"; }
|
205
|
+
.icon-pinterest-sign:before { content: "\f0d3"; }
|
206
|
+
.icon-google-plus-sign:before { content: "\f0d4"; }
|
207
|
+
.icon-google-plus:before { content: "\f0d5"; }
|
208
|
+
.icon-money:before { content: "\f0d6"; }
|
209
|
+
.icon-caret-down:before { content: "\f0d7"; }
|
210
|
+
.icon-caret-up:before { content: "\f0d8"; }
|
211
|
+
.icon-caret-left:before { content: "\f0d9"; }
|
212
|
+
.icon-caret-right:before { content: "\f0da"; }
|
213
|
+
.icon-columns:before { content: "\f0db"; }
|
214
|
+
.icon-sort:before { content: "\f0dc"; }
|
215
|
+
.icon-sort-down:before { content: "\f0dd"; }
|
216
|
+
.icon-sort-up:before { content: "\f0de"; }
|
217
|
+
|
218
|
+
.icon-envelope-alt:before { content: "\f0e0"; }
|
219
|
+
.icon-linkedin:before { content: "\f0e1"; }
|
220
|
+
.icon-undo:before,
|
221
|
+
.icon-rotate-left:before { content: "\f0e2"; }
|
222
|
+
.icon-legal:before { content: "\f0e3"; }
|
223
|
+
.icon-dashboard:before { content: "\f0e4"; }
|
224
|
+
.icon-comment-alt:before { content: "\f0e5"; }
|
225
|
+
.icon-comments-alt:before { content: "\f0e6"; }
|
226
|
+
.icon-bolt:before { content: "\f0e7"; }
|
227
|
+
.icon-sitemap:before { content: "\f0e8"; }
|
228
|
+
.icon-umbrella:before { content: "\f0e9"; }
|
229
|
+
.icon-paste:before { content: "\f0ea"; }
|
230
|
+
.icon-lightbulb:before { content: "\f0eb"; }
|
231
|
+
.icon-exchange:before { content: "\f0ec"; }
|
232
|
+
.icon-cloud-download:before { content: "\f0ed"; }
|
233
|
+
.icon-cloud-upload:before { content: "\f0ee"; }
|
234
|
+
|
235
|
+
.icon-user-md:before { content: "\f0f0"; }
|
236
|
+
.icon-stethoscope:before { content: "\f0f1"; }
|
237
|
+
.icon-suitcase:before { content: "\f0f2"; }
|
238
|
+
.icon-bell-alt:before { content: "\f0f3"; }
|
239
|
+
.icon-coffee:before { content: "\f0f4"; }
|
240
|
+
.icon-food:before { content: "\f0f5"; }
|
241
|
+
.icon-file-alt:before { content: "\f0f6"; }
|
242
|
+
.icon-building:before { content: "\f0f7"; }
|
243
|
+
.icon-hospital:before { content: "\f0f8"; }
|
244
|
+
.icon-ambulance:before { content: "\f0f9"; }
|
245
|
+
.icon-medkit:before { content: "\f0fa"; }
|
246
|
+
.icon-fighter-jet:before { content: "\f0fb"; }
|
247
|
+
.icon-beer:before { content: "\f0fc"; }
|
248
|
+
.icon-h-sign:before { content: "\f0fd"; }
|
249
|
+
.icon-plus-sign-alt:before { content: "\f0fe"; }
|
250
|
+
|
251
|
+
.icon-double-angle-left:before { content: "\f100"; }
|
252
|
+
.icon-double-angle-right:before { content: "\f101"; }
|
253
|
+
.icon-double-angle-up:before { content: "\f102"; }
|
254
|
+
.icon-double-angle-down:before { content: "\f103"; }
|
255
|
+
.icon-angle-left:before { content: "\f104"; }
|
256
|
+
.icon-angle-right:before { content: "\f105"; }
|
257
|
+
.icon-angle-up:before { content: "\f106"; }
|
258
|
+
.icon-angle-down:before { content: "\f107"; }
|
259
|
+
.icon-desktop:before { content: "\f108"; }
|
260
|
+
.icon-laptop:before { content: "\f109"; }
|
261
|
+
.icon-tablet:before { content: "\f10a"; }
|
262
|
+
.icon-mobile-phone:before { content: "\f10b"; }
|
263
|
+
.icon-circle-blank:before { content: "\f10c"; }
|
264
|
+
.icon-quote-left:before { content: "\f10d"; }
|
265
|
+
.icon-quote-right:before { content: "\f10e"; }
|
266
|
+
|
267
|
+
.icon-spinner:before { content: "\f110"; }
|
268
|
+
.icon-circle:before { content: "\f111"; }
|
269
|
+
.icon-reply:before,
|
270
|
+
.icon-mail-reply:before { content: "\f112"; }
|
271
|
+
.icon-folder-close-alt:before { content: "\f114"; }
|
272
|
+
.icon-folder-open-alt:before { content: "\f115"; }
|
273
|
+
.icon-expand-alt:before { content: "\f116"; }
|
274
|
+
.icon-collapse-alt:before { content: "\f117"; }
|
275
|
+
.icon-smile:before { content: "\f118"; }
|
276
|
+
.icon-frown:before { content: "\f119"; }
|
277
|
+
.icon-meh:before { content: "\f11a"; }
|
278
|
+
.icon-gamepad:before { content: "\f11b"; }
|
279
|
+
.icon-keyboard:before { content: "\f11c"; }
|
280
|
+
.icon-flag-alt:before { content: "\f11d"; }
|
281
|
+
.icon-flag-checkered:before { content: "\f11e"; }
|
282
|
+
|
283
|
+
.icon-terminal:before { content: "\f120"; }
|
284
|
+
.icon-code:before { content: "\f121"; }
|
285
|
+
.icon-reply-all:before, { content: "\f122"; }
|
286
|
+
.icon-mail-reply-all:before { content: "\f122"; }
|
287
|
+
.icon-star-half-full:before,
|
288
|
+
.icon-star-half-empty:before { content: "\f123"; }
|
289
|
+
.icon-location-arrow:before { content: "\f124"; }
|
290
|
+
.icon-crop:before { content: "\f125"; }
|
291
|
+
.icon-code-fork:before { content: "\f126"; }
|
292
|
+
.icon-unlink:before { content: "\f127"; }
|
293
|
+
.icon-question:before { content: "\f128"; }
|
294
|
+
.icon-info:before { content: "\f129"; }
|
295
|
+
.icon-exclamation:before { content: "\f12a"; }
|
296
|
+
.icon-superscript:before { content: "\f12b"; }
|
297
|
+
.icon-subscript:before { content: "\f12c"; }
|
298
|
+
.icon-eraser:before { content: "\f12d"; }
|
299
|
+
.icon-puzzle-piece:before { content: "\f12e"; }
|
300
|
+
|
301
|
+
.icon-microphone:before { content: "\f130"; }
|
302
|
+
.icon-microphone-off:before { content: "\f131"; }
|
303
|
+
.icon-shield:before { content: "\f132"; }
|
304
|
+
.icon-calendar-empty:before { content: "\f133"; }
|
305
|
+
.icon-fire-extinguisher:before { content: "\f134"; }
|
306
|
+
.icon-rocket:before { content: "\f135"; }
|
307
|
+
.icon-maxcdn:before { content: "\f136"; }
|
308
|
+
.icon-chevron-sign-left:before { content: "\f137"; }
|
309
|
+
.icon-chevron-sign-right:before { content: "\f138"; }
|
310
|
+
.icon-chevron-sign-up:before { content: "\f139"; }
|
311
|
+
.icon-chevron-sign-down:before { content: "\f13a"; }
|
312
|
+
.icon-html5:before { content: "\f13b"; }
|
313
|
+
.icon-css3:before { content: "\f13c"; }
|
314
|
+
.icon-anchor:before { content: "\f13d"; }
|
315
|
+
.icon-unlock-alt:before { content: "\f13e"; }
|
316
|
+
|
317
|
+
.icon-bullseye:before { content: "\f140"; }
|
318
|
+
.icon-ellipsis-horizontal:before { content: "\f141"; }
|
319
|
+
.icon-ellipsis-vertical:before { content: "\f142"; }
|
320
|
+
.icon-rss-sign:before { content: "\f143"; }
|
321
|
+
.icon-play-sign:before { content: "\f144"; }
|
322
|
+
.icon-ticket:before { content: "\f145"; }
|
323
|
+
.icon-minus-sign-alt:before { content: "\f146"; }
|
324
|
+
.icon-check-minus:before { content: "\f147"; }
|
325
|
+
.icon-level-up:before { content: "\f148"; }
|
326
|
+
.icon-level-down:before { content: "\f149"; }
|
327
|
+
.icon-check-sign:before { content: "\f14a"; }
|
328
|
+
.icon-edit-sign:before { content: "\f14b"; }
|
329
|
+
.icon-external-link-sign:before { content: "\f14c"; }
|
330
|
+
.icon-share-sign:before { content: "\f14d"; }
|
@@ -0,0 +1,34 @@
|
|
1
|
+
// Mixins
|
2
|
+
// --------------------------
|
3
|
+
|
4
|
+
.border-radius(@radius) {
|
5
|
+
-webkit-border-radius: @radius;
|
6
|
+
-moz-border-radius: @radius;
|
7
|
+
border-radius: @radius;
|
8
|
+
}
|
9
|
+
|
10
|
+
.icon-stack(@width: 2em, @height: 2em, @top-font-size: 1em, @base-font-size: 2em) {
|
11
|
+
.icon-stack {
|
12
|
+
position: relative;
|
13
|
+
display: inline-block;
|
14
|
+
width: @width;
|
15
|
+
height: @height;
|
16
|
+
line-height: @width;
|
17
|
+
vertical-align: -35%;
|
18
|
+
[class^="icon-"],
|
19
|
+
[class*=" icon-"] {
|
20
|
+
display: block;
|
21
|
+
text-align: center;
|
22
|
+
position: absolute;
|
23
|
+
width: 100%;
|
24
|
+
height: 100%;
|
25
|
+
font-size: @top-font-size;
|
26
|
+
line-height: inherit;
|
27
|
+
*line-height: @height;
|
28
|
+
}
|
29
|
+
.icon-stack-base {
|
30
|
+
font-size: @base-font-size;
|
31
|
+
*line-height: @height / @base-font-size;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/* FONT PATH
|
2
|
+
* -------------------------- */
|
3
|
+
|
4
|
+
@font-face {
|
5
|
+
font-family: 'FontAwesome';
|
6
|
+
src: url('@{FontAwesomePath}/fontawesome-webfont.eot?v=@{FontAwesomeVersion}');
|
7
|
+
src: url('@{FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=@{FontAwesomeVersion}') format('embedded-opentype'),
|
8
|
+
url('@{FontAwesomePath}/fontawesome-webfont.woff?v=@{FontAwesomeVersion}') format('woff'),
|
9
|
+
url('@{FontAwesomePath}/fontawesome-webfont.ttf?v=@{FontAwesomeVersion}') format('truetype'),
|
10
|
+
url('@{FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=@{FontAwesomeVersion}') format('svg');
|
11
|
+
// src: url('@{FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
12
|
+
|
13
|
+
font-weight: normal;
|
14
|
+
font-style: normal;
|
15
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: less-rails-fontawesome
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wlodek Bzyl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -60,8 +60,15 @@ files:
|
|
60
60
|
- vendor/assets/fonts/fontawesome-webfont.svg
|
61
61
|
- vendor/assets/fonts/fontawesome-webfont.ttf
|
62
62
|
- vendor/assets/fonts/fontawesome-webfont.woff
|
63
|
+
- vendor/assets/stylesheets/bootstrap.less
|
64
|
+
- vendor/assets/stylesheets/core.less
|
65
|
+
- vendor/assets/stylesheets/extras.less
|
63
66
|
- vendor/assets/stylesheets/font-awesome-ie7.less
|
64
67
|
- vendor/assets/stylesheets/font-awesome.less
|
68
|
+
- vendor/assets/stylesheets/icons.less
|
69
|
+
- vendor/assets/stylesheets/mixins.less
|
70
|
+
- vendor/assets/stylesheets/path.less
|
71
|
+
- vendor/assets/stylesheets/variables.less
|
65
72
|
homepage: https://github.com/wbzyl/less-rails-fontawesome
|
66
73
|
licenses: []
|
67
74
|
metadata: {}
|