font_awesome-sass-rails 2.1.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Changelog.txt ADDED
@@ -0,0 +1,9 @@
1
+ ## 2.2.1
2
+
3
+ * Added `awesome_btn` helper, for nesting any tags such as multiple `awesome_icon` tags.
4
+
5
+ ## 2.2.0
6
+
7
+ * Added ability to enhace class and add any html attributes on generated icon tag
8
+ * Added `awesome_button` helper, that wraps the `awesome_icon` helper with an anchor tag. For use with Twitter Bootstrap (uses `btn` classes)
9
+
data/README.md CHANGED
@@ -11,20 +11,22 @@ The full suite of pictographic icons, examples, and documentation can be found a
11
11
 
12
12
  Then `bundle` it!
13
13
 
14
- ## Configuration
14
+ ## CSS Configuration
15
+
16
+ In your CSS manifest file, fx `application.css`
15
17
 
16
18
  ```css
17
19
  *= require font-awesome
18
20
  ```
19
21
 
20
- On IE7
22
+ For IE7
21
23
 
22
24
  ```css
23
25
  *= require font-awesome-ie
24
26
  ```
25
27
 
26
28
  The assets contains the `font-awesome` stylesheet in: LESS, SASS, SCSS and CSS.
27
- The fonts are available in `assets/fonts`. To load the font in a particular format, specify as one of the following:
29
+ The fonts are available in `assets/fonts`. To load the font in a particular format, specify one of the following:
28
30
 
29
31
  ```css
30
32
  *= require font-awesome-sass
@@ -32,7 +34,6 @@ The fonts are available in `assets/fonts`. To load the font in a particular form
32
34
  *= require font-awesome-scss
33
35
  ```
34
36
 
35
-
36
37
  ## View helpers
37
38
 
38
39
  ```ruby
@@ -42,10 +43,80 @@ awesome_icon name, *args, &block
42
43
  Usage examples:
43
44
 
44
45
  ```ruby
45
- awesome_icon(:ok).should == "<i class=\"icon-ok\"></i>"
46
- awesome_icon(:ok, size: :large).should == "<i class=\"icon-ok icon-large\"></i>"
47
- awesome_icon(:ok, 'Okay :)').should == "<i class=\"icon-ok\"></i>Okay :)"
48
- awesome_icon(:ok) { 'Okay :)'}.should == "<i class=\"icon-ok\"></i>Okay :)"
46
+ awesome_icon(:ok)
47
+
48
+ # => <i class="icon-ok"></i>
49
+
50
+ awesome_icon(:ok, size: :large)
51
+
52
+ # => <i class="icon-ok icon-large"></i>
53
+
54
+ awesome_icon(:ok, 'Okay :)')
55
+
56
+ # => <i class="icon-ok"></i>Okay :)
57
+
58
+ awesome_icon(:ok) { 'Okay :)'}
59
+
60
+ # => "<i class="icon-ok"></i>Okay :)"
61
+
62
+ awesome_icon(:ok, style: 'font-size: 10px', class: 'topleft')
63
+
64
+ # => <i class="icon-ok topleft" style="font-size: 10px"></i>
65
+ ```
66
+
67
+ Awesome button!
68
+
69
+ ```ruby
70
+ awesome_button(:ok, size: 'large', type: 'primary', href: 'google.com') {'Okay :)'}
71
+
72
+ # => <a class="btn btn-large btn-primary" href="google.com"><i class="icon-ok icon-large"></i>Okay :)</a>
73
+ ```
74
+
75
+ Awesome btn!
76
+
77
+ ```haml
78
+ = awesome_btn :ok, size: 'large', type: 'primary', href: 'google.com'
79
+ = awesome_icon(:ok)
80
+ = awesome_icon(:plus, class: 'btn-overlay')
81
+ = 'Okay+'
82
+ ```
83
+
84
+ # => <a class="btn btn-large btn-primary" href="google.com"><i class="icon-ok"></i><i class="icon-plus btn-overlay"></i>Okay+</a>
85
+ ```
86
+
87
+ ## Composite icons using overlay effects
88
+
89
+ Use something like the following CSS:
90
+
91
+ ```css
92
+ .decorator.top {
93
+ font-size: 10px;
94
+ position: relative;
95
+ left: -0.6em;
96
+ top: -0.6em;
97
+ color: orange;
98
+ }
99
+ ```
100
+
101
+ Then have the primary icon, followed by the icon to use for the overlay.
102
+
103
+ ```ruby
104
+ = awesome_icon(:group)
105
+ = awesome_icon(:plus, class:'decorator tl')
106
+ ```
107
+
108
+ The second icon (plus) will be pushed half a character back (left) and up, to create a nice overlay effect - an "Add group" icon.
109
+
110
+ ## Troubleshooting
111
+
112
+ If you get an error, saying that the asset (font-awesome) couldn't be found, try moving the gem statement outside any group.
113
+
114
+ See http://stackoverflow.com/questions/9047478/rails-app-with-twitter-bootstrap-works-in-development-but-not-in-production and http://edgeguides.rubyonrails.org/asset_pipeline.html
115
+
116
+ For hyphenated icon names, surround the icon name with quotes:
117
+
118
+ ```ruby
119
+ awesome_icon(:'bookmark-empty').should == "<i class=\"icon-bookmark-empty\"></i>"
49
120
  ```
50
121
 
51
122
  ## Version
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.0
1
+ 2.2.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "font_awesome-sass-rails"
8
- s.version = "2.1.0"
8
+ s.version = "2.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kristian Mandrup"]
12
- s.date = "2012-10-11"
12
+ s.date = "2012-11-26"
13
13
  s.description = "Use Font Awesome in your Rails app :)"
14
14
  s.email = "kmandrup@gmail.com"
15
15
  s.extra_rdoc_files = [
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.files = [
20
20
  ".document",
21
21
  ".rspec",
22
+ "Changelog.txt",
22
23
  "FontAwesomeMore-Vectors.pdf",
23
24
  "Gemfile",
24
25
  "Gemfile.lock",
@@ -42,8 +43,7 @@ Gem::Specification.new do |s|
42
43
  "vendor/assets/stylesheets/font-awesome-less.less.erb",
43
44
  "vendor/assets/stylesheets/font-awesome-sass.sass",
44
45
  "vendor/assets/stylesheets/font-awesome-scss.scss",
45
- "vendor/assets/stylesheets/font-awesome.css.erb",
46
- "vendor/assets/stylesheets/font-awesome.sass"
46
+ "vendor/assets/stylesheets/font-awesome.css.erb"
47
47
  ]
48
48
  s.homepage = "http://github.com/kristianmandrup/font_awesome-sass-rails"
49
49
  s.licenses = ["MIT"]
@@ -2,15 +2,48 @@ module FontAwesomeSass
2
2
  module ViewHelper
3
3
  def awesome_icon name, *args, &block
4
4
  options = args.extract_options!
5
- size = options[:size] if options
5
+ size = options.delete(:size) if options
6
6
  content = args.first unless args.blank?
7
7
  content ||= capture(&block) if block_given?
8
8
  content ||= ''
9
9
 
10
10
  clazz = "icon-#{name}"
11
11
  clazz << " icon-#{size}" if size.to_s == 'large'
12
+ clazz << " " << options.delete(:class) if options[:class]
12
13
 
13
- content_tag(:i, nil, :class => clazz) + content.html_safe
14
+ content_tag(:i, nil, options.merge(:class => clazz)) + content.html_safe
15
+ end
16
+
17
+ def awesome_btn *args, &block
18
+ options = args.extract_options!
19
+ size = options[:size] if options[:size]
20
+ type = options.delete(:type) if options[:type]
21
+
22
+ clazz = "btn "
23
+ clazz << " btn-#{size}" if size
24
+ clazz << " btn-#{type}" if type && %w{primary}.include?(type.to_s)
25
+
26
+ href = options.delete(:href) || '#'
27
+
28
+ content_tag :a, {}.merge(class: clazz, href: href).merge(options[:btn] || {}) do
29
+ capture(&block)
30
+ end
31
+ end
32
+
33
+ def awesome_button name, *args, &block
34
+ options = args.extract_options!
35
+ size = options[:size] if options[:size]
36
+ type = options.delete(:type) if options[:type]
37
+
38
+ clazz = "btn "
39
+ clazz << " btn-#{size}" if size
40
+ clazz << " btn-#{type}" if type && %w{primary}.include?(type.to_s)
41
+
42
+ href = options.delete(:href) || '#'
43
+
44
+ content_tag :a, {}.merge(class: clazz, href: href).merge(options[:btn] || {}) do
45
+ awesome_icon name, options, &block
46
+ end
14
47
  end
15
48
  end
16
49
  end
@@ -3,29 +3,68 @@ require 'spec_helper'
3
3
  describe FontAwesomeSass::ViewHelper do
4
4
  include ControllerTestHelpers,
5
5
  FontAwesomeSass::ViewHelper
6
+
7
+ describe 'awesome_icon' do
8
+ describe ".awesome_icon :ok, 'Okay :)'" do
9
+ specify do
10
+ awesome_icon(:ok).should == "<i class=\"icon-ok\"></i>"
11
+ end
12
+ end
6
13
 
7
- describe ".awesome_icon :ok, 'Okay :)'" do
8
- specify do
9
- awesome_icon(:ok).should == "<i class=\"icon-ok\"></i>"
14
+ describe ".awesome_icon :ok, 'Okay :)'" do
15
+ specify do
16
+ awesome_icon(:ok, size: :large).should == "<i class=\"icon-ok icon-large\"></i>"
17
+ end
10
18
  end
11
- end
12
19
 
13
- describe ".awesome_icon :ok, 'Okay :)'" do
14
- specify do
15
- awesome_icon(:ok, size: :large).should == "<i class=\"icon-ok icon-large\"></i>"
20
+ describe ".awesome_icon :ok, style: 'font-size: 10px'" do
21
+ specify do
22
+ awesome_icon(:ok, style: 'font-size: 10px').should == "<i class=\"icon-ok\" style=\"font-size: 10px\"></i>"
23
+ end
16
24
  end
17
- end
18
25
 
19
- # <i class="icon-ok"></i>Okay :)
20
- describe ".awesome_icon :ok, 'Okay :)'" do
21
- specify do
22
- awesome_icon(:ok, 'Okay :)').should == "<i class=\"icon-ok\"></i>Okay :)"
26
+ describe ".awesome_icon :ok, class: 'topleft'" do
27
+ specify do
28
+ awesome_icon(:ok, class: 'topleft').should == "<i class=\"icon-ok topleft\"></i>"
29
+ end
30
+ end
31
+
32
+ describe ".awesome_icon :ok, style: 'font-size: 10px', class: 'topleft'" do
33
+ specify do
34
+ awesome_icon(:ok, style: 'font-size: 10px', class: 'topleft').should == "<i class=\"icon-ok topleft\" style=\"font-size: 10px\"></i>"
35
+ end
36
+ end
37
+
38
+
39
+ # <i class="icon-ok"></i>Okay :)
40
+ describe ".awesome_icon :ok, 'Okay :)'" do
41
+ specify do
42
+ awesome_icon(:ok, 'Okay :)').should == "<i class=\"icon-ok\"></i>Okay :)"
43
+ end
44
+ end
45
+
46
+ describe ".awesome_icon(:ok) {'Okay :)'}" do
47
+ specify do
48
+ awesome_icon(:ok) { 'Okay :)'}.should == "<i class=\"icon-ok\"></i>Okay :)"
49
+ end
23
50
  end
24
51
  end
25
52
 
26
- describe ".awesome_icon(:ok) {'Okay :)'}" do
53
+ describe 'awesome_btn' do
27
54
  specify do
28
- awesome_icon(:ok) { 'Okay :)'}.should == "<i class=\"icon-ok\"></i>Okay :)"
55
+ res = awesome_btn(:ok, size: 'large', type: 'primary', href: 'google.com') do
56
+ awesome_icon(:ok) + awesome_icon(:plus)
57
+ end
58
+ res.should == "<a class=\"btn btn-large btn-primary\" href=\"google.com\"><i class=\"icon-ok\"></i><i class=\"icon-plus\"></i></a>"
29
59
  end
30
60
  end
61
+
62
+ describe 'awesome_button' do
63
+ describe ".awesome_button(:ok, size: 'large', type: 'primary', href: 'google.com') {'Okay :)'}" do
64
+ specify do
65
+ res = awesome_button(:ok, size: 'large', type: 'primary', href: 'google.com') {'Okay :)'}
66
+ res.should == "<a class=\"btn btn-large btn-primary\" href=\"google.com\"><i class=\"icon-ok icon-large\"></i>Okay :)</a>"
67
+ end
68
+ end
69
+ end
31
70
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: font_awesome-sass-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-11 00:00:00.000000000 Z
12
+ date: 2012-11-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -149,6 +149,7 @@ extra_rdoc_files:
149
149
  files:
150
150
  - .document
151
151
  - .rspec
152
+ - Changelog.txt
152
153
  - FontAwesomeMore-Vectors.pdf
153
154
  - Gemfile
154
155
  - Gemfile.lock
@@ -173,7 +174,6 @@ files:
173
174
  - vendor/assets/stylesheets/font-awesome-sass.sass
174
175
  - vendor/assets/stylesheets/font-awesome-scss.scss
175
176
  - vendor/assets/stylesheets/font-awesome.css.erb
176
- - vendor/assets/stylesheets/font-awesome.sass
177
177
  homepage: http://github.com/kristianmandrup/font_awesome-sass-rails
178
178
  licenses:
179
179
  - MIT
@@ -189,7 +189,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
189
189
  version: '0'
190
190
  segments:
191
191
  - 0
192
- hash: 4306389019651255960
192
+ hash: 4348156922474268699
193
193
  required_rubygems_version: !ruby/object:Gem::Requirement
194
194
  none: false
195
195
  requirements:
@@ -1,846 +0,0 @@
1
- /* Font Awesome
2
- * the iconic font designed for use with Twitter Bootstrap
3
- * -------------------------------------------------------
4
- * The full suite of pictographic icons, examples, and documentation
5
- * can be found at: http://fortawesome.github.com/Font-Awesome/
6
- *
7
- * License
8
- * -------------------------------------------------------
9
- * The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
10
- * http://creativecommons.org/licenses/by/3.0/ A mention of
11
- * 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
12
- * source code is considered acceptable attribution (most common on the web).
13
- * If human readable source code is not available to the end user, a mention in
14
- * an 'About' or 'Credits' screen is considered acceptable (most common in desktop
15
- * or mobile software).
16
- *
17
- * Contact
18
- * -------------------------------------------------------
19
- * Email: dave@davegandy.com
20
- * Twitter: http://twitter.com/fortaweso_me
21
- * Work: Lead Product Designer @ http://kyruus.com
22
- *
23
- * Using asset_path (sass)
24
-
25
- @import compass/css3/font-face
26
-
27
- $font_path: asset-path("fontawesome-webfont", font) !default
28
-
29
- +font-face("FontAwesome", font-files("#{$font_path}.woff", woff, "#{$font_path}.ttf", truetype, "#{$font_path}.otf", opentype, "#{$font_path}.svgz#FontAwesomeRegular", svg, "#{$font_path}.svg#FontAwesomeRegular", svg), "#{$font_path}.eot", normal, normal)
30
-
31
- /* Font Awesome styles
32
- * -------------------------------------------------------
33
-
34
- [class^="icon-"]:before,
35
- [class*=" icon-"]:before
36
- font-family: FontAwesome
37
- font-weight: normal
38
- font-style: normal
39
- display: inline-block
40
- text-decoration: inherit
41
-
42
- a [class^="icon-"],
43
- a [class*=" icon-"]
44
- display: inline-block
45
- text-decoration: inherit
46
-
47
- /* makes the font 33% larger relative to the icon container
48
- .icon-large:before
49
- vertical-align: middle
50
- font-size: 4 / 3em
51
-
52
- .btn, .nav-tabs
53
- [class^="icon-"],
54
- [class*=" icon-"]
55
- /* keeps button heights with and without icons the same
56
- line-height: .9em
57
-
58
- li
59
- [class^="icon-"],
60
- [class*=" icon-"]
61
- display: inline-block
62
- width: 1.25em
63
- text-align: center
64
- .icon-large:before,
65
- .icon-large:before
66
- /* 1.5 increased font size for icon-large * 1.25 width
67
- width: 1.5 * 1.25em
68
-
69
- ul.icons
70
- list-style-type: none
71
- margin-left: 2em
72
- text-indent: -0.8em
73
- li
74
- [class^="icon-"],
75
- [class*=" icon-"]
76
- width: .8em
77
- .icon-large:before,
78
- .icon-large:before
79
- /* 1.5 increased font size for icon-large * 1.25 width
80
- vertical-align: initial
81
- // width: 1.5*1.25em;
82
-
83
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
84
- * readers do not read off random characters that represent icons
85
- .icon-glass:before
86
- content: "\f000"
87
-
88
- .icon-music:before
89
- content: "\f001"
90
-
91
- .icon-search:before
92
- content: "\f002"
93
-
94
- .icon-envelope:before
95
- content: "\f003"
96
-
97
- .icon-heart:before
98
- content: "\f004"
99
-
100
- .icon-star:before
101
- content: "\f005"
102
-
103
- .icon-star-empty:before
104
- content: "\f006"
105
-
106
- .icon-user:before
107
- content: "\f007"
108
-
109
- .icon-film:before
110
- content: "\f008"
111
-
112
- .icon-th-large:before
113
- content: "\f009"
114
-
115
- .icon-th:before
116
- content: "\f00a"
117
-
118
- .icon-th-list:before
119
- content: "\f00b"
120
-
121
- .icon-ok:before
122
- content: "\f00c"
123
-
124
- .icon-remove:before
125
- content: "\f00d"
126
-
127
- .icon-zoom-in:before
128
- content: "\f00e"
129
-
130
- .icon-zoom-out:before
131
- content: "\f010"
132
-
133
- .icon-off:before
134
- content: "\f011"
135
-
136
- .icon-signal:before
137
- content: "\f012"
138
-
139
- .icon-cog:before
140
- content: "\f013"
141
-
142
- .icon-trash:before
143
- content: "\f014"
144
-
145
- .icon-home:before
146
- content: "\f015"
147
-
148
- .icon-file:before
149
- content: "\f016"
150
-
151
- .icon-time:before
152
- content: "\f017"
153
-
154
- .icon-road:before
155
- content: "\f018"
156
-
157
- .icon-download-alt:before
158
- content: "\f019"
159
-
160
- .icon-download:before
161
- content: "\f01a"
162
-
163
- .icon-upload:before
164
- content: "\f01b"
165
-
166
- .icon-inbox:before
167
- content: "\f01c"
168
-
169
- .icon-play-circle:before
170
- content: "\f01d"
171
-
172
- .icon-repeat:before
173
- content: "\f01e"
174
-
175
- /* \f020 is not a valid unicode character. all shifted one down
176
- .icon-refresh:before
177
- content: "\f021"
178
-
179
- .icon-list-alt:before
180
- content: "\f022"
181
-
182
- .icon-lock:before
183
- content: "\f023"
184
-
185
- .icon-flag:before
186
- content: "\f024"
187
-
188
- .icon-headphones:before
189
- content: "\f025"
190
-
191
- .icon-volume-off:before
192
- content: "\f026"
193
-
194
- .icon-volume-down:before
195
- content: "\f027"
196
-
197
- .icon-volume-up:before
198
- content: "\f028"
199
-
200
- .icon-qrcode:before
201
- content: "\f029"
202
-
203
- .icon-barcode:before
204
- content: "\f02a"
205
-
206
- .icon-tag:before
207
- content: "\f02b"
208
-
209
- .icon-tags:before
210
- content: "\f02c"
211
-
212
- .icon-book:before
213
- content: "\f02d"
214
-
215
- .icon-bookmark:before
216
- content: "\f02e"
217
-
218
- .icon-print:before
219
- content: "\f02f"
220
-
221
- .icon-camera:before
222
- content: "\f030"
223
-
224
- .icon-font:before
225
- content: "\f031"
226
-
227
- .icon-bold:before
228
- content: "\f032"
229
-
230
- .icon-italic:before
231
- content: "\f033"
232
-
233
- .icon-text-height:before
234
- content: "\f034"
235
-
236
- .icon-text-width:before
237
- content: "\f035"
238
-
239
- .icon-align-left:before
240
- content: "\f036"
241
-
242
- .icon-align-center:before
243
- content: "\f037"
244
-
245
- .icon-align-right:before
246
- content: "\f038"
247
-
248
- .icon-align-justify:before
249
- content: "\f039"
250
-
251
- .icon-list:before
252
- content: "\f03a"
253
-
254
- .icon-indent-left:before
255
- content: "\f03b"
256
-
257
- .icon-indent-right:before
258
- content: "\f03c"
259
-
260
- .icon-facetime-video:before
261
- content: "\f03d"
262
-
263
- .icon-picture:before
264
- content: "\f03e"
265
-
266
- .icon-pencil:before
267
- content: "\f040"
268
-
269
- .icon-map-marker:before
270
- content: "\f041"
271
-
272
- .icon-adjust:before
273
- content: "\f042"
274
-
275
- .icon-tint:before
276
- content: "\f043"
277
-
278
- .icon-edit:before
279
- content: "\f044"
280
-
281
- .icon-share:before
282
- content: "\f045"
283
-
284
- .icon-check:before
285
- content: "\f046"
286
-
287
- .icon-move:before
288
- content: "\f047"
289
-
290
- .icon-step-backward:before
291
- content: "\f048"
292
-
293
- .icon-fast-backward:before
294
- content: "\f049"
295
-
296
- .icon-backward:before
297
- content: "\f04a"
298
-
299
- .icon-play:before
300
- content: "\f04b"
301
-
302
- .icon-pause:before
303
- content: "\f04c"
304
-
305
- .icon-stop:before
306
- content: "\f04d"
307
-
308
- .icon-forward:before
309
- content: "\f04e"
310
-
311
- .icon-fast-forward:before
312
- content: "\f050"
313
-
314
- .icon-step-forward:before
315
- content: "\f051"
316
-
317
- .icon-eject:before
318
- content: "\f052"
319
-
320
- .icon-chevron-left:before
321
- content: "\f053"
322
-
323
- .icon-chevron-right:before
324
- content: "\f054"
325
-
326
- .icon-plus-sign:before
327
- content: "\f055"
328
-
329
- .icon-minus-sign:before
330
- content: "\f056"
331
-
332
- .icon-remove-sign:before
333
- content: "\f057"
334
-
335
- .icon-ok-sign:before
336
- content: "\f058"
337
-
338
- .icon-question-sign:before
339
- content: "\f059"
340
-
341
- .icon-info-sign:before
342
- content: "\f05a"
343
-
344
- .icon-screenshot:before
345
- content: "\f05b"
346
-
347
- .icon-remove-circle:before
348
- content: "\f05c"
349
-
350
- .icon-ok-circle:before
351
- content: "\f05d"
352
-
353
- .icon-ban-circle:before
354
- content: "\f05e"
355
-
356
- .icon-arrow-left:before
357
- content: "\f060"
358
-
359
- .icon-arrow-right:before
360
- content: "\f061"
361
-
362
- .icon-arrow-up:before
363
- content: "\f062"
364
-
365
- .icon-arrow-down:before
366
- content: "\f063"
367
-
368
- .icon-share-alt:before
369
- content: "\f064"
370
-
371
- .icon-resize-full:before
372
- content: "\f065"
373
-
374
- .icon-resize-small:before
375
- content: "\f066"
376
-
377
- .icon-plus:before
378
- content: "\f067"
379
-
380
- .icon-minus:before
381
- content: "\f068"
382
-
383
- .icon-asterisk:before
384
- content: "\f069"
385
-
386
- .icon-exclamation-sign:before
387
- content: "\f06a"
388
-
389
- .icon-gift:before
390
- content: "\f06b"
391
-
392
- .icon-leaf:before
393
- content: "\f06c"
394
-
395
- .icon-fire:before
396
- content: "\f06d"
397
-
398
- .icon-eye-open:before
399
- content: "\f06e"
400
-
401
- .icon-eye-close:before
402
- content: "\f070"
403
-
404
- .icon-warning-sign:before
405
- content: "\f071"
406
-
407
- .icon-plane:before
408
- content: "\f072"
409
-
410
- .icon-calendar:before
411
- content: "\f073"
412
-
413
- .icon-random:before
414
- content: "\f074"
415
-
416
- .icon-comment:before
417
- content: "\f075"
418
-
419
- .icon-magnet:before
420
- content: "\f076"
421
-
422
- .icon-chevron-up:before
423
- content: "\f077"
424
-
425
- .icon-chevron-down:before
426
- content: "\f078"
427
-
428
- .icon-retweet:before
429
- content: "\f079"
430
-
431
- .icon-shopping-cart:before
432
- content: "\f07a"
433
-
434
- .icon-folder-close:before
435
- content: "\f07b"
436
-
437
- .icon-folder-open:before
438
- content: "\f07c"
439
-
440
- .icon-resize-vertical:before
441
- content: "\f07d"
442
-
443
- .icon-resize-horizontal:before
444
- content: "\f07e"
445
-
446
- .icon-bar-chart:before
447
- content: "\f080"
448
-
449
- .icon-twitter-sign:before
450
- content: "\f081"
451
-
452
- .icon-facebook-sign:before
453
- content: "\f082"
454
-
455
- .icon-camera-retro:before
456
- content: "\f083"
457
-
458
- .icon-key:before
459
- content: "\f084"
460
-
461
- .icon-cogs:before
462
- content: "\f085"
463
-
464
- .icon-comments:before
465
- content: "\f086"
466
-
467
- .icon-thumbs-up:before
468
- content: "\f087"
469
-
470
- .icon-thumbs-down:before
471
- content: "\f088"
472
-
473
- .icon-star-half:before
474
- content: "\f089"
475
-
476
- .icon-heart-empty:before
477
- content: "\f08a"
478
-
479
- .icon-signout:before
480
- content: "\f08b"
481
-
482
- .icon-linkedin-sign:before
483
- content: "\f08c"
484
-
485
- .icon-pushpin:before
486
- content: "\f08d"
487
-
488
- .icon-external-link:before
489
- content: "\f08e"
490
-
491
- .icon-signin:before
492
- content: "\f090"
493
-
494
- .icon-trophy:before
495
- content: "\f091"
496
-
497
- .icon-github-sign:before
498
- content: "\f092"
499
-
500
- .icon-upload-alt:before
501
- content: "\f093"
502
-
503
- .icon-lemon:before
504
- content: "\f094"
505
-
506
- .icon-phone:before
507
- content: "\f095"
508
-
509
- .icon-check-empty:before
510
- content: "\f096"
511
-
512
- .icon-bookmark-empty:before
513
- content: "\f097"
514
-
515
- .icon-phone-sign:before
516
- content: "\f098"
517
-
518
- .icon-twitter:before
519
- content: "\f099"
520
-
521
- .icon-facebook:before
522
- content: "\f09a"
523
-
524
- .icon-github:before
525
- content: "\f09b"
526
-
527
- .icon-unlock:before
528
- content: "\f09c"
529
-
530
- .icon-credit-card:before
531
- content: "\f09d"
532
-
533
- .icon-rss:before
534
- content: "\f09e"
535
-
536
- .icon-hdd:before
537
- content: "\f0a0"
538
-
539
- .icon-bullhorn:before
540
- content: "\f0a1"
541
-
542
- .icon-bell:before
543
- content: "\f0a2"
544
-
545
- .icon-certificate:before
546
- content: "\f0a3"
547
-
548
- .icon-hand-right:before
549
- content: "\f0a4"
550
-
551
- .icon-hand-left:before
552
- content: "\f0a5"
553
-
554
- .icon-hand-up:before
555
- content: "\f0a6"
556
-
557
- .icon-hand-down:before
558
- content: "\f0a7"
559
-
560
- .icon-circle-arrow-left:before
561
- content: "\f0a8"
562
-
563
- .icon-circle-arrow-right:before
564
- content: "\f0a9"
565
-
566
- .icon-circle-arrow-up:before
567
- content: "\f0aa"
568
-
569
- .icon-circle-arrow-down:before
570
- content: "\f0ab"
571
-
572
- .icon-globe:before
573
- content: "\f0ac"
574
-
575
- .icon-wrench:before
576
- content: "\f0ad"
577
-
578
- .icon-tasks:before
579
- content: "\f0ae"
580
-
581
- .icon-filter:before
582
- content: "\f0b0"
583
-
584
- .icon-briefcase:before
585
- content: "\f0b1"
586
-
587
- .icon-fullscreen:before
588
- content: "\f0b2"
589
-
590
- .icon-group:before
591
- content: "\f0c0"
592
-
593
- .icon-link:before
594
- content: "\f0c1"
595
-
596
- .icon-cloud:before
597
- content: "\f0c2"
598
-
599
- .icon-beaker:before
600
- content: "\f0c3"
601
-
602
- .icon-cut:before
603
- content: "\f0c4"
604
-
605
- .icon-copy:before
606
- content: "\f0c5"
607
-
608
- .icon-paper-clip:before
609
- content: "\f0c6"
610
-
611
- .icon-save:before
612
- content: "\f0c7"
613
-
614
- .icon-sign-blank:before
615
- content: "\f0c8"
616
-
617
- .icon-reorder:before
618
- content: "\f0c9"
619
-
620
- .icon-list-ul:before
621
- content: "\f0ca"
622
-
623
- .icon-list-ol:before
624
- content: "\f0cb"
625
-
626
- .icon-strikethrough:before
627
- content: "\f0cc"
628
-
629
- .icon-underline:before
630
- content: "\f0cd"
631
-
632
- .icon-table:before
633
- content: "\f0ce"
634
-
635
- .icon-magic:before
636
- content: "\f0d0"
637
-
638
- .icon-truck:before
639
- content: "\f0d1"
640
-
641
- .icon-pinterest:before
642
- content: "\f0d2"
643
-
644
- .icon-pinterest-sign:before
645
- content: "\f0d3"
646
-
647
- .icon-google-plus-sign:before
648
- content: "\f0d4"
649
-
650
- .icon-google-plus:before
651
- content: "\f0d5"
652
-
653
- .icon-money:before
654
- content: "\f0d6"
655
-
656
- .icon-caret-down:before
657
- content: "\f0d7"
658
-
659
- .icon-caret-up:before
660
- content: "\f0d8"
661
-
662
- .icon-caret-left:before
663
- content: "\f0d9"
664
-
665
- .icon-caret-right:before
666
- content: "\f0da"
667
-
668
- .icon-columns:before
669
- content: "\f0db"
670
-
671
- .icon-sort:before
672
- content: "\f0dc"
673
-
674
- .icon-sort-down:before
675
- content: "\f0dd"
676
-
677
- .icon-sort-up:before
678
- content: "\f0de"
679
-
680
- .icon-envelope-alt:before
681
- content: "\f0e0"
682
-
683
- .icon-linkedin:before
684
- content: "\f0e1"
685
-
686
- .icon-undo:before
687
- content: "\f0e2"
688
-
689
- .icon-legal:before
690
- content: "\f0e3"
691
-
692
- .icon-dashboard:before
693
- content: "\f0e4"
694
-
695
- .icon-comment-alt:before
696
- content: "\f0e5"
697
-
698
- .icon-comments-alt:before
699
- content: "\f0e6"
700
-
701
- .icon-bolt:before
702
- content: "\f0e7"
703
-
704
- .icon-sitemap:before
705
- content: "\f0e8"
706
-
707
- .icon-umbrella:before
708
- content: "\f0e9"
709
-
710
- .icon-paste:before
711
- content: "\f0ea"
712
-
713
- .icon-user-md:before
714
- content: "\f200"
715
-
716
- .icon-apple-logo:before
717
- content: "\f500"
718
-
719
- .icon-windows-8:before
720
- content: "\f501"
721
-
722
- .icon-js-fiddle:before
723
- content: "\f502"
724
-
725
- .icon-skype:before
726
- content: "\f503"
727
-
728
- .icon-youtube-sign:before
729
- content: "\f504"
730
-
731
- .icon-youtube:before
732
- content: "\f505"
733
-
734
- .icon-vimeo-sign:before
735
- content: "\f506"
736
-
737
- .icon-vimeo:before
738
- content: "\f507"
739
-
740
- .icon-lastfm-sign:before
741
- content: "\f508"
742
-
743
- .icon-lastfm:before
744
- content: "\f509"
745
-
746
- .icon-rss-sign:before
747
- content: "\f50a"
748
-
749
- .icon-reddit:before
750
- content: "\f50b"
751
-
752
- .icon-delicious-sign:before
753
- content: "\f50c"
754
-
755
- .icon-wordpress-sign:before
756
- content: "\f50d"
757
-
758
- .icon-wordpress:before
759
- content: "\f50e"
760
-
761
- .icon-git-fork:before
762
- content: "\f50f"
763
-
764
- .icon-blogger-sign:before
765
- content: "\f510"
766
-
767
- .icon-blogger:before
768
- content: "\f511"
769
-
770
- .icon-tumblr-sign:before
771
- content: "\f512"
772
-
773
- .icon-tumblr:before
774
- content: "\f513"
775
-
776
- .icon-flickr-sign:before
777
- content: "\f514"
778
-
779
- .icon-flickr:before
780
- content: "\f515"
781
-
782
- .icon-picasa-sign:before
783
- content: "\f516"
784
-
785
- .icon-picasa:before
786
- content: "\f517"
787
-
788
- .icon-amazon-sign:before
789
- content: "\f518"
790
-
791
- .icon-amazon:before
792
- content: "\f519"
793
-
794
- .icon-yelp-sign:before
795
- content: "\f51a"
796
-
797
- .icon-yelp:before
798
- content: "\f51b"
799
-
800
- .icon-soundcloud:before
801
- content: "\f51c"
802
-
803
- .icon-spotify:before
804
- content: "\f51d"
805
-
806
- .icon-yahoo-sign:before
807
- content: "\f520"
808
-
809
- .icon-yahoo:before
810
- content: "\f521"
811
-
812
- .icon-evernote-sign:before
813
- content: "\f522"
814
-
815
- .icon-evernote:before
816
- content: "\f523"
817
-
818
- .icon-google-sign:before
819
- content: "\f524"
820
-
821
- .icon-google:before
822
- content: "\f525"
823
-
824
- .icon-hacker-news:before
825
- content: "\f526"
826
-
827
- .icon-map:before
828
- content: "\f529"
829
-
830
- .icon-bus-sign:before
831
- content: "\f52a"
832
-
833
- .icon-bike-sign:before
834
- content: "\f52b"
835
-
836
- .icon-car-sign:before
837
- content: "\f52c"
838
-
839
- .icon-taxi-sign:before
840
- content: "\f52d"
841
-
842
- .icon-truck-sign:before
843
- content: "\f52e"
844
-
845
- .icon-handicap-sign:before
846
- content: "\f52f"