font-awesome-rails 3.2.1.3 → 4.0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,10 +19,6 @@ class FontAwesomeRailsTest < ActionDispatch::IntegrationTest
19
19
  test "stylesheets are served" do
20
20
  get "/assets/font-awesome.css"
21
21
  assert_font_awesome(response)
22
- get "/assets/font-awesome-ie7.min.css"
23
- assert_response :success
24
- get "/assets/font-awesome-ie7.css"
25
- assert_response :success
26
22
  end
27
23
 
28
24
  test "stylesheets contain asset pipeline references to fonts" do
@@ -52,8 +48,8 @@ class FontAwesomeRailsTest < ActionDispatch::IntegrationTest
52
48
  test "helpers should be available in the view" do
53
49
  get "/icons"
54
50
  assert_response :success
55
- assert_select "i.icon-flag"
56
- assert_select "span.icon-stack"
51
+ assert_select "i.fa.fa-flag"
52
+ assert_select "span.fa-stack"
57
53
  end
58
54
 
59
55
  private
@@ -3,96 +3,96 @@ require 'test_helper'
3
3
  class FontAwesome::Rails::IconHelperTest < ActionView::TestCase
4
4
 
5
5
  test "#fa_icon with no args should render a flag icon" do
6
- assert_icon i("icon-flag")
6
+ assert_icon i("fa fa-flag")
7
7
  end
8
8
 
9
9
  test "#fa_icon should render different individual icons" do
10
- assert_icon i("icon-flag"), "flag"
11
- assert_icon i("icon-camera-retro"), "camera-retro"
12
- assert_icon i("icon-cog"), "cog"
13
- assert_icon i("icon-github"), "github"
10
+ assert_icon i("fa fa-flag"), "flag"
11
+ assert_icon i("fa fa-camera-retro"), "camera-retro"
12
+ assert_icon i("fa fa-cog"), "cog"
13
+ assert_icon i("fa fa-github"), "github"
14
14
  end
15
15
 
16
16
  test "#fa_icon should render icons with multiple modifiers" do
17
- assert_icon i("icon-pencil icon-fixed-width"), "pencil fixed-width"
18
- assert_icon i("icon-flag icon-4x"), "flag 4x"
19
- assert_icon i("icon-refresh icon-2x icon-spin"), "refresh 2x spin"
17
+ assert_icon i("fa fa-pencil fa-fixed-width"), "pencil fixed-width"
18
+ assert_icon i("fa fa-flag fa-4x"), "flag 4x"
19
+ assert_icon i("fa fa-refresh fa-2x fa-spin"), "refresh 2x spin"
20
20
  end
21
21
 
22
22
  test "#fa_icon should render icons with array modifiers" do
23
- assert_icon i("icon-flag"), ["flag"]
24
- assert_icon i("icon-ok icon-li"), ["ok", "li"]
25
- assert_icon i("icon-flag icon-4x"), ["flag", "4x"]
26
- assert_icon i("icon-refresh icon-2x icon-spin"), ["refresh", "2x", "spin"]
23
+ assert_icon i("fa fa-flag"), ["flag"]
24
+ assert_icon i("fa fa-ok fa-li"), ["ok", "li"]
25
+ assert_icon i("fa fa-flag fa-4x"), ["flag", "4x"]
26
+ assert_icon i("fa fa-refresh fa-2x fa-spin"), ["refresh", "2x", "spin"]
27
27
  end
28
28
 
29
29
  test "#fa_icon should incorporate additional class styles" do
30
- assert_icon i("icon-flag pull-right"), "flag", :class => "pull-right"
31
- assert_icon i("icon-flag icon-2x pull-right"), ["flag", "2x"], :class => ["pull-right"]
32
- assert_icon i("icon-ok icon-li pull-right special"), "ok li", :class => "pull-right special"
33
- assert_icon i("icon-ok pull-right special"), "ok", :class => ["pull-right", "special"]
30
+ assert_icon i("fa fa-flag pull-right"), "flag", :class => "pull-right"
31
+ assert_icon i("fa fa-flag fa-2x pull-right"), ["flag", "2x"], :class => ["pull-right"]
32
+ assert_icon i("fa fa-ok fa-li pull-right special"), "ok li", :class => "pull-right special"
33
+ assert_icon i("fa fa-ok pull-right special"), "ok", :class => ["pull-right", "special"]
34
34
  end
35
35
 
36
36
  test "#fa_icon should incorporate a text suffix" do
37
- assert_icon "#{i("icon-camera-retro")} Take a photo", "camera-retro", :text => "Take a photo"
37
+ assert_icon "#{i("fa fa-camera-retro")} Take a photo", "camera-retro", :text => "Take a photo"
38
38
  end
39
39
 
40
40
  test "#fa_icon should html escape text" do
41
- assert_icon "#{i("icon-camera-retro")} &lt;script&gt;&lt;/script&gt;", "camera-retro", :text => "<script></script>"
41
+ assert_icon "#{i("fa fa-camera-retro")} &lt;script&gt;&lt;/script&gt;", "camera-retro", :text => "<script></script>"
42
42
  end
43
43
 
44
44
  test "#fa_icon should not html escape safe text" do
45
- assert_icon "#{i("icon-camera-retro")} <script></script>", "camera-retro", :text => "<script></script>".html_safe
45
+ assert_icon "#{i("fa fa-camera-retro")} <script></script>", "camera-retro", :text => "<script></script>".html_safe
46
46
  end
47
47
 
48
48
  test "#fa_icon should pull it all together" do
49
- assert_icon "#{i("icon-camera-retro pull-right")} Take a photo", "camera-retro", :text => "Take a photo", :class => "pull-right"
49
+ assert_icon "#{i("fa fa-camera-retro pull-right")} Take a photo", "camera-retro", :text => "Take a photo", :class => "pull-right"
50
50
  end
51
51
 
52
52
  test "#fa_icon should pass all other options through" do
53
- assert_icon %(<i class="icon-user" data-id="123"></i>), "user", :data => { :id => 123 }
53
+ assert_icon %(<i class="fa fa-user" data-id="123"></i>), "user", :data => { :id => 123 }
54
54
  end
55
55
 
56
56
  test "#fa_stacked_icon with no args should render a flag icon" do
57
- expected = %(<span class="icon-stack">#{i("icon-stack-base")}#{i("icon-flag")}</span>)
57
+ expected = %(<span class="fa-stack">#{i("fa fa-square-o fa-stack-2x")}#{i("fa fa-flag fa-stack-1x")}</span>)
58
58
  assert_stacked_icon expected
59
59
  end
60
60
 
61
61
  test "#fa_stacked_icon should render a stacked icon" do
62
- expected = %(<span class="icon-stack">#{i("icon-check-empty icon-stack-base")}#{i("icon-twitter")}</span>)
63
- assert_stacked_icon expected, "twitter", :base => "check-empty"
64
- expected = %(<span class="icon-stack">#{i("icon-sign-blank icon-stack-base")}#{i("icon-terminal icon-light")}</span>)
65
- assert_stacked_icon expected, ["terminal", "light"], :base => ["sign-blank"]
62
+ expected = %(<span class="fa-stack">#{i("fa fa-square-o fa-stack-2x")}#{i("fa fa-twitter fa-stack-1x")}</span>)
63
+ assert_stacked_icon expected, "twitter", :base => "square-o"
64
+ expected = %(<span class="fa-stack">#{i("fa fa-square fa-stack-2x")}#{i("fa fa-terminal fa-inverse fa-stack-1x")}</span>)
65
+ assert_stacked_icon expected, ["terminal", "inverse"], :base => ["square"]
66
66
  end
67
67
 
68
68
  test "#fa_stacked_icon should incorporate additional class styles" do
69
- expected = %(<span class="icon-stack pull-right">#{i("icon-check-empty icon-stack-base")}#{i("icon-twitter")}</span>)
70
- assert_stacked_icon expected, "twitter", :base => "check-empty", :class => "pull-right"
69
+ expected = %(<span class="fa-stack pull-right">#{i("fa fa-square-o fa-stack-2x")}#{i("fa fa-twitter fa-stack-1x")}</span>)
70
+ assert_stacked_icon expected, "twitter", :base => "square-o", :class => "pull-right"
71
71
  end
72
72
 
73
73
  test "#fa_stacked_icon should reverse the stack" do
74
- expected = %(<span class="icon-stack">#{i("icon-facebook")}#{i("icon-ban-circle icon-stack-base")}</span>)
75
- assert_stacked_icon expected, "facebook", :base => "ban-circle", :reverse => "true"
74
+ expected = %(<span class="fa-stack">#{i("fa fa-facebook fa-stack-1x")}#{i("fa fa-ban fa-stack-2x")}</span>)
75
+ assert_stacked_icon expected, "facebook", :base => "ban", :reverse => "true"
76
76
  end
77
77
 
78
78
  test "#fa_stacked_icon should html escape text" do
79
- expected = %(<span class="icon-stack">#{i("icon-check-empty icon-stack-base")}#{i("icon-twitter")}</span> &lt;script&gt;)
79
+ expected = %(<span class="fa-stack">#{i("fa fa-check-empty fa-stack-2x")}#{i("fa fa-twitter fa-stack-1x")}</span> &lt;script&gt;)
80
80
  assert_stacked_icon expected, "twitter", :base => "check-empty", :text => "<script>"
81
81
  end
82
82
 
83
83
  test "#fa_stacked_icon should not html escape safe text" do
84
- expected = %(<span class="icon-stack">#{i("icon-check-empty icon-stack-base")}#{i("icon-twitter")}</span> <script>)
85
- assert_stacked_icon expected, "twitter", :base => "check-empty", :text => "<script>".html_safe
84
+ expected = %(<span class="fa-stack">#{i("fa fa-square-o fa-stack-2x")}#{i("fa fa-twitter fa-stack-1x")}</span> <script>)
85
+ assert_stacked_icon expected, "twitter", :base => "square-o", :text => "<script>".html_safe
86
86
  end
87
87
 
88
88
  test "#fa_stacked_icon should accept options for base and main icons" do
89
- expected = %(<span class="icon-stack">#{i("icon-camera text-info")}#{i("icon-ban-circle icon-stack-base text-error")}</span>)
90
- assert_stacked_icon expected, "camera", :base => "ban-circle", :reverse => true, :base_options => { :class => "text-error" }, :icon_options => { :class => "text-info" }
89
+ expected = %(<span class="fa-stack">#{i("fa fa-camera fa-stack-1x text-info")}#{i("fa fa-ban fa-stack-2x text-error")}</span>)
90
+ assert_stacked_icon expected, "camera", :base => "ban", :reverse => true, :base_options => { :class => "text-error" }, :icon_options => { :class => "text-info" }
91
91
  end
92
92
 
93
93
  test "#fa_stacked_icon should pass all other options through" do
94
- expected = %(<span class="icon-stack" data-id="123">#{i("icon-check-empty icon-stack-base")}#{i("icon-user")}</span>)
95
- assert_stacked_icon expected, "user", :base => "check-empty", :data => { :id => 123 }
94
+ expected = %(<span class="fa-stack" data-id="123">#{i("fa fa-square-o fa-stack-2x")}#{i("fa fa-user fa-stack-1x")}</span>)
95
+ assert_stacked_icon expected, "user", :base => "square-o", :data => { :id => 123 }
96
96
  end
97
97
 
98
98
  private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: font-awesome-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1.3
4
+ version: 4.0.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - bokmann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-09 00:00:00.000000000 Z
11
+ date: 2013-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -85,8 +85,6 @@ files:
85
85
  - app/assets/fonts/fontawesome-webfont.ttf
86
86
  - app/assets/fonts/fontawesome-webfont.woff
87
87
  - app/assets/fonts/FontAwesome.otf
88
- - app/assets/stylesheets/font-awesome-ie7.css
89
- - app/assets/stylesheets/font-awesome-ie7.min.css
90
88
  - app/assets/stylesheets/font-awesome.css.erb
91
89
  - app/helpers/font_awesome/rails/icon_helper.rb
92
90
  - lib/font-awesome-rails/engine.rb
@@ -1,1203 +0,0 @@
1
- /*!
2
- * Font Awesome 3.2.1
3
- * the iconic font designed for Bootstrap
4
- * ------------------------------------------------------------------------------
5
- * The full suite of pictographic icons, examples, and documentation can be
6
- * found at http://fontawesome.io. Stay up to date on Twitter at
7
- * http://twitter.com/fontawesome.
8
- *
9
- * License
10
- * ------------------------------------------------------------------------------
11
- * - The Font Awesome font is licensed under SIL OFL 1.1 -
12
- * http://scripts.sil.org/OFL
13
- * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
14
- * http://opensource.org/licenses/mit-license.html
15
- * - Font Awesome documentation licensed under CC BY 3.0 -
16
- * http://creativecommons.org/licenses/by/3.0/
17
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
18
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
19
- *
20
- * Author - Dave Gandy
21
- * ------------------------------------------------------------------------------
22
- * Email: dave@fontawesome.io
23
- * Twitter: http://twitter.com/byscuits
24
- * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
- */
26
- .icon-large {
27
- font-size: 1.3333333333333333em;
28
- margin-top: -4px;
29
- padding-top: 3px;
30
- margin-bottom: -4px;
31
- padding-bottom: 3px;
32
- vertical-align: middle;
33
- }
34
- .nav [class^="icon-"],
35
- .nav [class*=" icon-"] {
36
- vertical-align: inherit;
37
- margin-top: -4px;
38
- padding-top: 3px;
39
- margin-bottom: -4px;
40
- padding-bottom: 3px;
41
- }
42
- .nav [class^="icon-"].icon-large,
43
- .nav [class*=" icon-"].icon-large {
44
- vertical-align: -25%;
45
- }
46
- .nav-pills [class^="icon-"].icon-large,
47
- .nav-tabs [class^="icon-"].icon-large,
48
- .nav-pills [class*=" icon-"].icon-large,
49
- .nav-tabs [class*=" icon-"].icon-large {
50
- line-height: .75em;
51
- margin-top: -7px;
52
- padding-top: 5px;
53
- margin-bottom: -5px;
54
- padding-bottom: 4px;
55
- }
56
- .btn [class^="icon-"].pull-left,
57
- .btn [class*=" icon-"].pull-left,
58
- .btn [class^="icon-"].pull-right,
59
- .btn [class*=" icon-"].pull-right {
60
- vertical-align: inherit;
61
- }
62
- .btn [class^="icon-"].icon-large,
63
- .btn [class*=" icon-"].icon-large {
64
- margin-top: -0.5em;
65
- }
66
- a [class^="icon-"],
67
- a [class*=" icon-"] {
68
- cursor: pointer;
69
- }
70
- .icon-glass {
71
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf000;');
72
- }
73
- .icon-music {
74
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf001;');
75
- }
76
- .icon-search {
77
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf002;');
78
- }
79
- .icon-envelope-alt {
80
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf003;');
81
- }
82
- .icon-heart {
83
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf004;');
84
- }
85
- .icon-star {
86
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf005;');
87
- }
88
- .icon-star-empty {
89
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf006;');
90
- }
91
- .icon-user {
92
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf007;');
93
- }
94
- .icon-film {
95
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf008;');
96
- }
97
- .icon-th-large {
98
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf009;');
99
- }
100
- .icon-th {
101
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00a;');
102
- }
103
- .icon-th-list {
104
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00b;');
105
- }
106
- .icon-ok {
107
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00c;');
108
- }
109
- .icon-remove {
110
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00d;');
111
- }
112
- .icon-zoom-in {
113
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;');
114
- }
115
- .icon-zoom-out {
116
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;');
117
- }
118
- .icon-off {
119
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;');
120
- }
121
- .icon-power-off {
122
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;');
123
- }
124
- .icon-signal {
125
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf012;');
126
- }
127
- .icon-cog {
128
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;');
129
- }
130
- .icon-gear {
131
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;');
132
- }
133
- .icon-trash {
134
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf014;');
135
- }
136
- .icon-home {
137
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf015;');
138
- }
139
- .icon-file-alt {
140
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf016;');
141
- }
142
- .icon-time {
143
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf017;');
144
- }
145
- .icon-road {
146
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf018;');
147
- }
148
- .icon-download-alt {
149
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;');
150
- }
151
- .icon-download {
152
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01a;');
153
- }
154
- .icon-upload {
155
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01b;');
156
- }
157
- .icon-inbox {
158
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01c;');
159
- }
160
- .icon-play-circle {
161
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01d;');
162
- }
163
- .icon-repeat {
164
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;');
165
- }
166
- .icon-rotate-right {
167
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;');
168
- }
169
- .icon-refresh {
170
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf021;');
171
- }
172
- .icon-list-alt {
173
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf022;');
174
- }
175
- .icon-lock {
176
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf023;');
177
- }
178
- .icon-flag {
179
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf024;');
180
- }
181
- .icon-headphones {
182
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf025;');
183
- }
184
- .icon-volume-off {
185
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf026;');
186
- }
187
- .icon-volume-down {
188
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf027;');
189
- }
190
- .icon-volume-up {
191
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf028;');
192
- }
193
- .icon-qrcode {
194
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;');
195
- }
196
- .icon-barcode {
197
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;');
198
- }
199
- .icon-tag {
200
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02b;');
201
- }
202
- .icon-tags {
203
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02c;');
204
- }
205
- .icon-book {
206
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;');
207
- }
208
- .icon-bookmark {
209
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02e;');
210
- }
211
- .icon-print {
212
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;');
213
- }
214
- .icon-camera {
215
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf030;');
216
- }
217
- .icon-font {
218
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf031;');
219
- }
220
- .icon-bold {
221
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf032;');
222
- }
223
- .icon-italic {
224
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf033;');
225
- }
226
- .icon-text-height {
227
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;');
228
- }
229
- .icon-text-width {
230
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;');
231
- }
232
- .icon-align-left {
233
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf036;');
234
- }
235
- .icon-align-center {
236
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;');
237
- }
238
- .icon-align-right {
239
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf038;');
240
- }
241
- .icon-align-justify {
242
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf039;');
243
- }
244
- .icon-list {
245
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03a;');
246
- }
247
- .icon-indent-left {
248
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03b;');
249
- }
250
- .icon-indent-right {
251
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03c;');
252
- }
253
- .icon-facetime-video {
254
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03d;');
255
- }
256
- .icon-picture {
257
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03e;');
258
- }
259
- .icon-pencil {
260
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf040;');
261
- }
262
- .icon-map-marker {
263
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf041;');
264
- }
265
- .icon-adjust {
266
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf042;');
267
- }
268
- .icon-tint {
269
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf043;');
270
- }
271
- .icon-edit {
272
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf044;');
273
- }
274
- .icon-share {
275
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf045;');
276
- }
277
- .icon-check {
278
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf046;');
279
- }
280
- .icon-move {
281
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf047;');
282
- }
283
- .icon-step-backward {
284
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf048;');
285
- }
286
- .icon-fast-backward {
287
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf049;');
288
- }
289
- .icon-backward {
290
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04a;');
291
- }
292
- .icon-play {
293
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04b;');
294
- }
295
- .icon-pause {
296
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04c;');
297
- }
298
- .icon-stop {
299
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04d;');
300
- }
301
- .icon-forward {
302
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04e;');
303
- }
304
- .icon-fast-forward {
305
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf050;');
306
- }
307
- .icon-step-forward {
308
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf051;');
309
- }
310
- .icon-eject {
311
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf052;');
312
- }
313
- .icon-chevron-left {
314
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf053;');
315
- }
316
- .icon-chevron-right {
317
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf054;');
318
- }
319
- .icon-plus-sign {
320
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf055;');
321
- }
322
- .icon-minus-sign {
323
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf056;');
324
- }
325
- .icon-remove-sign {
326
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf057;');
327
- }
328
- .icon-ok-sign {
329
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf058;');
330
- }
331
- .icon-question-sign {
332
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf059;');
333
- }
334
- .icon-info-sign {
335
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05a;');
336
- }
337
- .icon-screenshot {
338
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05b;');
339
- }
340
- .icon-remove-circle {
341
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;');
342
- }
343
- .icon-ok-circle {
344
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05d;');
345
- }
346
- .icon-ban-circle {
347
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05e;');
348
- }
349
- .icon-arrow-left {
350
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf060;');
351
- }
352
- .icon-arrow-right {
353
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf061;');
354
- }
355
- .icon-arrow-up {
356
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf062;');
357
- }
358
- .icon-arrow-down {
359
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf063;');
360
- }
361
- .icon-share-alt {
362
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;');
363
- }
364
- .icon-mail-forward {
365
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;');
366
- }
367
- .icon-resize-full {
368
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf065;');
369
- }
370
- .icon-resize-small {
371
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf066;');
372
- }
373
- .icon-plus {
374
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf067;');
375
- }
376
- .icon-minus {
377
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf068;');
378
- }
379
- .icon-asterisk {
380
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf069;');
381
- }
382
- .icon-exclamation-sign {
383
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06a;');
384
- }
385
- .icon-gift {
386
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06b;');
387
- }
388
- .icon-leaf {
389
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06c;');
390
- }
391
- .icon-fire {
392
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06d;');
393
- }
394
- .icon-eye-open {
395
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06e;');
396
- }
397
- .icon-eye-close {
398
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf070;');
399
- }
400
- .icon-warning-sign {
401
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf071;');
402
- }
403
- .icon-plane {
404
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf072;');
405
- }
406
- .icon-calendar {
407
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf073;');
408
- }
409
- .icon-random {
410
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf074;');
411
- }
412
- .icon-comment {
413
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf075;');
414
- }
415
- .icon-magnet {
416
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf076;');
417
- }
418
- .icon-chevron-up {
419
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf077;');
420
- }
421
- .icon-chevron-down {
422
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf078;');
423
- }
424
- .icon-retweet {
425
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf079;');
426
- }
427
- .icon-shopping-cart {
428
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07a;');
429
- }
430
- .icon-folder-close {
431
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07b;');
432
- }
433
- .icon-folder-open {
434
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07c;');
435
- }
436
- .icon-resize-vertical {
437
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07d;');
438
- }
439
- .icon-resize-horizontal {
440
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07e;');
441
- }
442
- .icon-bar-chart {
443
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;');
444
- }
445
- .icon-twitter-sign {
446
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf081;');
447
- }
448
- .icon-facebook-sign {
449
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf082;');
450
- }
451
- .icon-camera-retro {
452
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf083;');
453
- }
454
- .icon-key {
455
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf084;');
456
- }
457
- .icon-cogs {
458
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;');
459
- }
460
- .icon-gears {
461
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;');
462
- }
463
- .icon-comments {
464
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf086;');
465
- }
466
- .icon-thumbs-up-alt {
467
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf087;');
468
- }
469
- .icon-thumbs-down-alt {
470
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf088;');
471
- }
472
- .icon-star-half {
473
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf089;');
474
- }
475
- .icon-heart-empty {
476
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08a;');
477
- }
478
- .icon-signout {
479
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08b;');
480
- }
481
- .icon-linkedin-sign {
482
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08c;');
483
- }
484
- .icon-pushpin {
485
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08d;');
486
- }
487
- .icon-external-link {
488
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;');
489
- }
490
- .icon-signin {
491
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf090;');
492
- }
493
- .icon-trophy {
494
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf091;');
495
- }
496
- .icon-github-sign {
497
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf092;');
498
- }
499
- .icon-upload-alt {
500
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf093;');
501
- }
502
- .icon-lemon {
503
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf094;');
504
- }
505
- .icon-phone {
506
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf095;');
507
- }
508
- .icon-check-empty {
509
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;');
510
- }
511
- .icon-unchecked {
512
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;');
513
- }
514
- .icon-bookmark-empty {
515
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;');
516
- }
517
- .icon-phone-sign {
518
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf098;');
519
- }
520
- .icon-twitter {
521
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;');
522
- }
523
- .icon-facebook {
524
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09a;');
525
- }
526
- .icon-github {
527
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09b;');
528
- }
529
- .icon-unlock {
530
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09c;');
531
- }
532
- .icon-credit-card {
533
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09d;');
534
- }
535
- .icon-rss {
536
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;');
537
- }
538
- .icon-hdd {
539
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;');
540
- }
541
- .icon-bullhorn {
542
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a1;');
543
- }
544
- .icon-bell {
545
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a2;');
546
- }
547
- .icon-certificate {
548
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a3;');
549
- }
550
- .icon-hand-right {
551
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a4;');
552
- }
553
- .icon-hand-left {
554
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a5;');
555
- }
556
- .icon-hand-up {
557
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a6;');
558
- }
559
- .icon-hand-down {
560
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a7;');
561
- }
562
- .icon-circle-arrow-left {
563
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a8;');
564
- }
565
- .icon-circle-arrow-right {
566
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a9;');
567
- }
568
- .icon-circle-arrow-up {
569
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0aa;');
570
- }
571
- .icon-circle-arrow-down {
572
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ab;');
573
- }
574
- .icon-globe {
575
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ac;');
576
- }
577
- .icon-wrench {
578
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ad;');
579
- }
580
- .icon-tasks {
581
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ae;');
582
- }
583
- .icon-filter {
584
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b0;');
585
- }
586
- .icon-briefcase {
587
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b1;');
588
- }
589
- .icon-fullscreen {
590
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;');
591
- }
592
- .icon-group {
593
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c0;');
594
- }
595
- .icon-link {
596
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c1;');
597
- }
598
- .icon-cloud {
599
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c2;');
600
- }
601
- .icon-beaker {
602
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;');
603
- }
604
- .icon-cut {
605
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c4;');
606
- }
607
- .icon-copy {
608
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c5;');
609
- }
610
- .icon-paper-clip {
611
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;');
612
- }
613
- .icon-paperclip {
614
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;');
615
- }
616
- .icon-save {
617
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c7;');
618
- }
619
- .icon-sign-blank {
620
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c8;');
621
- }
622
- .icon-reorder {
623
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;');
624
- }
625
- .icon-list-ul {
626
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ca;');
627
- }
628
- .icon-list-ol {
629
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cb;');
630
- }
631
- .icon-strikethrough {
632
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cc;');
633
- }
634
- .icon-underline {
635
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cd;');
636
- }
637
- .icon-table {
638
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ce;');
639
- }
640
- .icon-magic {
641
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;');
642
- }
643
- .icon-truck {
644
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d1;');
645
- }
646
- .icon-pinterest {
647
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d2;');
648
- }
649
- .icon-pinterest-sign {
650
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d3;');
651
- }
652
- .icon-google-plus-sign {
653
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d4;');
654
- }
655
- .icon-google-plus {
656
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;');
657
- }
658
- .icon-money {
659
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d6;');
660
- }
661
- .icon-caret-down {
662
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d7;');
663
- }
664
- .icon-caret-up {
665
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d8;');
666
- }
667
- .icon-caret-left {
668
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d9;');
669
- }
670
- .icon-caret-right {
671
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;');
672
- }
673
- .icon-columns {
674
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;');
675
- }
676
- .icon-sort {
677
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;');
678
- }
679
- .icon-sort-down {
680
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;');
681
- }
682
- .icon-sort-up {
683
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;');
684
- }
685
- .icon-envelope {
686
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;');
687
- }
688
- .icon-linkedin {
689
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e1;');
690
- }
691
- .icon-undo {
692
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;');
693
- }
694
- .icon-rotate-left {
695
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;');
696
- }
697
- .icon-legal {
698
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;');
699
- }
700
- .icon-dashboard {
701
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e4;');
702
- }
703
- .icon-comment-alt {
704
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e5;');
705
- }
706
- .icon-comments-alt {
707
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e6;');
708
- }
709
- .icon-bolt {
710
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;');
711
- }
712
- .icon-sitemap {
713
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e8;');
714
- }
715
- .icon-umbrella {
716
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e9;');
717
- }
718
- .icon-paste {
719
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ea;');
720
- }
721
- .icon-lightbulb {
722
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0eb;');
723
- }
724
- .icon-exchange {
725
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;');
726
- }
727
- .icon-cloud-download {
728
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ed;');
729
- }
730
- .icon-cloud-upload {
731
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ee;');
732
- }
733
- .icon-user-md {
734
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;');
735
- }
736
- .icon-stethoscope {
737
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;');
738
- }
739
- .icon-suitcase {
740
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f2;');
741
- }
742
- .icon-bell-alt {
743
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;');
744
- }
745
- .icon-coffee {
746
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;');
747
- }
748
- .icon-food {
749
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f5;');
750
- }
751
- .icon-file-text-alt {
752
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f6;');
753
- }
754
- .icon-building {
755
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f7;');
756
- }
757
- .icon-hospital {
758
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f8;');
759
- }
760
- .icon-ambulance {
761
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f9;');
762
- }
763
- .icon-medkit {
764
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fa;');
765
- }
766
- .icon-fighter-jet {
767
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fb;');
768
- }
769
- .icon-beer {
770
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fc;');
771
- }
772
- .icon-h-sign {
773
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fd;');
774
- }
775
- .icon-plus-sign-alt {
776
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fe;');
777
- }
778
- .icon-double-angle-left {
779
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf100;');
780
- }
781
- .icon-double-angle-right {
782
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf101;');
783
- }
784
- .icon-double-angle-up {
785
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf102;');
786
- }
787
- .icon-double-angle-down {
788
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf103;');
789
- }
790
- .icon-angle-left {
791
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf104;');
792
- }
793
- .icon-angle-right {
794
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf105;');
795
- }
796
- .icon-angle-up {
797
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf106;');
798
- }
799
- .icon-angle-down {
800
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf107;');
801
- }
802
- .icon-desktop {
803
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf108;');
804
- }
805
- .icon-laptop {
806
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf109;');
807
- }
808
- .icon-tablet {
809
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10a;');
810
- }
811
- .icon-mobile-phone {
812
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10b;');
813
- }
814
- .icon-circle-blank {
815
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10c;');
816
- }
817
- .icon-quote-left {
818
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10d;');
819
- }
820
- .icon-quote-right {
821
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10e;');
822
- }
823
- .icon-spinner {
824
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf110;');
825
- }
826
- .icon-circle {
827
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;');
828
- }
829
- .icon-reply {
830
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf112;');
831
- }
832
- .icon-mail-reply {
833
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf112;');
834
- }
835
- .icon-github-alt {
836
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf113;');
837
- }
838
- .icon-folder-close-alt {
839
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf114;');
840
- }
841
- .icon-folder-open-alt {
842
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf115;');
843
- }
844
- .icon-expand-alt {
845
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf116;');
846
- }
847
- .icon-collapse-alt {
848
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf117;');
849
- }
850
- .icon-smile {
851
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf118;');
852
- }
853
- .icon-frown {
854
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf119;');
855
- }
856
- .icon-meh {
857
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11a;');
858
- }
859
- .icon-gamepad {
860
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11b;');
861
- }
862
- .icon-keyboard {
863
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11c;');
864
- }
865
- .icon-flag-alt {
866
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11d;');
867
- }
868
- .icon-flag-checkered {
869
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11e;');
870
- }
871
- .icon-terminal {
872
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf120;');
873
- }
874
- .icon-code {
875
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf121;');
876
- }
877
- .icon-reply-all {
878
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf122;');
879
- }
880
- .icon-mail-reply-all {
881
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf122;');
882
- }
883
- .icon-star-half-empty {
884
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;');
885
- }
886
- .icon-star-half-full {
887
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;');
888
- }
889
- .icon-location-arrow {
890
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf124;');
891
- }
892
- .icon-crop {
893
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf125;');
894
- }
895
- .icon-code-fork {
896
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf126;');
897
- }
898
- .icon-unlink {
899
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;');
900
- }
901
- .icon-question {
902
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf128;');
903
- }
904
- .icon-info {
905
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;');
906
- }
907
- .icon-exclamation {
908
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;');
909
- }
910
- .icon-superscript {
911
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12b;');
912
- }
913
- .icon-subscript {
914
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12c;');
915
- }
916
- .icon-eraser {
917
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12d;');
918
- }
919
- .icon-puzzle-piece {
920
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12e;');
921
- }
922
- .icon-microphone {
923
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf130;');
924
- }
925
- .icon-microphone-off {
926
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf131;');
927
- }
928
- .icon-shield {
929
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf132;');
930
- }
931
- .icon-calendar-empty {
932
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf133;');
933
- }
934
- .icon-fire-extinguisher {
935
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf134;');
936
- }
937
- .icon-rocket {
938
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf135;');
939
- }
940
- .icon-maxcdn {
941
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf136;');
942
- }
943
- .icon-chevron-sign-left {
944
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf137;');
945
- }
946
- .icon-chevron-sign-right {
947
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf138;');
948
- }
949
- .icon-chevron-sign-up {
950
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf139;');
951
- }
952
- .icon-chevron-sign-down {
953
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13a;');
954
- }
955
- .icon-html5 {
956
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;');
957
- }
958
- .icon-css3 {
959
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;');
960
- }
961
- .icon-anchor {
962
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13d;');
963
- }
964
- .icon-unlock-alt {
965
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13e;');
966
- }
967
- .icon-bullseye {
968
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf140;');
969
- }
970
- .icon-ellipsis-horizontal {
971
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;');
972
- }
973
- .icon-ellipsis-vertical {
974
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf142;');
975
- }
976
- .icon-rss-sign {
977
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf143;');
978
- }
979
- .icon-play-sign {
980
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf144;');
981
- }
982
- .icon-ticket {
983
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf145;');
984
- }
985
- .icon-minus-sign-alt {
986
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf146;');
987
- }
988
- .icon-check-minus {
989
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf147;');
990
- }
991
- .icon-level-up {
992
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf148;');
993
- }
994
- .icon-level-down {
995
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf149;');
996
- }
997
- .icon-check-sign {
998
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14a;');
999
- }
1000
- .icon-edit-sign {
1001
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14b;');
1002
- }
1003
- .icon-external-link-sign {
1004
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14c;');
1005
- }
1006
- .icon-share-sign {
1007
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14d;');
1008
- }
1009
- .icon-compass {
1010
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14e;');
1011
- }
1012
- .icon-collapse {
1013
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf150;');
1014
- }
1015
- .icon-collapse-top {
1016
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf151;');
1017
- }
1018
- .icon-expand {
1019
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf152;');
1020
- }
1021
- .icon-eur {
1022
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf153;');
1023
- }
1024
- .icon-euro {
1025
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf153;');
1026
- }
1027
- .icon-gbp {
1028
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf154;');
1029
- }
1030
- .icon-usd {
1031
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf155;');
1032
- }
1033
- .icon-dollar {
1034
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf155;');
1035
- }
1036
- .icon-inr {
1037
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf156;');
1038
- }
1039
- .icon-rupee {
1040
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf156;');
1041
- }
1042
- .icon-jpy {
1043
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf157;');
1044
- }
1045
- .icon-yen {
1046
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf157;');
1047
- }
1048
- .icon-cny {
1049
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf158;');
1050
- }
1051
- .icon-renminbi {
1052
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf158;');
1053
- }
1054
- .icon-krw {
1055
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf159;');
1056
- }
1057
- .icon-won {
1058
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf159;');
1059
- }
1060
- .icon-btc {
1061
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15a;');
1062
- }
1063
- .icon-bitcoin {
1064
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15a;');
1065
- }
1066
- .icon-file {
1067
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15b;');
1068
- }
1069
- .icon-file-text {
1070
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15c;');
1071
- }
1072
- .icon-sort-by-alphabet {
1073
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15d;');
1074
- }
1075
- .icon-sort-by-alphabet-alt {
1076
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15e;');
1077
- }
1078
- .icon-sort-by-attributes {
1079
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf160;');
1080
- }
1081
- .icon-sort-by-attributes-alt {
1082
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf161;');
1083
- }
1084
- .icon-sort-by-order {
1085
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf162;');
1086
- }
1087
- .icon-sort-by-order-alt {
1088
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf163;');
1089
- }
1090
- .icon-thumbs-up {
1091
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf164;');
1092
- }
1093
- .icon-thumbs-down {
1094
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf165;');
1095
- }
1096
- .icon-youtube-sign {
1097
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf166;');
1098
- }
1099
- .icon-youtube {
1100
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf167;');
1101
- }
1102
- .icon-xing {
1103
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf168;');
1104
- }
1105
- .icon-xing-sign {
1106
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf169;');
1107
- }
1108
- .icon-youtube-play {
1109
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16a;');
1110
- }
1111
- .icon-dropbox {
1112
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16b;');
1113
- }
1114
- .icon-stackexchange {
1115
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16c;');
1116
- }
1117
- .icon-instagram {
1118
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16d;');
1119
- }
1120
- .icon-flickr {
1121
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16e;');
1122
- }
1123
- .icon-adn {
1124
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf170;');
1125
- }
1126
- .icon-bitbucket {
1127
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf171;');
1128
- }
1129
- .icon-bitbucket-sign {
1130
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf172;');
1131
- }
1132
- .icon-tumblr {
1133
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf173;');
1134
- }
1135
- .icon-tumblr-sign {
1136
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf174;');
1137
- }
1138
- .icon-long-arrow-down {
1139
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf175;');
1140
- }
1141
- .icon-long-arrow-up {
1142
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf176;');
1143
- }
1144
- .icon-long-arrow-left {
1145
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf177;');
1146
- }
1147
- .icon-long-arrow-right {
1148
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf178;');
1149
- }
1150
- .icon-apple {
1151
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf179;');
1152
- }
1153
- .icon-windows {
1154
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17a;');
1155
- }
1156
- .icon-android {
1157
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17b;');
1158
- }
1159
- .icon-linux {
1160
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17c;');
1161
- }
1162
- .icon-dribbble {
1163
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17d;');
1164
- }
1165
- .icon-skype {
1166
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17e;');
1167
- }
1168
- .icon-foursquare {
1169
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf180;');
1170
- }
1171
- .icon-trello {
1172
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf181;');
1173
- }
1174
- .icon-female {
1175
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf182;');
1176
- }
1177
- .icon-male {
1178
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf183;');
1179
- }
1180
- .icon-gittip {
1181
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf184;');
1182
- }
1183
- .icon-sun {
1184
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf185;');
1185
- }
1186
- .icon-moon {
1187
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf186;');
1188
- }
1189
- .icon-archive {
1190
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf187;');
1191
- }
1192
- .icon-bug {
1193
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf188;');
1194
- }
1195
- .icon-vk {
1196
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf189;');
1197
- }
1198
- .icon-weibo {
1199
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf18a;');
1200
- }
1201
- .icon-renren {
1202
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf18b;');
1203
- }