spree_core 2.1.12 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +4 -4
  2. data/app/helpers/spree/base_helper.rb +4 -7
  3. data/app/helpers/spree/products_helper.rb +11 -9
  4. data/app/helpers/spree/store_helper.rb +5 -0
  5. data/app/models/spree/ability.rb +4 -0
  6. data/app/models/spree/address.rb +6 -6
  7. data/app/models/spree/adjustment.rb +40 -61
  8. data/app/models/spree/app_configuration.rb +1 -14
  9. data/app/models/spree/calculator.rb +12 -4
  10. data/app/models/spree/calculator/default_tax.rb +42 -38
  11. data/app/models/spree/calculator/flat_percent_item_total.rb +2 -4
  12. data/app/models/spree/calculator/free_shipping.rb +5 -2
  13. data/app/models/spree/calculator/percent_on_line_item.rb +15 -0
  14. data/app/models/spree/calculator/percent_per_item.rb +3 -0
  15. data/app/models/spree/classification.rb +3 -2
  16. data/app/models/spree/credit_card.rb +7 -25
  17. data/app/models/spree/gateway/bogus.rb +5 -5
  18. data/app/models/spree/gateway/bogus_simple.rb +0 -8
  19. data/app/models/spree/image.rb +0 -9
  20. data/app/models/spree/inventory_unit.rb +10 -4
  21. data/app/models/spree/item_adjustments.rb +65 -0
  22. data/app/models/spree/legacy_user.rb +1 -0
  23. data/app/models/spree/line_item.rb +33 -13
  24. data/app/models/spree/option_type.rb +2 -2
  25. data/app/models/spree/option_value.rb +1 -1
  26. data/app/models/spree/order.rb +109 -89
  27. data/app/models/spree/order/checkout.rb +48 -0
  28. data/app/models/spree/order_contents.rb +72 -37
  29. data/app/models/spree/order_inventory.rb +65 -68
  30. data/app/models/spree/order_populator.rb +3 -17
  31. data/app/models/spree/order_updater.rb +63 -44
  32. data/app/models/spree/payment.rb +20 -5
  33. data/app/models/spree/payment/processing.rb +19 -25
  34. data/app/models/spree/payment_capture_event.rb +9 -0
  35. data/app/models/spree/payment_method/check.rb +0 -2
  36. data/app/models/spree/price.rb +1 -1
  37. data/app/models/spree/product.rb +14 -16
  38. data/app/models/spree/product/scopes.rb +4 -6
  39. data/app/models/spree/product_option_type.rb +2 -2
  40. data/app/models/spree/product_property.rb +2 -2
  41. data/app/models/spree/promotion.rb +71 -50
  42. data/app/models/spree/promotion/actions/create_adjustment.rb +31 -32
  43. data/app/models/spree/promotion/actions/create_item_adjustments.rb +83 -0
  44. data/app/models/spree/promotion/actions/free_shipping.rb +36 -0
  45. data/app/models/spree/promotion/rules/first_order.rb +4 -0
  46. data/app/models/spree/promotion/rules/item_total.rb +5 -1
  47. data/app/models/spree/promotion/rules/product.rb +4 -0
  48. data/app/models/spree/promotion/rules/user.rb +5 -6
  49. data/app/models/spree/promotion/rules/user_logged_in.rb +4 -0
  50. data/app/models/spree/promotion_action.rb +1 -5
  51. data/app/models/spree/promotion_handler/cart.rb +38 -0
  52. data/app/models/spree/promotion_handler/coupon.rb +76 -0
  53. data/app/models/spree/promotion_handler/free_shipping.rb +31 -0
  54. data/app/models/spree/promotion_handler/page.rb +24 -0
  55. data/app/models/spree/promotion_rule.rb +15 -7
  56. data/app/models/spree/property.rb +1 -1
  57. data/app/models/spree/return_authorization.rb +7 -1
  58. data/app/models/spree/shipment.rb +113 -49
  59. data/app/models/spree/shipping_calculator.rb +4 -5
  60. data/app/models/spree/shipping_category.rb +2 -2
  61. data/app/models/spree/shipping_method.rb +12 -6
  62. data/app/models/spree/shipping_rate.rb +27 -7
  63. data/app/models/spree/stock/availability_validator.rb +1 -1
  64. data/app/models/spree/stock/estimator.rb +13 -1
  65. data/app/models/spree/stock/package.rb +11 -7
  66. data/app/models/spree/stock/packer.rb +3 -3
  67. data/app/models/spree/stock/quantifier.rb +9 -1
  68. data/app/models/spree/stock_item.rb +11 -6
  69. data/app/models/spree/stock_movement.rb +1 -2
  70. data/app/models/spree/tax_category.rb +6 -1
  71. data/app/models/spree/tax_rate.rb +57 -49
  72. data/app/models/spree/taxon.rb +10 -5
  73. data/app/models/spree/taxonomy.rb +5 -2
  74. data/app/models/spree/variant.rb +33 -16
  75. data/app/models/spree/zone.rb +24 -24
  76. data/app/views/spree/shared/_routes.html.erb +3 -0
  77. data/config/locales/en.yml +42 -26
  78. data/db/migrate/20130213191427_create_default_stock.rb +3 -3
  79. data/db/migrate/20130413230529_add_name_to_spree_credit_cards.rb +5 -0
  80. data/db/migrate/20130414000512_update_name_fields_on_spree_credit_cards.rb +13 -0
  81. data/db/migrate/20130417120035_update_adjustment_states.rb +2 -2
  82. data/db/migrate/20130417123427_add_shipping_rates_to_shipments.rb +1 -1
  83. data/db/migrate/20130509115210_add_number_to_stock_transfer.rb +1 -1
  84. data/db/migrate/20130611054351_rename_shipping_methods_zones_to_spree_shipping_methods_zones.rb +0 -5
  85. data/db/migrate/20130802022321_migrate_tax_categories_to_line_items.rb +7 -5
  86. data/db/migrate/20130807024301_upgrade_adjustments.rb +39 -0
  87. data/db/migrate/20130807024302_rename_adjustment_fields.rb +17 -0
  88. data/db/migrate/20130813004002_add_shipment_total_to_spree_orders.rb +5 -0
  89. data/db/migrate/20130813232134_rename_activators_to_promotions.rb +5 -0
  90. data/db/migrate/20130815000406_add_adjustment_total_to_line_items.rb +5 -0
  91. data/db/migrate/20130815024413_add_adjustment_total_to_shipments.rb +5 -0
  92. data/db/migrate/20130828234942_add_tax_total_to_line_items_shipments_and_orders.rb +8 -0
  93. data/db/migrate/20130830001159_migrate_old_shipping_calculators.rb +1 -1
  94. data/db/migrate/20130903183026_add_code_to_spree_promotion_rules.rb +5 -0
  95. data/db/migrate/20130917024658_remove_promotions_event_name_field.rb +5 -0
  96. data/db/migrate/20130924040529_add_promo_total_to_line_items_and_shipments_and_orders.rb +7 -0
  97. data/db/migrate/20131001013410_remove_unused_credit_card_fields.rb +7 -3
  98. data/db/migrate/20131107132123_add_tax_category_to_variants.rb +6 -0
  99. data/db/migrate/20131118043959_add_included_to_adjustments.rb +5 -0
  100. data/db/migrate/20131118050234_rename_tax_total_fields.rb +11 -0
  101. data/db/migrate/20131118183431_add_line_item_id_to_spree_inventory_units.rb +21 -0
  102. data/db/migrate/20131127001002_add_position_to_classifications.rb +5 -0
  103. data/db/migrate/20131211112807_create_spree_orders_promotions.rb +8 -0
  104. data/db/migrate/20131218054603_add_item_count_to_spree_orders.rb +5 -0
  105. data/db/migrate/20140106224208_rename_permalink_to_slug_for_products.rb +5 -0
  106. data/db/migrate/20140124023232_rename_activator_id_in_rules_and_actions_to_promotion_id.rb +6 -0
  107. data/db/migrate/20140203161722_add_approver_id_and_approved_at_to_orders.rb +6 -0
  108. data/db/migrate/20140204115338_add_confirmation_delivered_to_spree_orders.rb +5 -0
  109. data/db/migrate/20140205120320_create_spree_payment_capture_events.rb +12 -0
  110. data/db/migrate/20140205144710_add_uncaptured_amount_to_payments.rb +5 -0
  111. data/db/migrate/20140207085910_add_tax_category_id_to_shipping_methods.rb +5 -0
  112. data/db/migrate/20140207093021_add_tax_rate_id_to_shipping_rates.rb +5 -0
  113. data/db/migrate/20140211040159_add_pre_tax_amount_to_line_items_and_shipments.rb +6 -0
  114. data/db/migrate/20140213184916_add_more_indexes.rb +13 -0
  115. data/db/migrate/20140219060952_add_considered_risky_to_orders.rb +5 -0
  116. data/lib/generators/spree/dummy/dummy_generator.rb +1 -6
  117. data/lib/generators/spree/install/install_generator.rb +6 -6
  118. data/lib/generators/spree/install/templates/{app/assets/javascripts/admin → vendor/assets/javascripts/spree/backend}/all.js +3 -3
  119. data/lib/generators/spree/install/templates/{app/assets/javascripts/store → vendor/assets/javascripts/spree/frontend}/all.js +3 -3
  120. data/lib/generators/spree/install/templates/{app/assets/stylesheets/store → vendor/assets/stylesheets/spree/backend}/all.css +3 -3
  121. data/lib/generators/spree/install/templates/{app/assets/stylesheets/admin → vendor/assets/stylesheets/spree/frontend}/all.css +3 -3
  122. data/lib/spree/core.rb +21 -8
  123. data/lib/spree/core/calculated_adjustments.rb +0 -40
  124. data/lib/spree/core/controller_helpers.rb +5 -0
  125. data/lib/spree/core/controller_helpers/auth.rb +2 -2
  126. data/lib/spree/core/controller_helpers/common.rb +0 -5
  127. data/lib/spree/core/controller_helpers/order.rb +8 -9
  128. data/lib/spree/core/engine.rb +10 -17
  129. data/lib/spree/core/permalinks.rb +1 -1
  130. data/lib/spree/core/product_duplicator.rb +3 -8
  131. data/lib/spree/core/user_address.rb +1 -1
  132. data/lib/spree/core/validators/email.rb +23 -1
  133. data/lib/spree/core/version.rb +1 -1
  134. data/lib/spree/money.rb +1 -1
  135. data/lib/spree/permitted_attributes.rb +2 -2
  136. data/lib/spree/testing_support/caching.rb +47 -0
  137. data/lib/spree/testing_support/factories/adjustment_factory.rb +11 -2
  138. data/lib/spree/testing_support/factories/credit_card_factory.rb +2 -1
  139. data/lib/spree/testing_support/factories/order_factory.rb +10 -5
  140. data/lib/spree/testing_support/factories/payment_factory.rb +2 -2
  141. data/lib/spree/testing_support/factories/payment_method_factory.rb +3 -3
  142. data/lib/spree/testing_support/factories/promotion_factory.rb +16 -1
  143. data/lib/spree/testing_support/factories/shipment_factory.rb +8 -4
  144. data/lib/spree/testing_support/factories/shipping_method_factory.rb +1 -3
  145. data/lib/spree/testing_support/factories/stock_factory.rb +1 -1
  146. data/lib/spree/testing_support/factories/tax_rate_factory.rb +2 -2
  147. data/lib/spree/testing_support/order_walkthrough.rb +1 -1
  148. data/lib/tasks/core.rake +2 -2
  149. data/vendor/assets/fonts/FontAwesome.otf +0 -0
  150. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  151. data/vendor/assets/fonts/fontawesome-webfont.svg +399 -0
  152. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  153. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  154. data/vendor/assets/stylesheets/font-awesome.scss +1475 -0
  155. metadata +73 -44
  156. data/app/assets/javascripts/admin/handlebar_extensions.js +0 -9
  157. data/app/helpers/spree/admin/adjustments_helper.rb +0 -26
  158. data/app/helpers/spree/admin/images_helper.rb +0 -18
  159. data/app/helpers/spree/promotion_rules_helper.rb +0 -13
  160. data/app/models/spree/activator.rb +0 -29
  161. data/app/models/spree/calculator/per_item.rb +0 -41
  162. data/app/models/spree/stock/remaining_packer.rb +0 -22
  163. data/app/views/spree/payments/_payment.html.erb +0 -18
  164. data/db/migrate/20131118041203_add_tax_total_to_spree_orders.rb +0 -5
  165. data/db/migrate/20131118043021_add_order_id_to_spree_adjustments.rb +0 -6
  166. data/db/migrate/20131118074808_add_included_to_spree_adjustments.rb +0 -5
  167. data/db/migrate/20140415041315_add_user_id_created_by_id_index_to_order.rb +0 -5
  168. data/lib/spree/core/gateway_error.rb +0 -5
  169. data/lib/spree/core/preference_rescue.rb +0 -25
  170. data/lib/spree/core/s3_support.rb +0 -25
  171. data/lib/spree/promo/coupon_applicator.rb +0 -71
  172. data/lib/spree/testing_support/factories/activator_factory.rb +0 -8
@@ -0,0 +1,1475 @@
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/davegandy
24
+ * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
+ */
26
+ /* FONT PATH
27
+ * -------------------------- */
28
+ @font-face {
29
+ font-family: 'FontAwesome';
30
+ src: asset-url('fontawesome-webfont.eot');
31
+ src: asset-url('fontawesome-webfont.eot?#iefix') format('embedded-opentype'), asset-url('fontawesome-webfont.woff') format('woff'), asset-url('fontawesome-webfont.ttf') format('truetype'), asset-url('fontawesome-webfont.svg#fontawesomeregular') format('svg');
32
+ font-weight: normal;
33
+ font-style: normal;
34
+ }
35
+ /* FONT AWESOME CORE
36
+ * -------------------------- */
37
+ [class^="icon-"],
38
+ [class*=" icon-"] {
39
+ font-weight: normal;
40
+ font-style: normal;
41
+ text-decoration: inherit;
42
+ -webkit-font-smoothing: antialiased;
43
+ -moz-osx-font-smoothing: grayscale;
44
+ *margin-right: .3em;
45
+ }
46
+ [class^="icon-"]:before,
47
+ [class*=" icon-"]:before {
48
+ font-family: FontAwesome;
49
+ text-decoration: inherit;
50
+ display: inline-block;
51
+ speak: none;
52
+ }
53
+ /* makes the font 33% larger relative to the icon container */
54
+ .icon-large:before {
55
+ vertical-align: -10%;
56
+ font-size: 1.3333333333333333em;
57
+ }
58
+ /* makes sure icons active on rollover in links */
59
+ a [class^="icon-"],
60
+ a [class*=" icon-"] {
61
+ display: inline;
62
+ }
63
+ /* increased font size for icon-large */
64
+ [class^="icon-"].icon-fixed-width,
65
+ [class*=" icon-"].icon-fixed-width {
66
+ display: inline-block;
67
+ width: 1.1428571428571428em;
68
+ text-align: right;
69
+ padding-right: 0.2857142857142857em;
70
+ }
71
+ [class^="icon-"].icon-fixed-width.icon-large,
72
+ [class*=" icon-"].icon-fixed-width.icon-large {
73
+ width: 1.4285714285714286em;
74
+ }
75
+ .icons-ul {
76
+ margin-left: 2.142857142857143em;
77
+ list-style-type: none;
78
+ }
79
+ .icons-ul > li {
80
+ position: relative;
81
+ }
82
+ .icons-ul .icon-li {
83
+ position: absolute;
84
+ left: -2.142857142857143em;
85
+ width: 2.142857142857143em;
86
+ text-align: center;
87
+ line-height: inherit;
88
+ }
89
+ [class^="icon-"].hide,
90
+ [class*=" icon-"].hide {
91
+ display: none;
92
+ }
93
+ .icon-muted {
94
+ color: #eeeeee;
95
+ }
96
+ .icon-light {
97
+ color: #ffffff;
98
+ }
99
+ .icon-dark {
100
+ color: #333333;
101
+ }
102
+ .icon-border {
103
+ border: solid 1px #eeeeee;
104
+ padding: .2em .25em .15em;
105
+ -webkit-border-radius: 3px;
106
+ border-radius: 3px;
107
+ }
108
+ .icon-2x {
109
+ font-size: 2em;
110
+ }
111
+ .icon-2x.icon-border {
112
+ border-width: 2px;
113
+ -webkit-border-radius: 4px;
114
+ border-radius: 4px;
115
+ }
116
+ .icon-3x {
117
+ font-size: 3em;
118
+ }
119
+ .icon-3x.icon-border {
120
+ border-width: 3px;
121
+ -webkit-border-radius: 5px;
122
+ border-radius: 5px;
123
+ }
124
+ .icon-4x {
125
+ font-size: 4em;
126
+ }
127
+ .icon-4x.icon-border {
128
+ border-width: 4px;
129
+ -webkit-border-radius: 6px;
130
+ border-radius: 6px;
131
+ }
132
+ .icon-5x {
133
+ font-size: 5em;
134
+ }
135
+ .icon-5x.icon-border {
136
+ border-width: 5px;
137
+ -webkit-border-radius: 7px;
138
+ border-radius: 7px;
139
+ }
140
+ .pull-right {
141
+ float: right;
142
+ }
143
+ .pull-left {
144
+ float: left;
145
+ }
146
+ [class^="icon-"].pull-left,
147
+ [class*=" icon-"].pull-left {
148
+ margin-right: .3em;
149
+ }
150
+ [class^="icon-"].pull-right,
151
+ [class*=" icon-"].pull-right {
152
+ margin-left: .3em;
153
+ }
154
+ /* BOOTSTRAP SPECIFIC CLASSES
155
+ * -------------------------- */
156
+ /* Bootstrap 2.0 sprites.less reset */
157
+ [class^="icon-"],
158
+ [class*=" icon-"] {
159
+ display: inline;
160
+ width: auto;
161
+ height: auto;
162
+ line-height: normal;
163
+ vertical-align: baseline;
164
+ background-image: none;
165
+ background-position: 0% 0%;
166
+ background-repeat: repeat;
167
+ margin-top: 0;
168
+ }
169
+ /* more sprites.less reset */
170
+ .icon-white,
171
+ .nav-pills > .active > a > [class^="icon-"],
172
+ .nav-pills > .active > a > [class*=" icon-"],
173
+ .nav-list > .active > a > [class^="icon-"],
174
+ .nav-list > .active > a > [class*=" icon-"],
175
+ .navbar-inverse .nav > .active > a > [class^="icon-"],
176
+ .navbar-inverse .nav > .active > a > [class*=" icon-"],
177
+ .dropdown-menu > li > a:hover > [class^="icon-"],
178
+ .dropdown-menu > li > a:hover > [class*=" icon-"],
179
+ .dropdown-menu > .active > a > [class^="icon-"],
180
+ .dropdown-menu > .active > a > [class*=" icon-"],
181
+ .dropdown-submenu:hover > a > [class^="icon-"],
182
+ .dropdown-submenu:hover > a > [class*=" icon-"] {
183
+ background-image: none;
184
+ }
185
+ /* keeps Bootstrap styles with and without icons the same */
186
+ .btn [class^="icon-"].icon-large,
187
+ .nav [class^="icon-"].icon-large,
188
+ .btn [class*=" icon-"].icon-large,
189
+ .nav [class*=" icon-"].icon-large {
190
+ line-height: .9em;
191
+ }
192
+ .btn [class^="icon-"].icon-spin,
193
+ .nav [class^="icon-"].icon-spin,
194
+ .btn [class*=" icon-"].icon-spin,
195
+ .nav [class*=" icon-"].icon-spin {
196
+ display: inline-block;
197
+ }
198
+ .nav-tabs [class^="icon-"],
199
+ .nav-pills [class^="icon-"],
200
+ .nav-tabs [class*=" icon-"],
201
+ .nav-pills [class*=" icon-"],
202
+ .nav-tabs [class^="icon-"].icon-large,
203
+ .nav-pills [class^="icon-"].icon-large,
204
+ .nav-tabs [class*=" icon-"].icon-large,
205
+ .nav-pills [class*=" icon-"].icon-large {
206
+ line-height: .9em;
207
+ }
208
+ .btn [class^="icon-"].pull-left.icon-2x,
209
+ .btn [class*=" icon-"].pull-left.icon-2x,
210
+ .btn [class^="icon-"].pull-right.icon-2x,
211
+ .btn [class*=" icon-"].pull-right.icon-2x {
212
+ margin-top: .18em;
213
+ }
214
+ .btn [class^="icon-"].icon-spin.icon-large,
215
+ .btn [class*=" icon-"].icon-spin.icon-large {
216
+ line-height: .8em;
217
+ }
218
+ .btn.btn-small [class^="icon-"].pull-left.icon-2x,
219
+ .btn.btn-small [class*=" icon-"].pull-left.icon-2x,
220
+ .btn.btn-small [class^="icon-"].pull-right.icon-2x,
221
+ .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
222
+ margin-top: .25em;
223
+ }
224
+ .btn.btn-large [class^="icon-"],
225
+ .btn.btn-large [class*=" icon-"] {
226
+ margin-top: 0;
227
+ }
228
+ .btn.btn-large [class^="icon-"].pull-left.icon-2x,
229
+ .btn.btn-large [class*=" icon-"].pull-left.icon-2x,
230
+ .btn.btn-large [class^="icon-"].pull-right.icon-2x,
231
+ .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
232
+ margin-top: .05em;
233
+ }
234
+ .btn.btn-large [class^="icon-"].pull-left.icon-2x,
235
+ .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
236
+ margin-right: .2em;
237
+ }
238
+ .btn.btn-large [class^="icon-"].pull-right.icon-2x,
239
+ .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
240
+ margin-left: .2em;
241
+ }
242
+ /* Fixes alignment in nav lists */
243
+ .nav-list [class^="icon-"],
244
+ .nav-list [class*=" icon-"] {
245
+ line-height: inherit;
246
+ }
247
+ /* EXTRAS
248
+ * -------------------------- */
249
+ /* Stacked and layered icon */
250
+ .icon-stack {
251
+ position: relative;
252
+ display: inline-block;
253
+ width: 2em;
254
+ height: 2em;
255
+ line-height: 2em;
256
+ vertical-align: -35%;
257
+ }
258
+ .icon-stack [class^="icon-"],
259
+ .icon-stack [class*=" icon-"] {
260
+ display: block;
261
+ text-align: center;
262
+ position: absolute;
263
+ width: 100%;
264
+ height: 100%;
265
+ font-size: 1em;
266
+ line-height: inherit;
267
+ *line-height: 2em;
268
+ }
269
+ .icon-stack .icon-stack-base {
270
+ font-size: 2em;
271
+ *line-height: 1em;
272
+ }
273
+ /* Animated rotating icon */
274
+ .icon-spin {
275
+ display: inline-block;
276
+ -moz-animation: spin 2s infinite linear;
277
+ -o-animation: spin 2s infinite linear;
278
+ -webkit-animation: spin 2s infinite linear;
279
+ animation: spin 2s infinite linear;
280
+ }
281
+ /* Prevent stack and spinners from being taken inline when inside a link */
282
+ a .icon-stack,
283
+ a .icon-spin {
284
+ display: inline-block;
285
+ text-decoration: none;
286
+ }
287
+ @-moz-keyframes spin {
288
+ 0% {
289
+ -moz-transform: rotate(0deg);
290
+ }
291
+ 100% {
292
+ -moz-transform: rotate(359deg);
293
+ }
294
+ }
295
+ @-webkit-keyframes spin {
296
+ 0% {
297
+ -webkit-transform: rotate(0deg);
298
+ }
299
+ 100% {
300
+ -webkit-transform: rotate(359deg);
301
+ }
302
+ }
303
+ @-o-keyframes spin {
304
+ 0% {
305
+ -o-transform: rotate(0deg);
306
+ }
307
+ 100% {
308
+ -o-transform: rotate(359deg);
309
+ }
310
+ }
311
+ @-ms-keyframes spin {
312
+ 0% {
313
+ -ms-transform: rotate(0deg);
314
+ }
315
+ 100% {
316
+ -ms-transform: rotate(359deg);
317
+ }
318
+ }
319
+ @keyframes spin {
320
+ 0% {
321
+ transform: rotate(0deg);
322
+ }
323
+ 100% {
324
+ transform: rotate(359deg);
325
+ }
326
+ }
327
+ /* Icon rotations and mirroring */
328
+ .icon-rotate-90:before {
329
+ -webkit-transform: rotate(90deg);
330
+ -moz-transform: rotate(90deg);
331
+ -ms-transform: rotate(90deg);
332
+ -o-transform: rotate(90deg);
333
+ transform: rotate(90deg);
334
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
335
+ }
336
+ .icon-rotate-180:before {
337
+ -webkit-transform: rotate(180deg);
338
+ -moz-transform: rotate(180deg);
339
+ -ms-transform: rotate(180deg);
340
+ -o-transform: rotate(180deg);
341
+ transform: rotate(180deg);
342
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
343
+ }
344
+ .icon-rotate-270:before {
345
+ -webkit-transform: rotate(270deg);
346
+ -moz-transform: rotate(270deg);
347
+ -ms-transform: rotate(270deg);
348
+ -o-transform: rotate(270deg);
349
+ transform: rotate(270deg);
350
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
351
+ }
352
+ .icon-flip-horizontal:before {
353
+ -webkit-transform: scale(-1, 1);
354
+ -moz-transform: scale(-1, 1);
355
+ -ms-transform: scale(-1, 1);
356
+ -o-transform: scale(-1, 1);
357
+ transform: scale(-1, 1);
358
+ }
359
+ .icon-flip-vertical:before {
360
+ -webkit-transform: scale(1, -1);
361
+ -moz-transform: scale(1, -1);
362
+ -ms-transform: scale(1, -1);
363
+ -o-transform: scale(1, -1);
364
+ transform: scale(1, -1);
365
+ }
366
+ /* ensure rotation occurs inside anchor tags */
367
+ a .icon-rotate-90:before,
368
+ a .icon-rotate-180:before,
369
+ a .icon-rotate-270:before,
370
+ a .icon-flip-horizontal:before,
371
+ a .icon-flip-vertical:before {
372
+ display: inline-block;
373
+ }
374
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
375
+ readers do not read off random characters that represent icons */
376
+ .icon-glass:before {
377
+ content: "\f000";
378
+ }
379
+ .icon-music:before {
380
+ content: "\f001";
381
+ }
382
+ .icon-search:before {
383
+ content: "\f002";
384
+ }
385
+ .icon-envelope-alt:before {
386
+ content: "\f003";
387
+ }
388
+ .icon-heart:before {
389
+ content: "\f004";
390
+ }
391
+ .icon-star:before {
392
+ content: "\f005";
393
+ }
394
+ .icon-star-empty:before {
395
+ content: "\f006";
396
+ }
397
+ .icon-user:before {
398
+ content: "\f007";
399
+ }
400
+ .icon-film:before {
401
+ content: "\f008";
402
+ }
403
+ .icon-th-large:before {
404
+ content: "\f009";
405
+ }
406
+ .icon-th:before {
407
+ content: "\f00a";
408
+ }
409
+ .icon-th-list:before {
410
+ content: "\f00b";
411
+ }
412
+ .icon-ok:before {
413
+ content: "\f00c";
414
+ }
415
+ .icon-remove:before {
416
+ content: "\f00d";
417
+ }
418
+ .icon-zoom-in:before {
419
+ content: "\f00e";
420
+ }
421
+ .icon-zoom-out:before {
422
+ content: "\f010";
423
+ }
424
+ .icon-power-off:before,
425
+ .icon-off:before {
426
+ content: "\f011";
427
+ }
428
+ .icon-signal:before {
429
+ content: "\f012";
430
+ }
431
+ .icon-gear:before,
432
+ .icon-cog:before {
433
+ content: "\f013";
434
+ }
435
+ .icon-trash:before {
436
+ content: "\f014";
437
+ }
438
+ .icon-home:before {
439
+ content: "\f015";
440
+ }
441
+ .icon-file-alt:before {
442
+ content: "\f016";
443
+ }
444
+ .icon-time:before {
445
+ content: "\f017";
446
+ }
447
+ .icon-road:before {
448
+ content: "\f018";
449
+ }
450
+ .icon-download-alt:before {
451
+ content: "\f019";
452
+ }
453
+ .icon-download:before {
454
+ content: "\f01a";
455
+ }
456
+ .icon-upload:before {
457
+ content: "\f01b";
458
+ }
459
+ .icon-inbox:before {
460
+ content: "\f01c";
461
+ }
462
+ .icon-play-circle:before {
463
+ content: "\f01d";
464
+ }
465
+ .icon-rotate-right:before,
466
+ .icon-repeat:before {
467
+ content: "\f01e";
468
+ }
469
+ .icon-refresh:before {
470
+ content: "\f021";
471
+ }
472
+ .icon-list-alt:before {
473
+ content: "\f022";
474
+ }
475
+ .icon-lock:before {
476
+ content: "\f023";
477
+ }
478
+ .icon-flag:before {
479
+ content: "\f024";
480
+ }
481
+ .icon-headphones:before {
482
+ content: "\f025";
483
+ }
484
+ .icon-volume-off:before {
485
+ content: "\f026";
486
+ }
487
+ .icon-volume-down:before {
488
+ content: "\f027";
489
+ }
490
+ .icon-volume-up:before {
491
+ content: "\f028";
492
+ }
493
+ .icon-qrcode:before {
494
+ content: "\f029";
495
+ }
496
+ .icon-barcode:before {
497
+ content: "\f02a";
498
+ }
499
+ .icon-tag:before {
500
+ content: "\f02b";
501
+ }
502
+ .icon-tags:before {
503
+ content: "\f02c";
504
+ }
505
+ .icon-book:before {
506
+ content: "\f02d";
507
+ }
508
+ .icon-bookmark:before {
509
+ content: "\f02e";
510
+ }
511
+ .icon-print:before {
512
+ content: "\f02f";
513
+ }
514
+ .icon-camera:before {
515
+ content: "\f030";
516
+ }
517
+ .icon-font:before {
518
+ content: "\f031";
519
+ }
520
+ .icon-bold:before {
521
+ content: "\f032";
522
+ }
523
+ .icon-italic:before {
524
+ content: "\f033";
525
+ }
526
+ .icon-text-height:before {
527
+ content: "\f034";
528
+ }
529
+ .icon-text-width:before {
530
+ content: "\f035";
531
+ }
532
+ .icon-align-left:before {
533
+ content: "\f036";
534
+ }
535
+ .icon-align-center:before {
536
+ content: "\f037";
537
+ }
538
+ .icon-align-right:before {
539
+ content: "\f038";
540
+ }
541
+ .icon-align-justify:before {
542
+ content: "\f039";
543
+ }
544
+ .icon-list:before {
545
+ content: "\f03a";
546
+ }
547
+ .icon-indent-left:before {
548
+ content: "\f03b";
549
+ }
550
+ .icon-indent-right:before {
551
+ content: "\f03c";
552
+ }
553
+ .icon-facetime-video:before {
554
+ content: "\f03d";
555
+ }
556
+ .icon-picture:before {
557
+ content: "\f03e";
558
+ }
559
+ .icon-pencil:before {
560
+ content: "\f040";
561
+ }
562
+ .icon-map-marker:before {
563
+ content: "\f041";
564
+ }
565
+ .icon-adjust:before {
566
+ content: "\f042";
567
+ }
568
+ .icon-tint:before {
569
+ content: "\f043";
570
+ }
571
+ .icon-edit:before {
572
+ content: "\f044";
573
+ }
574
+ .icon-share:before {
575
+ content: "\f045";
576
+ }
577
+ .icon-check:before {
578
+ content: "\f046";
579
+ }
580
+ .icon-move:before {
581
+ content: "\f047";
582
+ }
583
+ .icon-step-backward:before {
584
+ content: "\f048";
585
+ }
586
+ .icon-fast-backward:before {
587
+ content: "\f049";
588
+ }
589
+ .icon-backward:before {
590
+ content: "\f04a";
591
+ }
592
+ .icon-play:before {
593
+ content: "\f04b";
594
+ }
595
+ .icon-pause:before {
596
+ content: "\f04c";
597
+ }
598
+ .icon-stop:before {
599
+ content: "\f04d";
600
+ }
601
+ .icon-forward:before {
602
+ content: "\f04e";
603
+ }
604
+ .icon-fast-forward:before {
605
+ content: "\f050";
606
+ }
607
+ .icon-step-forward:before {
608
+ content: "\f051";
609
+ }
610
+ .icon-eject:before {
611
+ content: "\f052";
612
+ }
613
+ .icon-chevron-left:before {
614
+ content: "\f053";
615
+ }
616
+ .icon-chevron-right:before {
617
+ content: "\f054";
618
+ }
619
+ .icon-plus-sign:before {
620
+ content: "\f055";
621
+ }
622
+ .icon-minus-sign:before {
623
+ content: "\f056";
624
+ }
625
+ .icon-remove-sign:before {
626
+ content: "\f057";
627
+ }
628
+ .icon-ok-sign:before {
629
+ content: "\f058";
630
+ }
631
+ .icon-question-sign:before {
632
+ content: "\f059";
633
+ }
634
+ .icon-info-sign:before {
635
+ content: "\f05a";
636
+ }
637
+ .icon-screenshot:before {
638
+ content: "\f05b";
639
+ }
640
+ .icon-remove-circle:before {
641
+ content: "\f05c";
642
+ }
643
+ .icon-ok-circle:before {
644
+ content: "\f05d";
645
+ }
646
+ .icon-ban-circle:before {
647
+ content: "\f05e";
648
+ }
649
+ .icon-arrow-left:before {
650
+ content: "\f060";
651
+ }
652
+ .icon-arrow-right:before {
653
+ content: "\f061";
654
+ }
655
+ .icon-arrow-up:before {
656
+ content: "\f062";
657
+ }
658
+ .icon-arrow-down:before {
659
+ content: "\f063";
660
+ }
661
+ .icon-mail-forward:before,
662
+ .icon-share-alt:before {
663
+ content: "\f064";
664
+ }
665
+ .icon-resize-full:before {
666
+ content: "\f065";
667
+ }
668
+ .icon-resize-small:before {
669
+ content: "\f066";
670
+ }
671
+ .icon-plus:before {
672
+ content: "\f067";
673
+ }
674
+ .icon-minus:before {
675
+ content: "\f068";
676
+ }
677
+ .icon-asterisk:before {
678
+ content: "\f069";
679
+ }
680
+ .icon-exclamation-sign:before {
681
+ content: "\f06a";
682
+ }
683
+ .icon-gift:before {
684
+ content: "\f06b";
685
+ }
686
+ .icon-leaf:before {
687
+ content: "\f06c";
688
+ }
689
+ .icon-fire:before {
690
+ content: "\f06d";
691
+ }
692
+ .icon-eye-open:before {
693
+ content: "\f06e";
694
+ }
695
+ .icon-eye-close:before {
696
+ content: "\f070";
697
+ }
698
+ .icon-warning-sign:before {
699
+ content: "\f071";
700
+ }
701
+ .icon-plane:before {
702
+ content: "\f072";
703
+ }
704
+ .icon-calendar:before {
705
+ content: "\f073";
706
+ }
707
+ .icon-random:before {
708
+ content: "\f074";
709
+ }
710
+ .icon-comment:before {
711
+ content: "\f075";
712
+ }
713
+ .icon-magnet:before {
714
+ content: "\f076";
715
+ }
716
+ .icon-chevron-up:before {
717
+ content: "\f077";
718
+ }
719
+ .icon-chevron-down:before {
720
+ content: "\f078";
721
+ }
722
+ .icon-retweet:before {
723
+ content: "\f079";
724
+ }
725
+ .icon-shopping-cart:before {
726
+ content: "\f07a";
727
+ }
728
+ .icon-folder-close:before {
729
+ content: "\f07b";
730
+ }
731
+ .icon-folder-open:before {
732
+ content: "\f07c";
733
+ }
734
+ .icon-resize-vertical:before {
735
+ content: "\f07d";
736
+ }
737
+ .icon-resize-horizontal:before {
738
+ content: "\f07e";
739
+ }
740
+ .icon-bar-chart:before {
741
+ content: "\f080";
742
+ }
743
+ .icon-twitter-sign:before {
744
+ content: "\f081";
745
+ }
746
+ .icon-facebook-sign:before {
747
+ content: "\f082";
748
+ }
749
+ .icon-camera-retro:before {
750
+ content: "\f083";
751
+ }
752
+ .icon-key:before {
753
+ content: "\f084";
754
+ }
755
+ .icon-gears:before,
756
+ .icon-cogs:before {
757
+ content: "\f085";
758
+ }
759
+ .icon-comments:before {
760
+ content: "\f086";
761
+ }
762
+ .icon-thumbs-up-alt:before {
763
+ content: "\f087";
764
+ }
765
+ .icon-thumbs-down-alt:before {
766
+ content: "\f088";
767
+ }
768
+ .icon-star-half:before {
769
+ content: "\f089";
770
+ }
771
+ .icon-heart-empty:before {
772
+ content: "\f08a";
773
+ }
774
+ .icon-signout:before {
775
+ content: "\f08b";
776
+ }
777
+ .icon-linkedin-sign:before {
778
+ content: "\f08c";
779
+ }
780
+ .icon-pushpin:before {
781
+ content: "\f08d";
782
+ }
783
+ .icon-external-link:before {
784
+ content: "\f08e";
785
+ }
786
+ .icon-signin:before {
787
+ content: "\f090";
788
+ }
789
+ .icon-trophy:before {
790
+ content: "\f091";
791
+ }
792
+ .icon-github-sign:before {
793
+ content: "\f092";
794
+ }
795
+ .icon-upload-alt:before {
796
+ content: "\f093";
797
+ }
798
+ .icon-lemon:before {
799
+ content: "\f094";
800
+ }
801
+ .icon-phone:before {
802
+ content: "\f095";
803
+ }
804
+ .icon-unchecked:before,
805
+ .icon-check-empty:before {
806
+ content: "\f096";
807
+ }
808
+ .icon-bookmark-empty:before {
809
+ content: "\f097";
810
+ }
811
+ .icon-phone-sign:before {
812
+ content: "\f098";
813
+ }
814
+ .icon-twitter:before {
815
+ content: "\f099";
816
+ }
817
+ .icon-facebook:before {
818
+ content: "\f09a";
819
+ }
820
+ .icon-github:before {
821
+ content: "\f09b";
822
+ }
823
+ .icon-unlock:before {
824
+ content: "\f09c";
825
+ }
826
+ .icon-credit-card:before {
827
+ content: "\f09d";
828
+ }
829
+ .icon-rss:before {
830
+ content: "\f09e";
831
+ }
832
+ .icon-hdd:before {
833
+ content: "\f0a0";
834
+ }
835
+ .icon-bullhorn:before {
836
+ content: "\f0a1";
837
+ }
838
+ .icon-bell:before {
839
+ content: "\f0a2";
840
+ }
841
+ .icon-certificate:before {
842
+ content: "\f0a3";
843
+ }
844
+ .icon-hand-right:before {
845
+ content: "\f0a4";
846
+ }
847
+ .icon-hand-left:before {
848
+ content: "\f0a5";
849
+ }
850
+ .icon-hand-up:before {
851
+ content: "\f0a6";
852
+ }
853
+ .icon-hand-down:before {
854
+ content: "\f0a7";
855
+ }
856
+ .icon-circle-arrow-left:before {
857
+ content: "\f0a8";
858
+ }
859
+ .icon-circle-arrow-right:before {
860
+ content: "\f0a9";
861
+ }
862
+ .icon-circle-arrow-up:before {
863
+ content: "\f0aa";
864
+ }
865
+ .icon-circle-arrow-down:before {
866
+ content: "\f0ab";
867
+ }
868
+ .icon-globe:before {
869
+ content: "\f0ac";
870
+ }
871
+ .icon-wrench:before {
872
+ content: "\f0ad";
873
+ }
874
+ .icon-tasks:before {
875
+ content: "\f0ae";
876
+ }
877
+ .icon-filter:before {
878
+ content: "\f0b0";
879
+ }
880
+ .icon-briefcase:before {
881
+ content: "\f0b1";
882
+ }
883
+ .icon-fullscreen:before {
884
+ content: "\f0b2";
885
+ }
886
+ .icon-group:before {
887
+ content: "\f0c0";
888
+ }
889
+ .icon-link:before {
890
+ content: "\f0c1";
891
+ }
892
+ .icon-cloud:before {
893
+ content: "\f0c2";
894
+ }
895
+ .icon-beaker:before {
896
+ content: "\f0c3";
897
+ }
898
+ .icon-cut:before {
899
+ content: "\f0c4";
900
+ }
901
+ .icon-copy:before {
902
+ content: "\f0c5";
903
+ }
904
+ .icon-paperclip:before,
905
+ .icon-paper-clip:before {
906
+ content: "\f0c6";
907
+ }
908
+ .icon-save:before {
909
+ content: "\f0c7";
910
+ }
911
+ .icon-sign-blank:before {
912
+ content: "\f0c8";
913
+ }
914
+ .icon-reorder:before {
915
+ content: "\f0c9";
916
+ }
917
+ .icon-list-ul:before {
918
+ content: "\f0ca";
919
+ }
920
+ .icon-list-ol:before {
921
+ content: "\f0cb";
922
+ }
923
+ .icon-strikethrough:before {
924
+ content: "\f0cc";
925
+ }
926
+ .icon-underline:before {
927
+ content: "\f0cd";
928
+ }
929
+ .icon-table:before {
930
+ content: "\f0ce";
931
+ }
932
+ .icon-magic:before {
933
+ content: "\f0d0";
934
+ }
935
+ .icon-truck:before {
936
+ content: "\f0d1";
937
+ }
938
+ .icon-pinterest:before {
939
+ content: "\f0d2";
940
+ }
941
+ .icon-pinterest-sign:before {
942
+ content: "\f0d3";
943
+ }
944
+ .icon-google-plus-sign:before {
945
+ content: "\f0d4";
946
+ }
947
+ .icon-google-plus:before {
948
+ content: "\f0d5";
949
+ }
950
+ .icon-money:before {
951
+ content: "\f0d6";
952
+ }
953
+ .icon-caret-down:before {
954
+ content: "\f0d7";
955
+ }
956
+ .icon-caret-up:before {
957
+ content: "\f0d8";
958
+ }
959
+ .icon-caret-left:before {
960
+ content: "\f0d9";
961
+ }
962
+ .icon-caret-right:before {
963
+ content: "\f0da";
964
+ }
965
+ .icon-columns:before {
966
+ content: "\f0db";
967
+ }
968
+ .icon-sort:before {
969
+ content: "\f0dc";
970
+ }
971
+ .icon-sort-down:before {
972
+ content: "\f0dd";
973
+ }
974
+ .icon-sort-up:before {
975
+ content: "\f0de";
976
+ }
977
+ .icon-envelope:before {
978
+ content: "\f0e0";
979
+ }
980
+ .icon-linkedin:before {
981
+ content: "\f0e1";
982
+ }
983
+ .icon-rotate-left:before,
984
+ .icon-undo:before {
985
+ content: "\f0e2";
986
+ }
987
+ .icon-legal:before {
988
+ content: "\f0e3";
989
+ }
990
+ .icon-dashboard:before {
991
+ content: "\f0e4";
992
+ }
993
+ .icon-comment-alt:before {
994
+ content: "\f0e5";
995
+ }
996
+ .icon-comments-alt:before {
997
+ content: "\f0e6";
998
+ }
999
+ .icon-bolt:before {
1000
+ content: "\f0e7";
1001
+ }
1002
+ .icon-sitemap:before {
1003
+ content: "\f0e8";
1004
+ }
1005
+ .icon-umbrella:before {
1006
+ content: "\f0e9";
1007
+ }
1008
+ .icon-paste:before {
1009
+ content: "\f0ea";
1010
+ }
1011
+ .icon-lightbulb:before {
1012
+ content: "\f0eb";
1013
+ }
1014
+ .icon-exchange:before {
1015
+ content: "\f0ec";
1016
+ }
1017
+ .icon-cloud-download:before {
1018
+ content: "\f0ed";
1019
+ }
1020
+ .icon-cloud-upload:before {
1021
+ content: "\f0ee";
1022
+ }
1023
+ .icon-user-md:before {
1024
+ content: "\f0f0";
1025
+ }
1026
+ .icon-stethoscope:before {
1027
+ content: "\f0f1";
1028
+ }
1029
+ .icon-suitcase:before {
1030
+ content: "\f0f2";
1031
+ }
1032
+ .icon-bell-alt:before {
1033
+ content: "\f0f3";
1034
+ }
1035
+ .icon-coffee:before {
1036
+ content: "\f0f4";
1037
+ }
1038
+ .icon-food:before {
1039
+ content: "\f0f5";
1040
+ }
1041
+ .icon-file-text-alt:before {
1042
+ content: "\f0f6";
1043
+ }
1044
+ .icon-building:before {
1045
+ content: "\f0f7";
1046
+ }
1047
+ .icon-hospital:before {
1048
+ content: "\f0f8";
1049
+ }
1050
+ .icon-ambulance:before {
1051
+ content: "\f0f9";
1052
+ }
1053
+ .icon-medkit:before {
1054
+ content: "\f0fa";
1055
+ }
1056
+ .icon-fighter-jet:before {
1057
+ content: "\f0fb";
1058
+ }
1059
+ .icon-beer:before {
1060
+ content: "\f0fc";
1061
+ }
1062
+ .icon-h-sign:before {
1063
+ content: "\f0fd";
1064
+ }
1065
+ .icon-plus-sign-alt:before {
1066
+ content: "\f0fe";
1067
+ }
1068
+ .icon-double-angle-left:before {
1069
+ content: "\f100";
1070
+ }
1071
+ .icon-double-angle-right:before {
1072
+ content: "\f101";
1073
+ }
1074
+ .icon-double-angle-up:before {
1075
+ content: "\f102";
1076
+ }
1077
+ .icon-double-angle-down:before {
1078
+ content: "\f103";
1079
+ }
1080
+ .icon-angle-left:before {
1081
+ content: "\f104";
1082
+ }
1083
+ .icon-angle-right:before {
1084
+ content: "\f105";
1085
+ }
1086
+ .icon-angle-up:before {
1087
+ content: "\f106";
1088
+ }
1089
+ .icon-angle-down:before {
1090
+ content: "\f107";
1091
+ }
1092
+ .icon-desktop:before {
1093
+ content: "\f108";
1094
+ }
1095
+ .icon-laptop:before {
1096
+ content: "\f109";
1097
+ }
1098
+ .icon-tablet:before {
1099
+ content: "\f10a";
1100
+ }
1101
+ .icon-mobile-phone:before {
1102
+ content: "\f10b";
1103
+ }
1104
+ .icon-circle-blank:before {
1105
+ content: "\f10c";
1106
+ }
1107
+ .icon-quote-left:before {
1108
+ content: "\f10d";
1109
+ }
1110
+ .icon-quote-right:before {
1111
+ content: "\f10e";
1112
+ }
1113
+ .icon-spinner:before {
1114
+ content: "\f110";
1115
+ }
1116
+ .icon-circle:before {
1117
+ content: "\f111";
1118
+ }
1119
+ .icon-mail-reply:before,
1120
+ .icon-reply:before {
1121
+ content: "\f112";
1122
+ }
1123
+ .icon-github-alt:before {
1124
+ content: "\f113";
1125
+ }
1126
+ .icon-folder-close-alt:before {
1127
+ content: "\f114";
1128
+ }
1129
+ .icon-folder-open-alt:before {
1130
+ content: "\f115";
1131
+ }
1132
+ .icon-expand-alt:before {
1133
+ content: "\f116";
1134
+ }
1135
+ .icon-collapse-alt:before {
1136
+ content: "\f117";
1137
+ }
1138
+ .icon-smile:before {
1139
+ content: "\f118";
1140
+ }
1141
+ .icon-frown:before {
1142
+ content: "\f119";
1143
+ }
1144
+ .icon-meh:before {
1145
+ content: "\f11a";
1146
+ }
1147
+ .icon-gamepad:before {
1148
+ content: "\f11b";
1149
+ }
1150
+ .icon-keyboard:before {
1151
+ content: "\f11c";
1152
+ }
1153
+ .icon-flag-alt:before {
1154
+ content: "\f11d";
1155
+ }
1156
+ .icon-flag-checkered:before {
1157
+ content: "\f11e";
1158
+ }
1159
+ .icon-terminal:before {
1160
+ content: "\f120";
1161
+ }
1162
+ .icon-code:before {
1163
+ content: "\f121";
1164
+ }
1165
+ .icon-reply-all:before {
1166
+ content: "\f122";
1167
+ }
1168
+ .icon-mail-reply-all:before {
1169
+ content: "\f122";
1170
+ }
1171
+ .icon-star-half-full:before,
1172
+ .icon-star-half-empty:before {
1173
+ content: "\f123";
1174
+ }
1175
+ .icon-location-arrow:before {
1176
+ content: "\f124";
1177
+ }
1178
+ .icon-crop:before {
1179
+ content: "\f125";
1180
+ }
1181
+ .icon-code-fork:before {
1182
+ content: "\f126";
1183
+ }
1184
+ .icon-unlink:before {
1185
+ content: "\f127";
1186
+ }
1187
+ .icon-question:before {
1188
+ content: "\f128";
1189
+ }
1190
+ .icon-info:before {
1191
+ content: "\f129";
1192
+ }
1193
+ .icon-exclamation:before {
1194
+ content: "\f12a";
1195
+ }
1196
+ .icon-superscript:before {
1197
+ content: "\f12b";
1198
+ }
1199
+ .icon-subscript:before {
1200
+ content: "\f12c";
1201
+ }
1202
+ .icon-eraser:before {
1203
+ content: "\f12d";
1204
+ }
1205
+ .icon-puzzle-piece:before {
1206
+ content: "\f12e";
1207
+ }
1208
+ .icon-microphone:before {
1209
+ content: "\f130";
1210
+ }
1211
+ .icon-microphone-off:before {
1212
+ content: "\f131";
1213
+ }
1214
+ .icon-shield:before {
1215
+ content: "\f132";
1216
+ }
1217
+ .icon-calendar-empty:before {
1218
+ content: "\f133";
1219
+ }
1220
+ .icon-fire-extinguisher:before {
1221
+ content: "\f134";
1222
+ }
1223
+ .icon-rocket:before {
1224
+ content: "\f135";
1225
+ }
1226
+ .icon-maxcdn:before {
1227
+ content: "\f136";
1228
+ }
1229
+ .icon-chevron-sign-left:before {
1230
+ content: "\f137";
1231
+ }
1232
+ .icon-chevron-sign-right:before {
1233
+ content: "\f138";
1234
+ }
1235
+ .icon-chevron-sign-up:before {
1236
+ content: "\f139";
1237
+ }
1238
+ .icon-chevron-sign-down:before {
1239
+ content: "\f13a";
1240
+ }
1241
+ .icon-html5:before {
1242
+ content: "\f13b";
1243
+ }
1244
+ .icon-css3:before {
1245
+ content: "\f13c";
1246
+ }
1247
+ .icon-anchor:before {
1248
+ content: "\f13d";
1249
+ }
1250
+ .icon-unlock-alt:before {
1251
+ content: "\f13e";
1252
+ }
1253
+ .icon-bullseye:before {
1254
+ content: "\f140";
1255
+ }
1256
+ .icon-ellipsis-horizontal:before {
1257
+ content: "\f141";
1258
+ }
1259
+ .icon-ellipsis-vertical:before {
1260
+ content: "\f142";
1261
+ }
1262
+ .icon-rss-sign:before {
1263
+ content: "\f143";
1264
+ }
1265
+ .icon-play-sign:before {
1266
+ content: "\f144";
1267
+ }
1268
+ .icon-ticket:before {
1269
+ content: "\f145";
1270
+ }
1271
+ .icon-minus-sign-alt:before {
1272
+ content: "\f146";
1273
+ }
1274
+ .icon-check-minus:before {
1275
+ content: "\f147";
1276
+ }
1277
+ .icon-level-up:before {
1278
+ content: "\f148";
1279
+ }
1280
+ .icon-level-down:before {
1281
+ content: "\f149";
1282
+ }
1283
+ .icon-check-sign:before {
1284
+ content: "\f14a";
1285
+ }
1286
+ .icon-edit-sign:before {
1287
+ content: "\f14b";
1288
+ }
1289
+ .icon-external-link-sign:before {
1290
+ content: "\f14c";
1291
+ }
1292
+ .icon-share-sign:before {
1293
+ content: "\f14d";
1294
+ }
1295
+ .icon-compass:before {
1296
+ content: "\f14e";
1297
+ }
1298
+ .icon-collapse:before {
1299
+ content: "\f150";
1300
+ }
1301
+ .icon-collapse-top:before {
1302
+ content: "\f151";
1303
+ }
1304
+ .icon-expand:before {
1305
+ content: "\f152";
1306
+ }
1307
+ .icon-euro:before,
1308
+ .icon-eur:before {
1309
+ content: "\f153";
1310
+ }
1311
+ .icon-gbp:before {
1312
+ content: "\f154";
1313
+ }
1314
+ .icon-dollar:before,
1315
+ .icon-usd:before {
1316
+ content: "\f155";
1317
+ }
1318
+ .icon-rupee:before,
1319
+ .icon-inr:before {
1320
+ content: "\f156";
1321
+ }
1322
+ .icon-yen:before,
1323
+ .icon-jpy:before {
1324
+ content: "\f157";
1325
+ }
1326
+ .icon-renminbi:before,
1327
+ .icon-cny:before {
1328
+ content: "\f158";
1329
+ }
1330
+ .icon-won:before,
1331
+ .icon-krw:before {
1332
+ content: "\f159";
1333
+ }
1334
+ .icon-bitcoin:before,
1335
+ .icon-btc:before {
1336
+ content: "\f15a";
1337
+ }
1338
+ .icon-file:before {
1339
+ content: "\f15b";
1340
+ }
1341
+ .icon-file-text:before {
1342
+ content: "\f15c";
1343
+ }
1344
+ .icon-sort-by-alphabet:before {
1345
+ content: "\f15d";
1346
+ }
1347
+ .icon-sort-by-alphabet-alt:before {
1348
+ content: "\f15e";
1349
+ }
1350
+ .icon-sort-by-attributes:before {
1351
+ content: "\f160";
1352
+ }
1353
+ .icon-sort-by-attributes-alt:before {
1354
+ content: "\f161";
1355
+ }
1356
+ .icon-sort-by-order:before {
1357
+ content: "\f162";
1358
+ }
1359
+ .icon-sort-by-order-alt:before {
1360
+ content: "\f163";
1361
+ }
1362
+ .icon-thumbs-up:before {
1363
+ content: "\f164";
1364
+ }
1365
+ .icon-thumbs-down:before {
1366
+ content: "\f165";
1367
+ }
1368
+ .icon-youtube-sign:before {
1369
+ content: "\f166";
1370
+ }
1371
+ .icon-youtube:before {
1372
+ content: "\f167";
1373
+ }
1374
+ .icon-xing:before {
1375
+ content: "\f168";
1376
+ }
1377
+ .icon-xing-sign:before {
1378
+ content: "\f169";
1379
+ }
1380
+ .icon-youtube-play:before {
1381
+ content: "\f16a";
1382
+ }
1383
+ .icon-dropbox:before {
1384
+ content: "\f16b";
1385
+ }
1386
+ .icon-stackexchange:before {
1387
+ content: "\f16c";
1388
+ }
1389
+ .icon-instagram:before {
1390
+ content: "\f16d";
1391
+ }
1392
+ .icon-flickr:before {
1393
+ content: "\f16e";
1394
+ }
1395
+ .icon-adn:before {
1396
+ content: "\f170";
1397
+ }
1398
+ .icon-bitbucket:before {
1399
+ content: "\f171";
1400
+ }
1401
+ .icon-bitbucket-sign:before {
1402
+ content: "\f172";
1403
+ }
1404
+ .icon-tumblr:before {
1405
+ content: "\f173";
1406
+ }
1407
+ .icon-tumblr-sign:before {
1408
+ content: "\f174";
1409
+ }
1410
+ .icon-long-arrow-down:before {
1411
+ content: "\f175";
1412
+ }
1413
+ .icon-long-arrow-up:before {
1414
+ content: "\f176";
1415
+ }
1416
+ .icon-long-arrow-left:before {
1417
+ content: "\f177";
1418
+ }
1419
+ .icon-long-arrow-right:before {
1420
+ content: "\f178";
1421
+ }
1422
+ .icon-apple:before {
1423
+ content: "\f179";
1424
+ }
1425
+ .icon-windows:before {
1426
+ content: "\f17a";
1427
+ }
1428
+ .icon-android:before {
1429
+ content: "\f17b";
1430
+ }
1431
+ .icon-linux:before {
1432
+ content: "\f17c";
1433
+ }
1434
+ .icon-dribbble:before {
1435
+ content: "\f17d";
1436
+ }
1437
+ .icon-skype:before {
1438
+ content: "\f17e";
1439
+ }
1440
+ .icon-foursquare:before {
1441
+ content: "\f180";
1442
+ }
1443
+ .icon-trello:before {
1444
+ content: "\f181";
1445
+ }
1446
+ .icon-female:before {
1447
+ content: "\f182";
1448
+ }
1449
+ .icon-male:before {
1450
+ content: "\f183";
1451
+ }
1452
+ .icon-gittip:before {
1453
+ content: "\f184";
1454
+ }
1455
+ .icon-sun:before {
1456
+ content: "\f185";
1457
+ }
1458
+ .icon-moon:before {
1459
+ content: "\f186";
1460
+ }
1461
+ .icon-archive:before {
1462
+ content: "\f187";
1463
+ }
1464
+ .icon-bug:before {
1465
+ content: "\f188";
1466
+ }
1467
+ .icon-vk:before {
1468
+ content: "\f189";
1469
+ }
1470
+ .icon-weibo:before {
1471
+ content: "\f18a";
1472
+ }
1473
+ .icon-renren:before {
1474
+ content: "\f18b";
1475
+ }