spree_backend 2.0.3 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/fonts/FontAwesome.otf +0 -0
  3. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  4. data/app/assets/fonts/fontawesome-webfont.svg +399 -0
  5. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  6. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  7. data/app/assets/images/credit_cards/credit_card.gif +0 -0
  8. data/app/assets/javascripts/admin/admin.js.erb +6 -5
  9. data/app/assets/javascripts/admin/option_type_autocomplete.js.erb +1 -2
  10. data/app/assets/javascripts/admin/shipments.js.erb +3 -3
  11. data/app/assets/javascripts/admin/spree_backend.js +2 -2
  12. data/app/assets/javascripts/admin/stock_transfer.js.coffee +3 -3
  13. data/app/assets/javascripts/admin/variant_autocomplete.js.erb +9 -9
  14. data/app/assets/javascripts/admin/zone.js.coffee +8 -4
  15. data/app/assets/stylesheets/admin/components/_date-picker.scss +1 -1
  16. data/app/assets/stylesheets/admin/components/_navigation.scss +12 -8
  17. data/app/assets/stylesheets/admin/components/_sidebar.scss +2 -0
  18. data/app/assets/stylesheets/admin/globals/_variables.scss +53 -47
  19. data/app/assets/stylesheets/admin/globals/_variables_override.scss +2 -2
  20. data/app/assets/stylesheets/admin/plugins/_font-awesome.scss +1475 -0
  21. data/app/assets/stylesheets/admin/plugins/_jstree.scss +0 -1
  22. data/app/assets/stylesheets/admin/plugins/_select2.scss +40 -31
  23. data/app/assets/stylesheets/admin/shared/_forms.scss +7 -2
  24. data/app/assets/stylesheets/admin/shared/_icons.scss +7 -6
  25. data/app/assets/stylesheets/admin/shared/_layout.scss +2 -3
  26. data/app/assets/stylesheets/admin/shared/_tables.scss +7 -0
  27. data/app/assets/stylesheets/admin/spree_backend.css +1 -1
  28. data/app/controllers/spree/admin/orders/customer_details_controller.rb +3 -0
  29. data/app/controllers/spree/admin/orders_controller.rb +8 -0
  30. data/app/controllers/spree/admin/payments_controller.rb +2 -1
  31. data/app/controllers/spree/admin/products_controller.rb +9 -3
  32. data/app/controllers/spree/admin/stock_items_controller.rb +29 -6
  33. data/app/controllers/spree/admin/stock_locations_controller.rb +12 -0
  34. data/app/controllers/spree/admin/stock_movements_controller.rb +4 -31
  35. data/app/controllers/spree/admin/stock_transfers_controller.rb +1 -1
  36. data/app/controllers/spree/admin/tax_categories_controller.rb +1 -1
  37. data/app/controllers/spree/admin/variants_controller.rb +1 -2
  38. data/app/helpers/spree/admin/orders_helper.rb +4 -0
  39. data/app/views/spree/admin/mail_methods/_form.html.erb +3 -7
  40. data/app/views/spree/admin/orders/_shipment.html.erb +96 -126
  41. data/app/views/spree/admin/orders/_shipment_manifest.html.erb +33 -0
  42. data/app/views/spree/admin/orders/edit.html.erb +10 -4
  43. data/app/views/spree/admin/orders/index.html.erb +1 -1
  44. data/app/views/spree/admin/payments/_form.html.erb +3 -1
  45. data/app/views/spree/admin/product_properties/index.html.erb +1 -1
  46. data/app/views/spree/admin/products/_add_stock_form.html.erb +31 -2
  47. data/app/views/spree/admin/products/_form.html.erb +2 -2
  48. data/app/views/spree/admin/products/edit.html.erb +5 -3
  49. data/app/views/spree/admin/products/index.html.erb +4 -4
  50. data/app/views/spree/admin/products/new.html.erb +10 -0
  51. data/app/views/spree/admin/products/stock.html.erb +17 -17
  52. data/app/views/spree/admin/promotions/_promotion_action.html.erb +2 -1
  53. data/app/views/spree/admin/promotions/_promotion_rule.html.erb +1 -0
  54. data/app/views/spree/admin/prototypes/index.html.erb +1 -1
  55. data/app/views/spree/admin/shared/_product_tabs.html.erb +10 -9
  56. data/app/views/spree/admin/shared/_routes.html.erb +4 -0
  57. data/app/views/spree/admin/shared/_tabs.html.erb +1 -1
  58. data/app/views/spree/admin/shared/_translations.html.erb +27 -25
  59. data/app/views/spree/admin/shipping_methods/_form.html.erb +9 -4
  60. data/app/views/spree/admin/states/index.html.erb +1 -1
  61. data/app/views/spree/admin/stock_items/destroy.js.erb +1 -0
  62. data/app/views/spree/admin/stock_locations/_form.html.erb +8 -0
  63. data/app/views/spree/admin/stock_locations/index.html.erb +35 -31
  64. data/app/views/spree/admin/stock_locations/new.html.erb +2 -2
  65. data/app/views/spree/admin/stock_movements/index.html.erb +3 -6
  66. data/app/views/spree/admin/stock_transfers/index.html.erb +1 -1
  67. data/app/views/spree/admin/stock_transfers/new.html.erb +1 -1
  68. data/app/views/spree/admin/stock_transfers/show.html.erb +1 -2
  69. data/app/views/spree/admin/taxonomies/edit.erb +1 -1
  70. data/app/views/spree/admin/variants/_autocomplete.js.erb +1 -1
  71. data/app/views/spree/admin/zones/_member_type.html.erb +3 -3
  72. data/app/views/spree/layouts/admin.html.erb +9 -15
  73. data/config/routes.rb +2 -2
  74. data/lib/spree/backend.rb +1 -0
  75. data/vendor/assets/javascripts/jquery.jstree/jquery.jstree.js +2 -2
  76. data/vendor/assets/javascripts/jquery.jstree/themes/apple/style.css +2 -2
  77. data/vendor/assets/stylesheets/jquery-ui.datepicker.css.erb +5 -5
  78. metadata +35 -21
  79. data/app/assets/images/admin/bg/spree_50.png +0 -0
  80. data/app/assets/stylesheets/admin/plugins/font-awesome.scss +0 -303
  81. data/app/views/spree/admin/shared/_stock_movement_form.html.erb +0 -30
  82. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  83. data/vendor/assets/fonts/fontawesome-webfont.svg +0 -255
  84. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  85. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  86. data/vendor/assets/stylesheets/font-awesome-ie7.css +0 -645
  87. data/vendor/assets/stylesheets/font-awesome.css.erb +0 -303
@@ -1,7 +1,7 @@
1
1
  $(document).ready(function() {
2
2
  if ($("#product_option_type_ids").length > 0) {
3
3
  $("#product_option_type_ids").select2({
4
- placeholder: "Add an option type",
4
+ placeholder: Spree.translations.option_type_placeholder,
5
5
  multiple: true,
6
6
  initSelection: function(element, callback) {
7
7
  return $.getJSON(Spree.routes.option_type_search + "?ids=" + (element.val()), null, function(data) {
@@ -20,7 +20,6 @@ $(document).ready(function() {
20
20
  }
21
21
  },
22
22
  results: function (data, page) {
23
- console.log(data)
24
23
  return { results: data }
25
24
  }
26
25
  },
@@ -7,7 +7,7 @@ $(document).ready(function() {
7
7
  $('[data-hook=admin_order_edit_form] a.ship').click(function(){
8
8
  var link = $(this);
9
9
  var shipment_number = link.data('shipment-number');
10
- var url = Spree.url("/api/orders/" + order_number + "/shipments/" + shipment_number + "/ship.json");
10
+ var url = Spree.url( Spree.routes.orders_api + "/" + order_number + "/shipments/" + shipment_number + "/ship.json");
11
11
  $.ajax({
12
12
  type: "PUT",
13
13
  url: url
@@ -28,7 +28,7 @@ $(document).ready(function() {
28
28
  var shipment_number = link.data('shipment-number');
29
29
  var selected_shipping_rate_id = link.parents('tbody').find("select#selected_shipping_rate_id[data-shipment-number='" + shipment_number + "']").val();
30
30
  var unlock = link.parents('tbody').find("input[name='open_adjustment'][data-shipment-number='" + shipment_number + "']:checked").val();
31
- var url = Spree.url("/api/orders/" + order_number + "/shipments/" + shipment_number + ".json");
31
+ var url = Spree.url( Spree.routes.orders_api + "/" + order_number + "/shipments/" + shipment_number + ".json");
32
32
 
33
33
  $.ajax({
34
34
  type: "PUT",
@@ -50,7 +50,7 @@ $(document).ready(function() {
50
50
  var link = $(this);
51
51
  var shipment_number = link.data('shipment-number');
52
52
  var tracking = link.parents('tbody').find('input#tracking').val();
53
- var url = Spree.url("/api/orders/" + order_number + "/shipments/" + shipment_number + ".json");
53
+ var url = Spree.url( Spree.routes.orders_api + "/" + order_number + "/shipments/" + shipment_number + ".json");
54
54
 
55
55
  $.ajax({
56
56
  type: "PUT",
@@ -1,5 +1,5 @@
1
1
  //= require jquery-migrate-1.0.0
2
- //= require jquery-ui
2
+ //= require jquery.ui.all
3
3
  //= require modernizr
4
4
  //= require jquery.cookie
5
5
  //= require jquery.delayedobserver
@@ -15,5 +15,5 @@
15
15
  //= require responsive-tables
16
16
  //= require jquery.horizontalNav
17
17
  //= require spree
18
+ //= require admin/spree-select2
18
19
  //= require_tree .
19
-
@@ -30,7 +30,7 @@ $ ->
30
30
 
31
31
  $('#transfer_receive_stock').change (event) => @receive_stock_change(event)
32
32
 
33
- $.getJSON "/api/stock_locations", (data) =>
33
+ $.getJSON Spree.routes.stock_locations_api, (data) =>
34
34
  @locations = (location for location in data.stock_locations)
35
35
  @force_receive_stock() if @locations.length < 2
36
36
 
@@ -92,13 +92,13 @@ $ ->
92
92
  if @cached_variants?
93
93
  @populate_select @cached_variants
94
94
  else
95
- $.getJSON "/api/variants", (data) =>
95
+ $.getJSON Spree.routes.variants_api, (data) =>
96
96
  @cached_variants = _.map(data.variants, (variant) -> new TransferVariant(variant))
97
97
  @populate_select @cached_variants
98
98
 
99
99
  _refresh_transfer_stock_items: ->
100
100
  stock_location_id = $('#transfer_source_location_id').val()
101
- $.getJSON "/api/stock_locations/#{stock_location_id}/stock_items", (data) =>
101
+ $.getJSON Spree.routes.stock_locations_api + "/#{stock_location_id}/stock_items", (data) =>
102
102
  @populate_select _.map(data.stock_items, (stock_item) -> new TransferStockItem(stock_item))
103
103
 
104
104
  populate_select: (variants) ->
@@ -70,7 +70,7 @@ adjustItems = function(shipment_number, variant_id, quantity){
70
70
  var shipment = _.findWhere(shipments, {number: shipment_number + ''});
71
71
  var inventory_units = _.where(shipment.inventory_units, {variant_id: variant_id});
72
72
 
73
- var url = "/api/orders/" + order_number + "/shipments/" + shipment_number;
73
+ var url = Spree.routes.orders_api + "/" + order_number + "/shipments/" + shipment_number;
74
74
 
75
75
  var new_quantity = 0;
76
76
  if(inventory_units.length<quantity){
@@ -130,8 +130,8 @@ startItemSplit = function(event){
130
130
  $.ajax({
131
131
  type: "GET",
132
132
  async: false,
133
- url: Spree.url("/api/variants.json"),
134
- data: {
133
+ url: Spree.url(Spree.routes.variants_api),
134
+ data: {
135
135
  q: {
136
136
  "id_eq": variant_id
137
137
  }
@@ -143,7 +143,7 @@ startItemSplit = function(event){
143
143
  });
144
144
 
145
145
  var max_quantity = link.closest('tr').data('item-quantity');
146
- var split_item_template = Handlebars.compile($('#variant_split_template').text());
146
+ var split_item_template = Handlebars.compile($('#variant_split_template').text());
147
147
  link.closest('tr').after(split_item_template({ variant: variant, shipments: shipments, max_quantity: max_quantity }));
148
148
  $('a.cancel-split').click(cancelItemSplit);
149
149
  $('a.save-split').click(completeItemSplit);
@@ -178,7 +178,7 @@ completeItemSplit = function(event) {
178
178
  $.ajax({
179
179
  type: "PUT",
180
180
  async: false,
181
- url: Spree.url("/api/orders/" + order_number + "/shipments/" + original_shipment_number + "/remove.json"),
181
+ url: Spree.url(Spree.routes.orders_api + "/" + order_number + "/shipments/" + original_shipment_number + "/remove.json"),
182
182
  data: { variant_id: variant_id, quantity: quantity }
183
183
  }).done(function(msg) {
184
184
  window.location.reload();
@@ -188,14 +188,14 @@ completeItemSplit = function(event) {
188
188
  $.ajax({
189
189
  type: "POST",
190
190
  async: false,
191
- url: Spree.url("/api/orders/" + order_number + "/shipments.json"),
191
+ url: Spree.url(Spree.routes.orders_api + "/" + order_number + "/shipments.json"),
192
192
  data: { variant_id: variant_id, quantity: quantity, stock_location_id: stock_location_id }
193
193
  });
194
194
  } else {
195
195
  $.ajax({
196
196
  type: "PUT",
197
197
  async: false,
198
- url: Spree.url("/api/orders/" + order_number + "/shipments/" + target_shipment_number + "/add.json"),
198
+ url: Spree.url(Spree.routes.orders_api + "/" + order_number + "/shipments/" + target_shipment_number + "/add.json"),
199
199
  data: { variant_id: variant_id, quantity: quantity }
200
200
  });
201
201
  }
@@ -226,7 +226,7 @@ addVariantFromStockLocation = function() {
226
226
  if(shipment==undefined){
227
227
  $.ajax({
228
228
  type: "POST",
229
- url: Spree.url("/api/orders/" + order_number + "/shipments.json"),
229
+ url: Spree.url(Spree.routes.orders_api + "/" + order_number + "/shipments.json"),
230
230
  data: { variant_id: variant_id, quantity: quantity, stock_location_id: stock_location_id }
231
231
  }).done(function( msg ) {
232
232
  window.location.reload();
@@ -250,7 +250,7 @@ formatVariantResult = function(variant) {
250
250
  $.fn.variantAutocomplete = function() {
251
251
  this.parent().children(".options_placeholder").attr('id', this.parent().data('index'))
252
252
  this.select2({
253
- placeholder: "Select a variant",
253
+ placeholder: Spree.translations.variant_placeholder,
254
254
  minimumInputLength: 3,
255
255
  ajax: {
256
256
  url: Spree.url(Spree.routes.variants_search),
@@ -1,14 +1,18 @@
1
1
  $ ->
2
- if ($ '#country_based').is(':checked')
3
- show_country()
4
- else
5
- show_state()
6
2
  ($ '#country_based').click ->
7
3
  show_country()
8
4
 
9
5
  ($ '#state_based').click ->
10
6
  show_state()
11
7
 
8
+ if ($ '#country_based').is(':checked')
9
+ show_country()
10
+ else if ($ '#state_based').is(':checked')
11
+ show_state()
12
+ else
13
+ show_state()
14
+ ($ '#state_based').click()
15
+
12
16
 
13
17
  show_country = ->
14
18
  ($ '#state_members :input').each ->
@@ -1,6 +1,6 @@
1
1
  .date-range-filter {
2
2
  .range-divider {
3
- padding: 0 6px 0 5px;
3
+ padding: 0;
4
4
  }
5
5
  input.datepicker {
6
6
  width: 96px !important;
@@ -1,6 +1,6 @@
1
1
  // Navigation
2
2
  //---------------------------------------------------
3
- .inline-menu {
3
+ .inline-menu {
4
4
  margin: 0;
5
5
  -webkit-margin-before: 0;
6
6
  -webkit-padding-start: 0;
@@ -8,7 +8,7 @@
8
8
 
9
9
  nav.menu {
10
10
  ul {
11
- list-style: none;
11
+ list-style: none;
12
12
 
13
13
  li {
14
14
  a {
@@ -24,14 +24,14 @@ nav.menu {
24
24
 
25
25
  &.active a {
26
26
  color: $color-2;
27
- border-left-width: 0;
27
+ border-left-width: 0;
28
28
  border-bottom-color: $color-2;
29
29
  }
30
30
 
31
31
  &:hover a {
32
32
  color: $color-2;
33
33
  }
34
- }
34
+ }
35
35
  }
36
36
  }
37
37
 
@@ -86,7 +86,7 @@ nav.menu {
86
86
  position: absolute;
87
87
  border-left: 10px solid transparent;
88
88
  border-right: 10px solid transparent;
89
- border-top: 5px solid $color-2;
89
+ border-top: 5px solid $color-2;
90
90
  bottom: 0px;
91
91
  margin-bottom: -5px;
92
92
  left: 50%;
@@ -94,6 +94,10 @@ nav.menu {
94
94
  z-index: 1;
95
95
  }
96
96
  }
97
+
98
+ span.text {
99
+ font-weight: 600;
100
+ }
97
101
  }
98
102
 
99
103
  .dropdown {
@@ -125,11 +129,11 @@ nav.menu {
125
129
  a {
126
130
  display: block;
127
131
  padding: 12px 20px;
128
- color: $color-1;
132
+ color: $color-1;
129
133
  text-align: center;
130
134
  text-transform: uppercase;
131
135
  position: relative;
132
- font-size: 85%;
136
+ font-size: 85%;
133
137
  }
134
138
 
135
139
  &.selected a, a:hover {
@@ -147,4 +151,4 @@ nav.menu {
147
151
  }
148
152
  }
149
153
  }
150
- }
154
+ }
@@ -18,7 +18,9 @@
18
18
  padding: 5px 10px;
19
19
  position: relative;
20
20
  top: -14px;
21
+
21
22
  -webkit-font-smoothing: antialiased;
23
+ -moz-osx-font-smoothing: grayscale;
22
24
  }
23
25
  }
24
26
  }
@@ -74,53 +74,59 @@ $color-txt-text: $color-3 !default;
74
74
  $color-txt-hover-brd: $color-2 !default;
75
75
 
76
76
  // States label colors
77
- $color-ste-complete-bg: $color-success !default;
78
- $color-ste-complete-text: $color-1 !default;
79
- $color-ste-completed-bg: $color-success !default;
80
- $color-ste-completed-text: $color-1 !default;
81
- $color-ste-sold-bg: $color-success !default;
82
- $color-ste-sold-text: $color-1 !default;
83
- $color-ste-pending-bg: $color-notice !default;
84
- $color-ste-pending-text: $color-1 !default;
85
- $color-ste-paid-bg: $color-success !default;
86
- $color-ste-paid-text: $color-1 !default;
87
- $color-ste-shipped-bg: $color-success !default;
88
- $color-ste-shipped-text: $color-1 !default;
89
- $color-ste-balance_due-bg: $color-notice !default;
90
- $color-ste-balance_due-text: $color-1 !default;
91
- $color-ste-backorder-bg: $color-notice !default;
92
- $color-ste-backorder-text: $color-1 !default;
93
- $color-ste-none-bg: $color-error !default;
94
- $color-ste-none-text: $color-1 !default;
95
- $color-ste-ready-bg: $color-success !default;
96
- $color-ste-ready-text: $color-1 !default;
97
- $color-ste-void-bg: $color-error !default;
98
- $color-ste-void-text: $color-1 !default;
99
- $color-ste-canceled-bg: $color-error !default;
100
- $color-ste-canceled-text: $color-1 !default;
101
- $color-ste-address-bg: $color-error !default;
102
- $color-ste-address-text: $color-1 !default;
103
- $color-ste-checkout-bg: $color-notice !default;
104
- $color-ste-checkout-text: $color-1 !default;
105
- $color-ste-cart-bg: $color-notice !default;
106
- $color-ste-cart-text: $color-1 !default;
107
- $color-ste-payment-bg: $color-error !default;
108
- $color-ste-payment-text: $color-1 !default;
109
- $color-ste-delivery-bg: $color-success !default;
110
- $color-ste-delivery-text: $color-1 !default;
111
- $color-ste-confirm-bg: $color-error !default;
112
- $color-ste-confirm-text: $color-1 !default;
113
- $color-ste-active-bg: $color-success !default;
114
- $color-ste-active-text: $color-1 !default;
115
- $color-ste-inactive-bg: $color-notice !default;
116
- $color-ste-inactive-text: $color-1 !default;
117
-
118
- // Avaliable states
119
- $states: completed, complete, sold, pending, paid, shipped, balance_due, backorder, checkout, cart, address, delivery, payment, confirm, canceled, ready, void, active, inactive !default;
120
- $states-bg-colors: $color-ste-completed-bg, $color-ste-complete-bg, $color-ste-sold-bg, $color-ste-pending-bg, $color-ste-paid-bg, $color-ste-shipped-bg, $color-ste-balance_due-bg, $color-ste-backorder-bg, $color-ste-checkout-bg, $color-ste-cart-bg, $color-ste-address-bg, $color-ste-delivery-bg, $color-ste-payment-bg, $color-ste-confirm-bg, $color-ste-canceled-bg, $color-ste-ready-bg, $color-ste-void-bg, $color-ste-active-bg, $color-ste-inactive-bg !default;
121
- $states-text-colors: $color-ste-completed-text, $color-ste-complete-text, $color-ste-sold-text, $color-ste-pending-text, $color-ste-paid-text, $color-ste-shipped-text, $color-ste-balance_due-text, $color-ste-backorder-text, $color-ste-checkout-text, $color-ste-cart-text, $color-ste-address-text, $color-ste-delivery-text, $color-ste-payment-text, $color-ste-confirm-text, $color-ste-canceled-text, $color-ste-ready-text, $color-ste-void-text, $color-ste-active-text, $color-ste-inactive-text !default;
122
-
123
- // Avaliable actions
77
+ $color-ste-complete-bg: $color-success !default;
78
+ $color-ste-complete-text: $color-1 !default;
79
+ $color-ste-completed-bg: $color-success !default;
80
+ $color-ste-completed-text: $color-1 !default;
81
+ $color-ste-sold-bg: $color-success !default;
82
+ $color-ste-sold-text: $color-1 !default;
83
+ $color-ste-pending-bg: $color-notice !default;
84
+ $color-ste-pending-text: $color-1 !default;
85
+ $color-ste-awaiting_return-bg: $color-notice !default;
86
+ $color-ste-awaiting_return-text: $color-1 !default;
87
+ $color-ste-returned-bg: $color-notice !default;
88
+ $color-ste-returned-text: $color-1 !default;
89
+ $color-ste-credit_owed-bg: $color-notice !default;
90
+ $color-ste-credit_owed-text: $color-1 !default;
91
+ $color-ste-paid-bg: $color-success !default;
92
+ $color-ste-paid-text: $color-1 !default;
93
+ $color-ste-shipped-bg: $color-success !default;
94
+ $color-ste-shipped-text: $color-1 !default;
95
+ $color-ste-balance_due-bg: $color-notice !default;
96
+ $color-ste-balance_due-text: $color-1 !default;
97
+ $color-ste-backorder-bg: $color-notice !default;
98
+ $color-ste-backorder-text: $color-1 !default;
99
+ $color-ste-none-bg: $color-error !default;
100
+ $color-ste-none-text: $color-1 !default;
101
+ $color-ste-ready-bg: $color-success !default;
102
+ $color-ste-ready-text: $color-1 !default;
103
+ $color-ste-void-bg: $color-error !default;
104
+ $color-ste-void-text: $color-1 !default;
105
+ $color-ste-canceled-bg: $color-error !default;
106
+ $color-ste-canceled-text: $color-1 !default;
107
+ $color-ste-address-bg: $color-error !default;
108
+ $color-ste-address-text: $color-1 !default;
109
+ $color-ste-checkout-bg: $color-notice !default;
110
+ $color-ste-checkout-text: $color-1 !default;
111
+ $color-ste-cart-bg: $color-notice !default;
112
+ $color-ste-cart-text: $color-1 !default;
113
+ $color-ste-payment-bg: $color-error !default;
114
+ $color-ste-payment-text: $color-1 !default;
115
+ $color-ste-delivery-bg: $color-success !default;
116
+ $color-ste-delivery-text: $color-1 !default;
117
+ $color-ste-confirm-bg: $color-error !default;
118
+ $color-ste-confirm-text: $color-1 !default;
119
+ $color-ste-active-bg: $color-success !default;
120
+ $color-ste-active-text: $color-1 !default;
121
+ $color-ste-inactive-bg: $color-notice !default;
122
+ $color-ste-inactive-text: $color-1 !default;
123
+
124
+ // Available states
125
+ $states: completed, complete, sold, pending, awaiting_return, returned, credit_owed, paid, shipped, balance_due, backorder, checkout, cart, address, delivery, payment, confirm, canceled, ready, void, active, inactive !default;
126
+ $states-bg-colors: $color-ste-completed-bg, $color-ste-complete-bg, $color-ste-sold-bg, $color-ste-pending-bg, $color-ste-awaiting_return-bg, $color-ste-returned-bg, $color-ste-credit_owed-bg, $color-ste-paid-bg, $color-ste-shipped-bg, $color-ste-balance_due-bg, $color-ste-backorder-bg, $color-ste-checkout-bg, $color-ste-cart-bg, $color-ste-address-bg, $color-ste-delivery-bg, $color-ste-payment-bg, $color-ste-confirm-bg, $color-ste-canceled-bg, $color-ste-ready-bg, $color-ste-void-bg, $color-ste-active-bg, $color-ste-inactive-bg !default;
127
+ $states-text-colors: $color-ste-completed-text, $color-ste-complete-text, $color-ste-sold-text, $color-ste-pending-text, $color-ste-awaiting_return-text, $color-ste-returned-text, $color-ste-credit_owed-text, $color-ste-paid-text, $color-ste-shipped-text, $color-ste-balance_due-text, $color-ste-backorder-text, $color-ste-checkout-text, $color-ste-cart-text, $color-ste-address-text, $color-ste-delivery-text, $color-ste-payment-text, $color-ste-confirm-text, $color-ste-canceled-text, $color-ste-ready-text, $color-ste-void-text, $color-ste-active-text, $color-ste-inactive-text !default;
128
+
129
+ // Available actions
124
130
  $actions: edit, clone, remove, void, capture, save, cancel, mail !default;
125
131
  $actions-bg-colors: $color-action-edit-bg, $color-action-clone-bg, $color-action-remove-bg, $color-action-void-bg, $color-action-capture-bg, $color-action-save-bg, $color-action-cancel-bg, $color-action-mail-bg !default;
126
132
  $actions-brd-colors: $color-action-edit-brd, $color-action-clone-brd, $color-action-remove-brd, $color-action-void-brd, $color-action-capture-brd, $color-action-save-brd, $color-action-cancel-brd, $color-action-mail-brd !default;
@@ -2,6 +2,6 @@
2
2
  Empty file to override variables in user applications.
3
3
 
4
4
  To set your own colors, sizes or fonts just override this
5
- file in you're application and set valiables according to
5
+ file in your application and set variables according to
6
6
  globals/_variables.scss file.
7
- --------------------------------------------------------- */
7
+ --------------------------------------------------------- */
@@ -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: font-url('fontawesome-webfont.eot?v=3.2.1');
31
+ src: font-url('fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), font-url('fontawesome-webfont.woff?v=3.2.1') format('woff'), font-url('fontawesome-webfont.ttf?v=3.2.1') format('truetype'), font-url('fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') 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
+ }