spree_frontend 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 (55) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/admin/bg/spree_50.png +0 -0
  3. data/app/assets/javascripts/store/checkout.js.coffee +9 -19
  4. data/app/assets/javascripts/store/product.js.coffee +39 -34
  5. data/app/controllers/spree/checkout_controller.rb +19 -17
  6. data/app/controllers/spree/home_controller.rb +1 -3
  7. data/app/controllers/spree/orders_controller.rb +6 -2
  8. data/app/controllers/spree/products_controller.rb +1 -3
  9. data/app/controllers/spree/taxons_controller.rb +1 -3
  10. data/app/views/spree/checkout/_delivery.html.erb +1 -1
  11. data/app/views/spree/products/_cart_form.html.erb +6 -1
  12. data/app/views/spree/shared/_head.html.erb +1 -0
  13. data/config/initializers/canonical_rails.rb +20 -0
  14. data/lib/spree/frontend.rb +1 -1
  15. data/vendor/assets/javascripts/jquery.validate/additional-methods.min.js +6 -22
  16. data/vendor/assets/javascripts/jquery.validate/jquery.validate.min.js +6 -45
  17. data/vendor/assets/javascripts/jquery.validate/localization/messages_ar.js +23 -22
  18. data/vendor/assets/javascripts/jquery.validate/localization/messages_bg.js +22 -20
  19. data/vendor/assets/javascripts/jquery.validate/localization/messages_ca.js +22 -20
  20. data/vendor/assets/javascripts/jquery.validate/localization/messages_cs.js +22 -20
  21. data/vendor/assets/javascripts/jquery.validate/localization/messages_da.js +19 -17
  22. data/vendor/assets/javascripts/jquery.validate/localization/messages_de.js +19 -18
  23. data/vendor/assets/javascripts/jquery.validate/localization/messages_el.js +22 -21
  24. data/vendor/assets/javascripts/jquery.validate/localization/messages_es.js +22 -20
  25. data/vendor/assets/javascripts/jquery.validate/localization/messages_fa.js +22 -20
  26. data/vendor/assets/javascripts/jquery.validate/localization/messages_fi.js +20 -18
  27. data/vendor/assets/javascripts/jquery.validate/localization/messages_fr.js +44 -20
  28. data/vendor/assets/javascripts/jquery.validate/localization/messages_he.js +22 -20
  29. data/vendor/assets/javascripts/jquery.validate/localization/messages_hu.js +21 -18
  30. data/vendor/assets/javascripts/jquery.validate/localization/messages_it.js +22 -20
  31. data/vendor/assets/javascripts/jquery.validate/localization/messages_ja.js +22 -20
  32. data/vendor/assets/javascripts/jquery.validate/localization/messages_kk.js +22 -20
  33. data/vendor/assets/javascripts/jquery.validate/localization/messages_lt.js +23 -21
  34. data/vendor/assets/javascripts/jquery.validate/localization/messages_lv.js +22 -20
  35. data/vendor/assets/javascripts/jquery.validate/localization/messages_nl.js +32 -20
  36. data/vendor/assets/javascripts/jquery.validate/localization/messages_no.js +22 -20
  37. data/vendor/assets/javascripts/jquery.validate/localization/messages_pl.js +22 -20
  38. data/vendor/assets/javascripts/jquery.validate/localization/messages_ro.js +22 -20
  39. data/vendor/assets/javascripts/jquery.validate/localization/messages_ru.js +22 -20
  40. data/vendor/assets/javascripts/jquery.validate/localization/messages_si.js +21 -19
  41. data/vendor/assets/javascripts/jquery.validate/localization/messages_sk.js +19 -18
  42. data/vendor/assets/javascripts/jquery.validate/localization/messages_sr.js +23 -21
  43. data/vendor/assets/javascripts/jquery.validate/localization/messages_th.js +22 -20
  44. data/vendor/assets/javascripts/jquery.validate/localization/messages_tr.js +22 -21
  45. data/vendor/assets/javascripts/jquery.validate/localization/messages_vi.js +22 -20
  46. data/vendor/assets/javascripts/jquery.validate/localization/methods_de.js +6 -6
  47. data/vendor/assets/javascripts/jquery.validate/localization/methods_nl.js +3 -3
  48. data/vendor/assets/javascripts/jquery.validate/localization/methods_pt.js +3 -3
  49. data/vendor/assets/stylesheets/jquery.formalize.css.erb +0 -1
  50. metadata +20 -23
  51. data/app/assets/images/noimage/large.png +0 -0
  52. data/app/assets/images/noimage/mini.png +0 -0
  53. data/app/assets/images/noimage/product.png +0 -0
  54. data/app/assets/images/noimage/small.png +0 -0
  55. data/app/assets/stylesheets/admin/plugins/font-awesome.scss +0 -303
@@ -3,10 +3,10 @@
3
3
  * Locale: DE
4
4
  */
5
5
  jQuery.extend(jQuery.validator.methods, {
6
- date: function(value, element) {
7
- return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);
8
- },
9
- number: function(value, element) {
10
- return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);
11
- }
6
+ date: function(value, element) {
7
+ return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);
8
+ },
9
+ number: function(value, element) {
10
+ return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);
11
+ }
12
12
  });
@@ -3,7 +3,7 @@
3
3
  * Locale: NL
4
4
  */
5
5
  jQuery.extend(jQuery.validator.methods, {
6
- date: function(value, element) {
7
- return this.optional(element) || /^\d\d?[\.\/-]\d\d?[\.\/-]\d\d\d?\d?$/.test(value);
8
- }
6
+ date: function(value, element) {
7
+ return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value);
8
+ }
9
9
  });
@@ -3,7 +3,7 @@
3
3
  * Locale: PT_BR
4
4
  */
5
5
  jQuery.extend(jQuery.validator.methods, {
6
- date: function(value, element) {
7
- return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value);
8
- }
6
+ date: function(value, element) {
7
+ return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value);
8
+ }
9
9
  });
@@ -63,7 +63,6 @@ input[type="button"],
63
63
  a.button {
64
64
  -webkit-appearance: none;
65
65
  -webkit-border-radius: 4px;
66
- -moz-border-radius: 4px;
67
66
  -ms-border-radius: 4px;
68
67
  -o-border-radius: 4px;
69
68
  border-radius: 4px;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Schofield
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-13 00:00:00.000000000 Z
11
+ date: 2013-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: spree_core
@@ -16,70 +16,70 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.3
19
+ version: 2.0.4
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.3
26
+ version: 2.0.4
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: spree_api
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 2.0.3
33
+ version: 2.0.4
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 2.0.3
40
+ version: 2.0.4
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jquery-rails
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 2.2.1
47
+ version: 3.0.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ~>
53
53
  - !ruby/object:Gem::Version
54
- version: 2.2.1
54
+ version: 3.0.0
55
55
  - !ruby/object:Gem::Dependency
56
- name: select2-rails
56
+ name: rails
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '='
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 3.2.1
61
+ version: 3.2.13
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '='
66
+ - - ~>
67
67
  - !ruby/object:Gem::Version
68
- version: 3.2.1
68
+ version: 3.2.13
69
69
  - !ruby/object:Gem::Dependency
70
- name: rails
70
+ name: canonical-rails
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - '>='
74
74
  - !ruby/object:Gem::Version
75
- version: 3.2.13
75
+ version: '0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - '>='
81
81
  - !ruby/object:Gem::Version
82
- version: 3.2.13
82
+ version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: deface
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -130,6 +130,7 @@ extra_rdoc_files: []
130
130
  files:
131
131
  - LICENSE
132
132
  - README.md
133
+ - app/assets/images/admin/bg/spree_50.png
133
134
  - app/assets/images/credit_cards/amex_cid.gif
134
135
  - app/assets/images/credit_cards/credit_card.gif
135
136
  - app/assets/images/credit_cards/discover_cid.gif
@@ -157,10 +158,6 @@ files:
157
158
  - app/assets/images/icons/checkout.png
158
159
  - app/assets/images/icons/delete.png
159
160
  - app/assets/images/icons/update.png
160
- - app/assets/images/noimage/large.png
161
- - app/assets/images/noimage/mini.png
162
- - app/assets/images/noimage/product.png
163
- - app/assets/images/noimage/small.png
164
161
  - app/assets/images/spinner.gif
165
162
  - app/assets/images/store/cart.png
166
163
  - app/assets/images/store/select_arrow.gif
@@ -168,7 +165,6 @@ files:
168
165
  - app/assets/javascripts/store/checkout.js.coffee
169
166
  - app/assets/javascripts/store/product.js.coffee
170
167
  - app/assets/javascripts/store/spree_frontend.js
171
- - app/assets/stylesheets/admin/plugins/font-awesome.scss
172
168
  - app/assets/stylesheets/store/_variables.scss
173
169
  - app/assets/stylesheets/store/screen.css.scss
174
170
  - app/assets/stylesheets/store/spree_frontend.css
@@ -224,6 +220,7 @@ files:
224
220
  - app/views/spree/shared/unauthorized.html.erb
225
221
  - app/views/spree/taxons/_taxon.html.erb
226
222
  - app/views/spree/taxons/show.html.erb
223
+ - config/initializers/canonical_rails.rb
227
224
  - config/initializers/check_for_orphaned_preferences.rb
228
225
  - config/initializers/deprecation_checker.rb
229
226
  - config/initializers/rails_5868.rb
Binary file
Binary file
Binary file
Binary file
@@ -1,303 +0,0 @@
1
- /* Font Awesome
2
- the iconic font designed for use with Twitter Bootstrap
3
- -------------------------------------------------------
4
- The full suite of pictographic icons, examples, and documentation
5
- can be found at: http://fortawesome.github.com/Font-Awesome/
6
-
7
- License
8
- -------------------------------------------------------
9
- The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
10
- http://creativecommons.org/licenses/by/3.0/ A mention of
11
- 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
12
- source code is considered acceptable attribution (most common on the web).
13
- If human readable source code is not available to the end user, a mention in
14
- an 'About' or 'Credits' screen is considered acceptable (most common in desktop
15
- or mobile software).
16
-
17
- Contact
18
- -------------------------------------------------------
19
- Email: dave@davegandy.com
20
- Twitter: http://twitter.com/fortaweso_me
21
- Work: http://lemonwi.se co-founder
22
-
23
- */
24
- @font-face {
25
- font-family: "FontAwesome";
26
- src: font-url('fontawesome-webfont.eot');
27
- src: font-url('fontawesome-webfont.eot?#iefix') format('eot'),font-url('fontawesome-webfont.woff') format('woff'), font-url('fontawesome-webfont.ttf') format('truetype'), font-url('fontawesome-webfont.svg#FontAwesome') format('svg');
28
- font-weight: normal;
29
- font-style: normal;
30
- }
31
-
32
- /* Font Awesome styles
33
- ------------------------------------------------------- */
34
- [class^="icon-"]:before, [class*=" icon-"]:before {
35
- font-family: FontAwesome;
36
- font-weight: normal;
37
- font-style: normal;
38
- display: inline-block;
39
- text-decoration: inherit;
40
- }
41
- a [class^="icon-"], a [class*=" icon-"] {
42
- display: inline-block;
43
- text-decoration: inherit;
44
- }
45
- /* makes the font 33% larger relative to the icon container */
46
- .icon-large:before {
47
- vertical-align: top;
48
- font-size: 1.3333333333333333em;
49
- }
50
- .btn [class^="icon-"], .btn [class*=" icon-"] {
51
- /* keeps button heights with and without icons the same */
52
-
53
- line-height: .9em;
54
- }
55
- li [class^="icon-"], li [class*=" icon-"] {
56
- display: inline-block;
57
- width: 1.25em;
58
- text-align: center;
59
- }
60
- li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] {
61
- /* 1.5 increased font size for icon-large * 1.25 width */
62
-
63
- width: 1.875em;
64
- }
65
- li[class^="icon-"], li[class*=" icon-"] {
66
- margin-left: 0;
67
- list-style-type: none;
68
- }
69
- li[class^="icon-"]:before, li[class*=" icon-"]:before {
70
- text-indent: -2em;
71
- text-align: center;
72
- }
73
- li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before {
74
- text-indent: -1.3333333333333333em;
75
- }
76
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
77
- readers do not read off random characters that represent icons */
78
- .icon-glass:before { content: "\f000"; }
79
- .icon-music:before { content: "\f001"; }
80
- .icon-search:before { content: "\f002"; }
81
- .icon-envelope:before { content: "\f003"; }
82
- .icon-heart:before { content: "\f004"; }
83
- .icon-star:before { content: "\f005"; }
84
- .icon-star-empty:before { content: "\f006"; }
85
- .icon-user:before { content: "\f007"; }
86
- .icon-film:before { content: "\f008"; }
87
- .icon-th-large:before { content: "\f009"; }
88
- .icon-th:before { content: "\f00a"; }
89
- .icon-th-list:before { content: "\f00b"; }
90
- .icon-ok:before { content: "\f00c"; }
91
- .icon-remove:before { content: "\f00d"; }
92
- .icon-zoom-in:before { content: "\f00e"; }
93
-
94
- .icon-zoom-out:before { content: "\f010"; }
95
- .icon-off:before { content: "\f011"; }
96
- .icon-signal:before { content: "\f012"; }
97
- .icon-cog:before { content: "\f013"; }
98
- .icon-trash:before { content: "\f014"; }
99
- .icon-home:before { content: "\f015"; }
100
- .icon-file:before { content: "\f016"; }
101
- .icon-time:before { content: "\f017"; }
102
- .icon-road:before { content: "\f018"; }
103
- .icon-download-alt:before { content: "\f019"; }
104
- .icon-download:before { content: "\f01a"; }
105
- .icon-upload:before { content: "\f01b"; }
106
- .icon-inbox:before { content: "\f01c"; }
107
- .icon-play-circle:before { content: "\f01d"; }
108
- .icon-repeat:before { content: "\f01e"; }
109
-
110
- /* \f020 doesn't work in Safari. all shifted one down */
111
- .icon-refresh:before { content: "\f021"; }
112
- .icon-list-alt:before { content: "\f022"; }
113
- .icon-lock:before { content: "\f023"; }
114
- .icon-flag:before { content: "\f024"; }
115
- .icon-headphones:before { content: "\f025"; }
116
- .icon-volume-off:before { content: "\f026"; }
117
- .icon-volume-down:before { content: "\f027"; }
118
- .icon-volume-up:before { content: "\f028"; }
119
- .icon-qrcode:before { content: "\f029"; }
120
- .icon-barcode:before { content: "\f02a"; }
121
- .icon-tag:before { content: "\f02b"; }
122
- .icon-tags:before { content: "\f02c"; }
123
- .icon-book:before { content: "\f02d"; }
124
- .icon-bookmark:before { content: "\f02e"; }
125
- .icon-print:before { content: "\f02f"; }
126
-
127
- .icon-camera:before { content: "\f030"; }
128
- .icon-font:before { content: "\f031"; }
129
- .icon-bold:before { content: "\f032"; }
130
- .icon-italic:before { content: "\f033"; }
131
- .icon-text-height:before { content: "\f034"; }
132
- .icon-text-width:before { content: "\f035"; }
133
- .icon-align-left:before { content: "\f036"; }
134
- .icon-align-center:before { content: "\f037"; }
135
- .icon-align-right:before { content: "\f038"; }
136
- .icon-align-justify:before { content: "\f039"; }
137
- .icon-list:before { content: "\f03a"; }
138
- .icon-indent-left:before { content: "\f03b"; }
139
- .icon-indent-right:before { content: "\f03c"; }
140
- .icon-facetime-video:before { content: "\f03d"; }
141
- .icon-picture:before { content: "\f03e"; }
142
-
143
- .icon-pencil:before { content: "\f040"; }
144
- .icon-map-marker:before { content: "\f041"; }
145
- .icon-adjust:before { content: "\f042"; }
146
- .icon-tint:before { content: "\f043"; }
147
- .icon-edit:before { content: "\f044"; }
148
- .icon-share:before { content: "\f045"; }
149
- .icon-check:before { content: "\f046"; }
150
- .icon-move:before { content: "\f047"; }
151
- .icon-step-backward:before { content: "\f048"; }
152
- .icon-fast-backward:before { content: "\f049"; }
153
- .icon-backward:before { content: "\f04a"; }
154
- .icon-play:before { content: "\f04b"; }
155
- .icon-pause:before { content: "\f04c"; }
156
- .icon-stop:before { content: "\f04d"; }
157
- .icon-forward:before { content: "\f04e"; }
158
-
159
- .icon-fast-forward:before { content: "\f050"; }
160
- .icon-step-forward:before { content: "\f051"; }
161
- .icon-eject:before { content: "\f052"; }
162
- .icon-chevron-left:before { content: "\f053"; }
163
- .icon-chevron-right:before { content: "\f054"; }
164
- .icon-plus-sign:before { content: "\f055"; }
165
- .icon-minus-sign:before { content: "\f056"; }
166
- .icon-remove-sign:before { content: "\f057"; }
167
- .icon-ok-sign:before { content: "\f058"; }
168
- .icon-question-sign:before { content: "\f059"; }
169
- .icon-info-sign:before { content: "\f05a"; }
170
- .icon-screenshot:before { content: "\f05b"; }
171
- .icon-remove-circle:before { content: "\f05c"; }
172
- .icon-ok-circle:before { content: "\f05d"; }
173
- .icon-ban-circle:before { content: "\f05e"; }
174
-
175
- .icon-arrow-left:before { content: "\f060"; }
176
- .icon-arrow-right:before { content: "\f061"; }
177
- .icon-arrow-up:before { content: "\f062"; }
178
- .icon-arrow-down:before { content: "\f063"; }
179
- .icon-share-alt:before { content: "\f064"; }
180
- .icon-resize-full:before { content: "\f065"; }
181
- .icon-resize-small:before { content: "\f066"; }
182
- .icon-plus:before { content: "\f067"; }
183
- .icon-minus:before { content: "\f068"; }
184
- .icon-asterisk:before { content: "\f069"; }
185
- .icon-exclamation-sign:before { content: "\f06a"; }
186
- .icon-gift:before { content: "\f06b"; }
187
- .icon-leaf:before { content: "\f06c"; }
188
- .icon-fire:before { content: "\f06d"; }
189
- .icon-eye-open:before { content: "\f06e"; }
190
-
191
- .icon-eye-close:before { content: "\f070"; }
192
- .icon-warning-sign:before { content: "\f071"; }
193
- .icon-plane:before { content: "\f072"; }
194
- .icon-calendar:before { content: "\f073"; }
195
- .icon-random:before { content: "\f074"; }
196
- .icon-comment:before { content: "\f075"; }
197
- .icon-magnet:before { content: "\f076"; }
198
- .icon-chevron-up:before { content: "\f077"; }
199
- .icon-chevron-down:before { content: "\f078"; }
200
- .icon-retweet:before { content: "\f079"; }
201
- .icon-shopping-cart:before { content: "\f07a"; }
202
- .icon-folder-close:before { content: "\f07b"; }
203
- .icon-folder-open:before { content: "\f07c"; }
204
- .icon-resize-vertical:before { content: "\f07d"; }
205
- .icon-resize-horizontal:before { content: "\f07e"; }
206
-
207
- .icon-bar-chart:before { content: "\f080"; }
208
- .icon-twitter-sign:before { content: "\f081"; }
209
- .icon-facebook-sign:before { content: "\f082"; }
210
- .icon-camera-retro:before { content: "\f083"; }
211
- .icon-key:before { content: "\f084"; }
212
- .icon-cogs:before { content: "\f085"; }
213
- .icon-comments:before { content: "\f086"; }
214
- .icon-thumbs-up:before { content: "\f087"; }
215
- .icon-thumbs-down:before { content: "\f088"; }
216
- .icon-star-half:before { content: "\f089"; }
217
- .icon-heart-empty:before { content: "\f08a"; }
218
- .icon-signout:before { content: "\f08b"; }
219
- .icon-linkedin-sign:before { content: "\f08c"; }
220
- .icon-pushpin:before { content: "\f08d"; }
221
- .icon-external-link:before { content: "\f08e"; }
222
-
223
- .icon-signin:before { content: "\f090"; }
224
- .icon-trophy:before { content: "\f091"; }
225
- .icon-github-sign:before { content: "\f092"; }
226
- .icon-upload-alt:before { content: "\f093"; }
227
- .icon-lemon:before { content: "\f094"; }
228
- .icon-phone:before { content: "\f095"; }
229
- .icon-check-empty:before { content: "\f096"; }
230
- .icon-bookmark-empty:before { content: "\f097"; }
231
- .icon-phone-sign:before { content: "\f098"; }
232
- .icon-twitter:before { content: "\f099"; }
233
- .icon-facebook:before { content: "\f09a"; }
234
- .icon-github:before { content: "\f09b"; }
235
- .icon-unlock:before { content: "\f09c"; }
236
- .icon-credit-card:before { content: "\f09d"; }
237
- .icon-rss:before { content: "\f09e"; }
238
-
239
- .icon-hdd:before { content: "\f0a0"; }
240
- .icon-bullhorn:before { content: "\f0a1"; }
241
- .icon-bell:before { content: "\f0a2"; }
242
- .icon-certificate:before { content: "\f0a3"; }
243
- .icon-hand-right:before { content: "\f0a4"; }
244
- .icon-hand-left:before { content: "\f0a5"; }
245
- .icon-hand-up:before { content: "\f0a6"; }
246
- .icon-hand-down:before { content: "\f0a7"; }
247
- .icon-circle-arrow-left:before { content: "\f0a8"; }
248
- .icon-circle-arrow-right:before { content: "\f0a9"; }
249
- .icon-circle-arrow-up:before { content: "\f0aa"; }
250
- .icon-circle-arrow-down:before { content: "\f0ab"; }
251
- .icon-globe:before { content: "\f0ac"; }
252
- .icon-wrench:before { content: "\f0ad"; }
253
- .icon-tasks:before { content: "\f0ae"; }
254
-
255
- .icon-filter:before { content: "\f0b0"; }
256
- .icon-briefcase:before { content: "\f0b1"; }
257
- .icon-fullscreen:before { content: "\f0b2"; }
258
-
259
- .icon-group:before { content: "\f0c0"; }
260
- .icon-link:before { content: "\f0c1"; }
261
- .icon-cloud:before { content: "\f0c2"; }
262
- .icon-beaker:before { content: "\f0c3"; }
263
- .icon-cut:before { content: "\f0c4"; }
264
- .icon-copy:before { content: "\f0c5"; }
265
- .icon-paper-clip:before { content: "\f0c6"; }
266
- .icon-save:before { content: "\f0c7"; }
267
- .icon-sign-blank:before { content: "\f0c8"; }
268
- .icon-reorder:before { content: "\f0c9"; }
269
- .icon-list-ul:before { content: "\f0ca"; }
270
- .icon-list-ol:before { content: "\f0cb"; }
271
- .icon-strikethrough:before { content: "\f0cc"; }
272
- .icon-underline:before { content: "\f0cd"; }
273
- .icon-table:before { content: "\f0ce"; }
274
-
275
- .icon-magic:before { content: "\f0d0"; }
276
- .icon-truck:before { content: "\f0d1"; }
277
- .icon-pinterest:before { content: "\f0d2"; }
278
- .icon-pinterest-sign:before { content: "\f0d3"; }
279
- .icon-google-plus-sign:before { content: "\f0d4"; }
280
- .icon-google-plus:before { content: "\f0d5"; }
281
- .icon-money:before { content: "\f0d6"; }
282
- .icon-caret-down:before { content: "\f0d7"; }
283
- .icon-caret-up:before { content: "\f0d8"; }
284
- .icon-caret-left:before { content: "\f0d9"; }
285
- .icon-caret-right:before { content: "\f0da"; }
286
- .icon-columns:before { content: "\f0db"; }
287
- .icon-sort:before { content: "\f0dc"; }
288
- .icon-sort-down:before { content: "\f0dd"; }
289
- .icon-sort-up:before { content: "\f0de"; }
290
-
291
- .icon-envelope-alt:before { content: "\f0e0"; }
292
- .icon-linkedin:before { content: "\f0e1"; }
293
- .icon-undo:before { content: "\f0e2"; }
294
- .icon-legal:before { content: "\f0e3"; }
295
- .icon-dashboard:before { content: "\f0e4"; }
296
- .icon-comment-alt:before { content: "\f0e5"; }
297
- .icon-comments-alt:before { content: "\f0e6"; }
298
- .icon-bolt:before { content: "\f0e7"; }
299
- .icon-sitemap:before { content: "\f0e8"; }
300
- .icon-umbrella:before { content: "\f0e9"; }
301
- .icon-paste:before { content: "\f0ea"; }
302
-
303
- .icon-user-md:before { content: "\f200"; }