material_icons 1.0.0rc1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17484f6ed3e05dce0bc5b5cd275e9e5113d56273
4
- data.tar.gz: ae8dee91cc91eb2dd7e13f64b9bfa4901238e0c1
3
+ metadata.gz: 445027ec6736e2f6f686969613ab09663856b959
4
+ data.tar.gz: edb5388470e4fb683c6746b9473a8ac9faea2bb8
5
5
  SHA512:
6
- metadata.gz: d8a852033b39ff60212eb405d3baa7dda5e9fbd4259761b295a0a1bc0dde84c010458a3502945144e0019977feba717f0c581ca6c358179eb1999cc4063d3abe
7
- data.tar.gz: f5f3a328d0e9e1b9b5ab575a3611b8711a444343f4596f83994ea159179cc0f999354c2c2bc44d9e878f6f6971b6c52c7c72285a7403667fdffa3b8551429629
6
+ metadata.gz: cbef8d4296fe8f43aebf0c4aaf32e658894644826967d79f415c37894135d2858c956123458ddd1ddf41f8fecaffa86d9759090bff78031ed03c8f85081607dc
7
+ data.tar.gz: dc11f14f81bcb6ddff51760a23515001d688e80059a241c43b145636079f12b02ff5c466294434496d68c6f3765b6a0483250f4e44cd872402eb2ddcc55d5ab9
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- [![Gem Version](https://badge.fury.io/rb/material_icons.svg)](http://badge.fury.io/rb/material_icons)
1
+ [![Gem Version](https://badge.fury.io/rb/material_icons.svg)](http://badge.fury.io/rb/material_icons) [![Build Status](https://travis-ci.org/Angelmmiguel/material_icons.svg?branch=master)](https://travis-ci.org/Angelmmiguel/material_icons)
2
2
 
3
3
  ![Material Icons for Rails](https://raw.githubusercontent.com/Angelmmiguel/material_icons/master/material.png)
4
4
 
5
- # Material Icons
5
+ # Material Icons for Rails
6
6
 
7
7
  [Google Material Icons](https://google.github.io/material-design-icons/) is a +750 set of icons based on Material Design guidelines. With this gem you can add it easily to your Rails projects.
8
8
 
@@ -58,7 +58,7 @@ An example of icon is:
58
58
 
59
59
  ## Helpers
60
60
 
61
- MaterialIcons provide a two helpers to build the HTML code of icons. The methods are `material_icon` and `mi`. These helpers use cascade style to set the icon and options. Using same example:
61
+ Material Icons provide two helpers to build the HTML code of icons. The methods are `material_icon` and `mi`. These helpers use cascade style to set the icon and options. Using same example:
62
62
 
63
63
  <%= material_icon.face %>
64
64
  # <i class="material-icons">face</i>
@@ -66,11 +66,16 @@ MaterialIcons provide a two helpers to build the HTML code of icons. The methods
66
66
  <%= material_icon.face.md_36 %>
67
67
  # <i class="material-icons md-36">face</i>
68
68
 
69
+ # This is a special case because the icon name starts with a number. Only
70
+ # 3d_rotation has this trouble.
71
+ <%= material_icon.three_d_rotation.md_36 %>
72
+ # <i class="material-icons md-36">3d_rotation</i>
73
+
69
74
  # Rotation and custom css class
70
75
  <%= mi.face.r90.css_class('my_class') %>
71
76
  # <i class="material-icons r90 my_class">face</i>
72
77
 
73
- Predefined methods are:
78
+ Allowed methods are:
74
79
 
75
80
  # Rotation methods
76
81
  r90
@@ -119,20 +124,26 @@ Next, you need to specify the helper to use unicode because it uses ligatures by
119
124
  config.unicode = true
120
125
  end
121
126
 
122
- Now, the text inside of HTML tag is the CSS class!
127
+ The [Helpers](#helpers) has the same syntax.
123
128
 
124
- <i class="material-icons face"></i>
125
- <i class="material-icons md-36 face"></i>
129
+ Now, the text inside of HTML tag is the CSS class! CSS Icon classes use underscores.
126
130
 
127
- The [Helpers](#helpers) has the same syntax.
131
+ <i class="material-icons face"></i>
132
+ <i class="mi md-36 face"></i>
133
+ <i class="mi add_box"></i>
134
+ <i class="mi three_d_rotation"></i>
128
135
 
129
136
  This version increase the size of the CSS file too. To see the difference, these are the size for uncompressed CSS files:
130
137
 
131
138
  material_icons.css.erb 3 KB
132
139
  material_icons_unicode.css.erb 68 KB
133
140
 
141
+ # They are using Material icons for Rails :)
142
+
143
+ * [Materialup.com](http://www.materialup.com): a big community to share, discover and learn about Material Design.
144
+
134
145
  # License
135
146
 
136
147
  Google Material Icons are under [Creative Common Attribution 4.0 International License (CC-BY 4.0)](http://creativecommons.org/licenses/by/4.0/). But attribution [is not required](https://github.com/google/material-design-icons#license).
137
148
 
138
- Material Icons gem isgs released under the MIT license.
149
+ Material Icons gem is released under the MIT license. Copyright [@Laux_es ;)](https://twitter.com/Laux_es)
data/Rakefile CHANGED
@@ -18,7 +18,9 @@ namespace :material_icons do
18
18
  # Load from codepoints
19
19
  File.readlines('codepoints').each do |line|
20
20
  el = line.split(' ')
21
- css_class = el.first.gsub('_', '-')
21
+ css_class = el.first
22
+ # Fix for icons that start with number
23
+ css_class = 'three_d_rotation' if css_class == '3d_rotation'
22
24
  unicode = el.last
23
25
  # Need this strange indentation for CSS...
24
26
  css =
@@ -53,7 +53,7 @@
53
53
 
54
54
  /* Rules for using icons as black on a light background. */
55
55
  .material-icons.md-dark, .mi.md-dark { color: rgba(0, 0, 0, 0.54); }
56
- .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive. { color: rgba(0, 0, 0, 0.26); }
56
+ .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
57
57
 
58
58
  /* Rules for using icons as white on a dark background. */
59
59
  .material-icons.md-light, .mi.md-light { color: rgba(255, 255, 255, 1); }
@@ -89,4 +89,4 @@
89
89
  -webkit-transform: scale(1, -1);
90
90
  -ms-transform: scale(1, -1);
91
91
  transform: scale(1, -1);
92
- }
92
+ }
@@ -44,7 +44,7 @@
44
44
 
45
45
  /* Rules for using icons as black on a light background. */
46
46
  .material-icons.md-dark, .mi.md-dark { color: rgba(0, 0, 0, 0.54); }
47
- .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive. { color: rgba(0, 0, 0, 0.26); }
47
+ .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
48
48
 
49
49
  /* Rules for using icons as white on a dark background. */
50
50
  .material-icons.md-light, .mi.md-light { color: rgba(255, 255, 255, 1); }
@@ -83,40 +83,40 @@
83
83
  }
84
84
 
85
85
  /* Unicode */
86
- .material-icons.3d-rotation:before,
87
- .mi.3d-rotation:before {
86
+ .material-icons.three_d_rotation:before,
87
+ .mi.three_d_rotation:before {
88
88
  content: '\e84d';
89
89
  }
90
- .material-icons.access-alarm:before,
91
- .mi.access-alarm:before {
90
+ .material-icons.access_alarm:before,
91
+ .mi.access_alarm:before {
92
92
  content: '\e190';
93
93
  }
94
- .material-icons.access-alarms:before,
95
- .mi.access-alarms:before {
94
+ .material-icons.access_alarms:before,
95
+ .mi.access_alarms:before {
96
96
  content: '\e191';
97
97
  }
98
- .material-icons.access-time:before,
99
- .mi.access-time:before {
98
+ .material-icons.access_time:before,
99
+ .mi.access_time:before {
100
100
  content: '\e192';
101
101
  }
102
102
  .material-icons.accessibility:before,
103
103
  .mi.accessibility:before {
104
104
  content: '\e84e';
105
105
  }
106
- .material-icons.account-balance:before,
107
- .mi.account-balance:before {
106
+ .material-icons.account_balance:before,
107
+ .mi.account_balance:before {
108
108
  content: '\e84f';
109
109
  }
110
- .material-icons.account-balance-wallet:before,
111
- .mi.account-balance-wallet:before {
110
+ .material-icons.account_balance_wallet:before,
111
+ .mi.account_balance_wallet:before {
112
112
  content: '\e850';
113
113
  }
114
- .material-icons.account-box:before,
115
- .mi.account-box:before {
114
+ .material-icons.account_box:before,
115
+ .mi.account_box:before {
116
116
  content: '\e851';
117
117
  }
118
- .material-icons.account-circle:before,
119
- .mi.account-circle:before {
118
+ .material-icons.account_circle:before,
119
+ .mi.account_circle:before {
120
120
  content: '\e853';
121
121
  }
122
122
  .material-icons.adb:before,
@@ -127,76 +127,76 @@
127
127
  .mi.add:before {
128
128
  content: '\e145';
129
129
  }
130
- .material-icons.add-alarm:before,
131
- .mi.add-alarm:before {
130
+ .material-icons.add_alarm:before,
131
+ .mi.add_alarm:before {
132
132
  content: '\e193';
133
133
  }
134
- .material-icons.add-alert:before,
135
- .mi.add-alert:before {
134
+ .material-icons.add_alert:before,
135
+ .mi.add_alert:before {
136
136
  content: '\e003';
137
137
  }
138
- .material-icons.add-box:before,
139
- .mi.add-box:before {
138
+ .material-icons.add_box:before,
139
+ .mi.add_box:before {
140
140
  content: '\e146';
141
141
  }
142
- .material-icons.add-circle:before,
143
- .mi.add-circle:before {
142
+ .material-icons.add_circle:before,
143
+ .mi.add_circle:before {
144
144
  content: '\e147';
145
145
  }
146
- .material-icons.add-circle-outline:before,
147
- .mi.add-circle-outline:before {
146
+ .material-icons.add_circle_outline:before,
147
+ .mi.add_circle_outline:before {
148
148
  content: '\e148';
149
149
  }
150
- .material-icons.add-shopping-cart:before,
151
- .mi.add-shopping-cart:before {
150
+ .material-icons.add_shopping_cart:before,
151
+ .mi.add_shopping_cart:before {
152
152
  content: '\e854';
153
153
  }
154
- .material-icons.add-to-photos:before,
155
- .mi.add-to-photos:before {
154
+ .material-icons.add_to_photos:before,
155
+ .mi.add_to_photos:before {
156
156
  content: '\e39d';
157
157
  }
158
158
  .material-icons.adjust:before,
159
159
  .mi.adjust:before {
160
160
  content: '\e39e';
161
161
  }
162
- .material-icons.airline-seat-flat:before,
163
- .mi.airline-seat-flat:before {
162
+ .material-icons.airline_seat_flat:before,
163
+ .mi.airline_seat_flat:before {
164
164
  content: '\e630';
165
165
  }
166
- .material-icons.airline-seat-flat-angled:before,
167
- .mi.airline-seat-flat-angled:before {
166
+ .material-icons.airline_seat_flat_angled:before,
167
+ .mi.airline_seat_flat_angled:before {
168
168
  content: '\e631';
169
169
  }
170
- .material-icons.airline-seat-individual-suite:before,
171
- .mi.airline-seat-individual-suite:before {
170
+ .material-icons.airline_seat_individual_suite:before,
171
+ .mi.airline_seat_individual_suite:before {
172
172
  content: '\e632';
173
173
  }
174
- .material-icons.airline-seat-legroom-extra:before,
175
- .mi.airline-seat-legroom-extra:before {
174
+ .material-icons.airline_seat_legroom_extra:before,
175
+ .mi.airline_seat_legroom_extra:before {
176
176
  content: '\e633';
177
177
  }
178
- .material-icons.airline-seat-legroom-normal:before,
179
- .mi.airline-seat-legroom-normal:before {
178
+ .material-icons.airline_seat_legroom_normal:before,
179
+ .mi.airline_seat_legroom_normal:before {
180
180
  content: '\e634';
181
181
  }
182
- .material-icons.airline-seat-legroom-reduced:before,
183
- .mi.airline-seat-legroom-reduced:before {
182
+ .material-icons.airline_seat_legroom_reduced:before,
183
+ .mi.airline_seat_legroom_reduced:before {
184
184
  content: '\e635';
185
185
  }
186
- .material-icons.airline-seat-recline-extra:before,
187
- .mi.airline-seat-recline-extra:before {
186
+ .material-icons.airline_seat_recline_extra:before,
187
+ .mi.airline_seat_recline_extra:before {
188
188
  content: '\e636';
189
189
  }
190
- .material-icons.airline-seat-recline-normal:before,
191
- .mi.airline-seat-recline-normal:before {
190
+ .material-icons.airline_seat_recline_normal:before,
191
+ .mi.airline_seat_recline_normal:before {
192
192
  content: '\e637';
193
193
  }
194
- .material-icons.airplanemode-active:before,
195
- .mi.airplanemode-active:before {
194
+ .material-icons.airplanemode_active:before,
195
+ .mi.airplanemode_active:before {
196
196
  content: '\e195';
197
197
  }
198
- .material-icons.airplanemode-inactive:before,
199
- .mi.airplanemode-inactive:before {
198
+ .material-icons.airplanemode_inactive:before,
199
+ .mi.airplanemode_inactive:before {
200
200
  content: '\e194';
201
201
  }
202
202
  .material-icons.airplay:before,
@@ -207,16 +207,16 @@
207
207
  .mi.alarm:before {
208
208
  content: '\e855';
209
209
  }
210
- .material-icons.alarm-add:before,
211
- .mi.alarm-add:before {
210
+ .material-icons.alarm_add:before,
211
+ .mi.alarm_add:before {
212
212
  content: '\e856';
213
213
  }
214
- .material-icons.alarm-off:before,
215
- .mi.alarm-off:before {
214
+ .material-icons.alarm_off:before,
215
+ .mi.alarm_off:before {
216
216
  content: '\e857';
217
217
  }
218
- .material-icons.alarm-on:before,
219
- .mi.alarm-on:before {
218
+ .material-icons.alarm_on:before,
219
+ .mi.alarm_on:before {
220
220
  content: '\e858';
221
221
  }
222
222
  .material-icons.album:before,
@@ -239,28 +239,28 @@
239
239
  .mi.archive:before {
240
240
  content: '\e149';
241
241
  }
242
- .material-icons.arrow-back:before,
243
- .mi.arrow-back:before {
242
+ .material-icons.arrow_back:before,
243
+ .mi.arrow_back:before {
244
244
  content: '\e5c4';
245
245
  }
246
- .material-icons.arrow-drop-down:before,
247
- .mi.arrow-drop-down:before {
246
+ .material-icons.arrow_drop_down:before,
247
+ .mi.arrow_drop_down:before {
248
248
  content: '\e5c5';
249
249
  }
250
- .material-icons.arrow-drop-down-circle:before,
251
- .mi.arrow-drop-down-circle:before {
250
+ .material-icons.arrow_drop_down_circle:before,
251
+ .mi.arrow_drop_down_circle:before {
252
252
  content: '\e5c6';
253
253
  }
254
- .material-icons.arrow-drop-up:before,
255
- .mi.arrow-drop-up:before {
254
+ .material-icons.arrow_drop_up:before,
255
+ .mi.arrow_drop_up:before {
256
256
  content: '\e5c7';
257
257
  }
258
- .material-icons.arrow-forward:before,
259
- .mi.arrow-forward:before {
258
+ .material-icons.arrow_forward:before,
259
+ .mi.arrow_forward:before {
260
260
  content: '\e5c8';
261
261
  }
262
- .material-icons.aspect-ratio:before,
263
- .mi.aspect-ratio:before {
262
+ .material-icons.aspect_ratio:before,
263
+ .mi.aspect_ratio:before {
264
264
  content: '\e85b';
265
265
  }
266
266
  .material-icons.assessment:before,
@@ -271,40 +271,40 @@
271
271
  .mi.assignment:before {
272
272
  content: '\e85d';
273
273
  }
274
- .material-icons.assignment-ind:before,
275
- .mi.assignment-ind:before {
274
+ .material-icons.assignment_ind:before,
275
+ .mi.assignment_ind:before {
276
276
  content: '\e85e';
277
277
  }
278
- .material-icons.assignment-late:before,
279
- .mi.assignment-late:before {
278
+ .material-icons.assignment_late:before,
279
+ .mi.assignment_late:before {
280
280
  content: '\e85f';
281
281
  }
282
- .material-icons.assignment-return:before,
283
- .mi.assignment-return:before {
282
+ .material-icons.assignment_return:before,
283
+ .mi.assignment_return:before {
284
284
  content: '\e860';
285
285
  }
286
- .material-icons.assignment-returned:before,
287
- .mi.assignment-returned:before {
286
+ .material-icons.assignment_returned:before,
287
+ .mi.assignment_returned:before {
288
288
  content: '\e861';
289
289
  }
290
- .material-icons.assignment-turned-in:before,
291
- .mi.assignment-turned-in:before {
290
+ .material-icons.assignment_turned_in:before,
291
+ .mi.assignment_turned_in:before {
292
292
  content: '\e862';
293
293
  }
294
294
  .material-icons.assistant:before,
295
295
  .mi.assistant:before {
296
296
  content: '\e39f';
297
297
  }
298
- .material-icons.assistant-photo:before,
299
- .mi.assistant-photo:before {
298
+ .material-icons.assistant_photo:before,
299
+ .mi.assistant_photo:before {
300
300
  content: '\e3a0';
301
301
  }
302
- .material-icons.attach-file:before,
303
- .mi.attach-file:before {
302
+ .material-icons.attach_file:before,
303
+ .mi.attach_file:before {
304
304
  content: '\e226';
305
305
  }
306
- .material-icons.attach-money:before,
307
- .mi.attach-money:before {
306
+ .material-icons.attach_money:before,
307
+ .mi.attach_money:before {
308
308
  content: '\e227';
309
309
  }
310
310
  .material-icons.attachment:before,
@@ -319,8 +319,8 @@
319
319
  .mi.autorenew:before {
320
320
  content: '\e863';
321
321
  }
322
- .material-icons.av-timer:before,
323
- .mi.av-timer:before {
322
+ .material-icons.av_timer:before,
323
+ .mi.av_timer:before {
324
324
  content: '\e01b';
325
325
  }
326
326
  .material-icons.backspace:before,
@@ -331,24 +331,24 @@
331
331
  .mi.backup:before {
332
332
  content: '\e864';
333
333
  }
334
- .material-icons.battery-alert:before,
335
- .mi.battery-alert:before {
334
+ .material-icons.battery_alert:before,
335
+ .mi.battery_alert:before {
336
336
  content: '\e19c';
337
337
  }
338
- .material-icons.battery-charging-full:before,
339
- .mi.battery-charging-full:before {
338
+ .material-icons.battery_charging_full:before,
339
+ .mi.battery_charging_full:before {
340
340
  content: '\e1a3';
341
341
  }
342
- .material-icons.battery-full:before,
343
- .mi.battery-full:before {
342
+ .material-icons.battery_full:before,
343
+ .mi.battery_full:before {
344
344
  content: '\e1a4';
345
345
  }
346
- .material-icons.battery-std:before,
347
- .mi.battery-std:before {
346
+ .material-icons.battery_std:before,
347
+ .mi.battery_std:before {
348
348
  content: '\e1a5';
349
349
  }
350
- .material-icons.battery-unknown:before,
351
- .mi.battery-unknown:before {
350
+ .material-icons.battery_unknown:before,
351
+ .mi.battery_unknown:before {
352
352
  content: '\e1a6';
353
353
  }
354
354
  .material-icons.beenhere:before,
@@ -363,36 +363,36 @@
363
363
  .mi.bluetooth:before {
364
364
  content: '\e1a7';
365
365
  }
366
- .material-icons.bluetooth-audio:before,
367
- .mi.bluetooth-audio:before {
366
+ .material-icons.bluetooth_audio:before,
367
+ .mi.bluetooth_audio:before {
368
368
  content: '\e60f';
369
369
  }
370
- .material-icons.bluetooth-connected:before,
371
- .mi.bluetooth-connected:before {
370
+ .material-icons.bluetooth_connected:before,
371
+ .mi.bluetooth_connected:before {
372
372
  content: '\e1a8';
373
373
  }
374
- .material-icons.bluetooth-disabled:before,
375
- .mi.bluetooth-disabled:before {
374
+ .material-icons.bluetooth_disabled:before,
375
+ .mi.bluetooth_disabled:before {
376
376
  content: '\e1a9';
377
377
  }
378
- .material-icons.bluetooth-searching:before,
379
- .mi.bluetooth-searching:before {
378
+ .material-icons.bluetooth_searching:before,
379
+ .mi.bluetooth_searching:before {
380
380
  content: '\e1aa';
381
381
  }
382
- .material-icons.blur-circular:before,
383
- .mi.blur-circular:before {
382
+ .material-icons.blur_circular:before,
383
+ .mi.blur_circular:before {
384
384
  content: '\e3a2';
385
385
  }
386
- .material-icons.blur-linear:before,
387
- .mi.blur-linear:before {
386
+ .material-icons.blur_linear:before,
387
+ .mi.blur_linear:before {
388
388
  content: '\e3a3';
389
389
  }
390
- .material-icons.blur-off:before,
391
- .mi.blur-off:before {
390
+ .material-icons.blur_off:before,
391
+ .mi.blur_off:before {
392
392
  content: '\e3a4';
393
393
  }
394
- .material-icons.blur-on:before,
395
- .mi.blur-on:before {
394
+ .material-icons.blur_on:before,
395
+ .mi.blur_on:before {
396
396
  content: '\e3a5';
397
397
  }
398
398
  .material-icons.book:before,
@@ -403,112 +403,112 @@
403
403
  .mi.bookmark:before {
404
404
  content: '\e866';
405
405
  }
406
- .material-icons.bookmark-border:before,
407
- .mi.bookmark-border:before {
406
+ .material-icons.bookmark_border:before,
407
+ .mi.bookmark_border:before {
408
408
  content: '\e867';
409
409
  }
410
- .material-icons.border-all:before,
411
- .mi.border-all:before {
410
+ .material-icons.border_all:before,
411
+ .mi.border_all:before {
412
412
  content: '\e228';
413
413
  }
414
- .material-icons.border-bottom:before,
415
- .mi.border-bottom:before {
414
+ .material-icons.border_bottom:before,
415
+ .mi.border_bottom:before {
416
416
  content: '\e229';
417
417
  }
418
- .material-icons.border-clear:before,
419
- .mi.border-clear:before {
418
+ .material-icons.border_clear:before,
419
+ .mi.border_clear:before {
420
420
  content: '\e22a';
421
421
  }
422
- .material-icons.border-color:before,
423
- .mi.border-color:before {
422
+ .material-icons.border_color:before,
423
+ .mi.border_color:before {
424
424
  content: '\e22b';
425
425
  }
426
- .material-icons.border-horizontal:before,
427
- .mi.border-horizontal:before {
426
+ .material-icons.border_horizontal:before,
427
+ .mi.border_horizontal:before {
428
428
  content: '\e22c';
429
429
  }
430
- .material-icons.border-inner:before,
431
- .mi.border-inner:before {
430
+ .material-icons.border_inner:before,
431
+ .mi.border_inner:before {
432
432
  content: '\e22d';
433
433
  }
434
- .material-icons.border-left:before,
435
- .mi.border-left:before {
434
+ .material-icons.border_left:before,
435
+ .mi.border_left:before {
436
436
  content: '\e22e';
437
437
  }
438
- .material-icons.border-outer:before,
439
- .mi.border-outer:before {
438
+ .material-icons.border_outer:before,
439
+ .mi.border_outer:before {
440
440
  content: '\e22f';
441
441
  }
442
- .material-icons.border-right:before,
443
- .mi.border-right:before {
442
+ .material-icons.border_right:before,
443
+ .mi.border_right:before {
444
444
  content: '\e230';
445
445
  }
446
- .material-icons.border-style:before,
447
- .mi.border-style:before {
446
+ .material-icons.border_style:before,
447
+ .mi.border_style:before {
448
448
  content: '\e231';
449
449
  }
450
- .material-icons.border-top:before,
451
- .mi.border-top:before {
450
+ .material-icons.border_top:before,
451
+ .mi.border_top:before {
452
452
  content: '\e232';
453
453
  }
454
- .material-icons.border-vertical:before,
455
- .mi.border-vertical:before {
454
+ .material-icons.border_vertical:before,
455
+ .mi.border_vertical:before {
456
456
  content: '\e233';
457
457
  }
458
- .material-icons.brightness-1:before,
459
- .mi.brightness-1:before {
458
+ .material-icons.brightness_1:before,
459
+ .mi.brightness_1:before {
460
460
  content: '\e3a6';
461
461
  }
462
- .material-icons.brightness-2:before,
463
- .mi.brightness-2:before {
462
+ .material-icons.brightness_2:before,
463
+ .mi.brightness_2:before {
464
464
  content: '\e3a7';
465
465
  }
466
- .material-icons.brightness-3:before,
467
- .mi.brightness-3:before {
466
+ .material-icons.brightness_3:before,
467
+ .mi.brightness_3:before {
468
468
  content: '\e3a8';
469
469
  }
470
- .material-icons.brightness-4:before,
471
- .mi.brightness-4:before {
470
+ .material-icons.brightness_4:before,
471
+ .mi.brightness_4:before {
472
472
  content: '\e3a9';
473
473
  }
474
- .material-icons.brightness-5:before,
475
- .mi.brightness-5:before {
474
+ .material-icons.brightness_5:before,
475
+ .mi.brightness_5:before {
476
476
  content: '\e3aa';
477
477
  }
478
- .material-icons.brightness-6:before,
479
- .mi.brightness-6:before {
478
+ .material-icons.brightness_6:before,
479
+ .mi.brightness_6:before {
480
480
  content: '\e3ab';
481
481
  }
482
- .material-icons.brightness-7:before,
483
- .mi.brightness-7:before {
482
+ .material-icons.brightness_7:before,
483
+ .mi.brightness_7:before {
484
484
  content: '\e3ac';
485
485
  }
486
- .material-icons.brightness-auto:before,
487
- .mi.brightness-auto:before {
486
+ .material-icons.brightness_auto:before,
487
+ .mi.brightness_auto:before {
488
488
  content: '\e1ab';
489
489
  }
490
- .material-icons.brightness-high:before,
491
- .mi.brightness-high:before {
490
+ .material-icons.brightness_high:before,
491
+ .mi.brightness_high:before {
492
492
  content: '\e1ac';
493
493
  }
494
- .material-icons.brightness-low:before,
495
- .mi.brightness-low:before {
494
+ .material-icons.brightness_low:before,
495
+ .mi.brightness_low:before {
496
496
  content: '\e1ad';
497
497
  }
498
- .material-icons.brightness-medium:before,
499
- .mi.brightness-medium:before {
498
+ .material-icons.brightness_medium:before,
499
+ .mi.brightness_medium:before {
500
500
  content: '\e1ae';
501
501
  }
502
- .material-icons.broken-image:before,
503
- .mi.broken-image:before {
502
+ .material-icons.broken_image:before,
503
+ .mi.broken_image:before {
504
504
  content: '\e3ad';
505
505
  }
506
506
  .material-icons.brush:before,
507
507
  .mi.brush:before {
508
508
  content: '\e3ae';
509
509
  }
510
- .material-icons.bug-report:before,
511
- .mi.bug-report:before {
510
+ .material-icons.bug_report:before,
511
+ .mi.bug_report:before {
512
512
  content: '\e868';
513
513
  }
514
514
  .material-icons.build:before,
@@ -531,128 +531,128 @@
531
531
  .mi.call:before {
532
532
  content: '\e0b0';
533
533
  }
534
- .material-icons.call-end:before,
535
- .mi.call-end:before {
534
+ .material-icons.call_end:before,
535
+ .mi.call_end:before {
536
536
  content: '\e0b1';
537
537
  }
538
- .material-icons.call-made:before,
539
- .mi.call-made:before {
538
+ .material-icons.call_made:before,
539
+ .mi.call_made:before {
540
540
  content: '\e0b2';
541
541
  }
542
- .material-icons.call-merge:before,
543
- .mi.call-merge:before {
542
+ .material-icons.call_merge:before,
543
+ .mi.call_merge:before {
544
544
  content: '\e0b3';
545
545
  }
546
- .material-icons.call-missed:before,
547
- .mi.call-missed:before {
546
+ .material-icons.call_missed:before,
547
+ .mi.call_missed:before {
548
548
  content: '\e0b4';
549
549
  }
550
- .material-icons.call-received:before,
551
- .mi.call-received:before {
550
+ .material-icons.call_received:before,
551
+ .mi.call_received:before {
552
552
  content: '\e0b5';
553
553
  }
554
- .material-icons.call-split:before,
555
- .mi.call-split:before {
554
+ .material-icons.call_split:before,
555
+ .mi.call_split:before {
556
556
  content: '\e0b6';
557
557
  }
558
558
  .material-icons.camera:before,
559
559
  .mi.camera:before {
560
560
  content: '\e3af';
561
561
  }
562
- .material-icons.camera-alt:before,
563
- .mi.camera-alt:before {
562
+ .material-icons.camera_alt:before,
563
+ .mi.camera_alt:before {
564
564
  content: '\e3b0';
565
565
  }
566
- .material-icons.camera-enhance:before,
567
- .mi.camera-enhance:before {
566
+ .material-icons.camera_enhance:before,
567
+ .mi.camera_enhance:before {
568
568
  content: '\e8fc';
569
569
  }
570
- .material-icons.camera-front:before,
571
- .mi.camera-front:before {
570
+ .material-icons.camera_front:before,
571
+ .mi.camera_front:before {
572
572
  content: '\e3b1';
573
573
  }
574
- .material-icons.camera-rear:before,
575
- .mi.camera-rear:before {
574
+ .material-icons.camera_rear:before,
575
+ .mi.camera_rear:before {
576
576
  content: '\e3b2';
577
577
  }
578
- .material-icons.camera-roll:before,
579
- .mi.camera-roll:before {
578
+ .material-icons.camera_roll:before,
579
+ .mi.camera_roll:before {
580
580
  content: '\e3b3';
581
581
  }
582
582
  .material-icons.cancel:before,
583
583
  .mi.cancel:before {
584
584
  content: '\e5c9';
585
585
  }
586
- .material-icons.card-giftcard:before,
587
- .mi.card-giftcard:before {
586
+ .material-icons.card_giftcard:before,
587
+ .mi.card_giftcard:before {
588
588
  content: '\e8f6';
589
589
  }
590
- .material-icons.card-membership:before,
591
- .mi.card-membership:before {
590
+ .material-icons.card_membership:before,
591
+ .mi.card_membership:before {
592
592
  content: '\e8f7';
593
593
  }
594
- .material-icons.card-travel:before,
595
- .mi.card-travel:before {
594
+ .material-icons.card_travel:before,
595
+ .mi.card_travel:before {
596
596
  content: '\e8f8';
597
597
  }
598
598
  .material-icons.cast:before,
599
599
  .mi.cast:before {
600
600
  content: '\e307';
601
601
  }
602
- .material-icons.cast-connected:before,
603
- .mi.cast-connected:before {
602
+ .material-icons.cast_connected:before,
603
+ .mi.cast_connected:before {
604
604
  content: '\e308';
605
605
  }
606
- .material-icons.center-focus-strong:before,
607
- .mi.center-focus-strong:before {
606
+ .material-icons.center_focus_strong:before,
607
+ .mi.center_focus_strong:before {
608
608
  content: '\e3b4';
609
609
  }
610
- .material-icons.center-focus-weak:before,
611
- .mi.center-focus-weak:before {
610
+ .material-icons.center_focus_weak:before,
611
+ .mi.center_focus_weak:before {
612
612
  content: '\e3b5';
613
613
  }
614
- .material-icons.change-history:before,
615
- .mi.change-history:before {
614
+ .material-icons.change_history:before,
615
+ .mi.change_history:before {
616
616
  content: '\e86b';
617
617
  }
618
618
  .material-icons.chat:before,
619
619
  .mi.chat:before {
620
620
  content: '\e0b7';
621
621
  }
622
- .material-icons.chat-bubble:before,
623
- .mi.chat-bubble:before {
622
+ .material-icons.chat_bubble:before,
623
+ .mi.chat_bubble:before {
624
624
  content: '\e0ca';
625
625
  }
626
- .material-icons.chat-bubble-outline:before,
627
- .mi.chat-bubble-outline:before {
626
+ .material-icons.chat_bubble_outline:before,
627
+ .mi.chat_bubble_outline:before {
628
628
  content: '\e0cb';
629
629
  }
630
630
  .material-icons.check:before,
631
631
  .mi.check:before {
632
632
  content: '\e5ca';
633
633
  }
634
- .material-icons.check-box:before,
635
- .mi.check-box:before {
634
+ .material-icons.check_box:before,
635
+ .mi.check_box:before {
636
636
  content: '\e834';
637
637
  }
638
- .material-icons.check-box-outline-blank:before,
639
- .mi.check-box-outline-blank:before {
638
+ .material-icons.check_box_outline_blank:before,
639
+ .mi.check_box_outline_blank:before {
640
640
  content: '\e835';
641
641
  }
642
- .material-icons.check-circle:before,
643
- .mi.check-circle:before {
642
+ .material-icons.check_circle:before,
643
+ .mi.check_circle:before {
644
644
  content: '\e86c';
645
645
  }
646
- .material-icons.chevron-left:before,
647
- .mi.chevron-left:before {
646
+ .material-icons.chevron_left:before,
647
+ .mi.chevron_left:before {
648
648
  content: '\e5cb';
649
649
  }
650
- .material-icons.chevron-right:before,
651
- .mi.chevron-right:before {
650
+ .material-icons.chevron_right:before,
651
+ .mi.chevron_right:before {
652
652
  content: '\e5cc';
653
653
  }
654
- .material-icons.chrome-reader-mode:before,
655
- .mi.chrome-reader-mode:before {
654
+ .material-icons.chrome_reader_mode:before,
655
+ .mi.chrome_reader_mode:before {
656
656
  content: '\e86d';
657
657
  }
658
658
  .material-icons.class:before,
@@ -663,44 +663,44 @@
663
663
  .mi.clear:before {
664
664
  content: '\e14c';
665
665
  }
666
- .material-icons.clear-all:before,
667
- .mi.clear-all:before {
666
+ .material-icons.clear_all:before,
667
+ .mi.clear_all:before {
668
668
  content: '\e0b8';
669
669
  }
670
670
  .material-icons.close:before,
671
671
  .mi.close:before {
672
672
  content: '\e5cd';
673
673
  }
674
- .material-icons.closed-caption:before,
675
- .mi.closed-caption:before {
674
+ .material-icons.closed_caption:before,
675
+ .mi.closed_caption:before {
676
676
  content: '\e01c';
677
677
  }
678
678
  .material-icons.cloud:before,
679
679
  .mi.cloud:before {
680
680
  content: '\e2bd';
681
681
  }
682
- .material-icons.cloud-circle:before,
683
- .mi.cloud-circle:before {
682
+ .material-icons.cloud_circle:before,
683
+ .mi.cloud_circle:before {
684
684
  content: '\e2be';
685
685
  }
686
- .material-icons.cloud-done:before,
687
- .mi.cloud-done:before {
686
+ .material-icons.cloud_done:before,
687
+ .mi.cloud_done:before {
688
688
  content: '\e2bf';
689
689
  }
690
- .material-icons.cloud-download:before,
691
- .mi.cloud-download:before {
690
+ .material-icons.cloud_download:before,
691
+ .mi.cloud_download:before {
692
692
  content: '\e2c0';
693
693
  }
694
- .material-icons.cloud-off:before,
695
- .mi.cloud-off:before {
694
+ .material-icons.cloud_off:before,
695
+ .mi.cloud_off:before {
696
696
  content: '\e2c1';
697
697
  }
698
- .material-icons.cloud-queue:before,
699
- .mi.cloud-queue:before {
698
+ .material-icons.cloud_queue:before,
699
+ .mi.cloud_queue:before {
700
700
  content: '\e2c2';
701
701
  }
702
- .material-icons.cloud-upload:before,
703
- .mi.cloud-upload:before {
702
+ .material-icons.cloud_upload:before,
703
+ .mi.cloud_upload:before {
704
704
  content: '\e2c3';
705
705
  }
706
706
  .material-icons.code:before,
@@ -711,12 +711,12 @@
711
711
  .mi.collections:before {
712
712
  content: '\e3b6';
713
713
  }
714
- .material-icons.collections-bookmark:before,
715
- .mi.collections-bookmark:before {
714
+ .material-icons.collections_bookmark:before,
715
+ .mi.collections_bookmark:before {
716
716
  content: '\e431';
717
717
  }
718
- .material-icons.color-lens:before,
719
- .mi.color-lens:before {
718
+ .material-icons.color_lens:before,
719
+ .mi.color_lens:before {
720
720
  content: '\e3b7';
721
721
  }
722
722
  .material-icons.colorize:before,
@@ -735,96 +735,96 @@
735
735
  .mi.computer:before {
736
736
  content: '\e30a';
737
737
  }
738
- .material-icons.confirmation-number:before,
739
- .mi.confirmation-number:before {
738
+ .material-icons.confirmation_number:before,
739
+ .mi.confirmation_number:before {
740
740
  content: '\e638';
741
741
  }
742
- .material-icons.contact-phone:before,
743
- .mi.contact-phone:before {
742
+ .material-icons.contact_phone:before,
743
+ .mi.contact_phone:before {
744
744
  content: '\e0cf';
745
745
  }
746
746
  .material-icons.contacts:before,
747
747
  .mi.contacts:before {
748
748
  content: '\e0ba';
749
749
  }
750
- .material-icons.content-copy:before,
751
- .mi.content-copy:before {
750
+ .material-icons.content_copy:before,
751
+ .mi.content_copy:before {
752
752
  content: '\e14d';
753
753
  }
754
- .material-icons.content-cut:before,
755
- .mi.content-cut:before {
754
+ .material-icons.content_cut:before,
755
+ .mi.content_cut:before {
756
756
  content: '\e14e';
757
757
  }
758
- .material-icons.content-paste:before,
759
- .mi.content-paste:before {
758
+ .material-icons.content_paste:before,
759
+ .mi.content_paste:before {
760
760
  content: '\e14f';
761
761
  }
762
- .material-icons.control-point:before,
763
- .mi.control-point:before {
762
+ .material-icons.control_point:before,
763
+ .mi.control_point:before {
764
764
  content: '\e3ba';
765
765
  }
766
- .material-icons.control-point-duplicate:before,
767
- .mi.control-point-duplicate:before {
766
+ .material-icons.control_point_duplicate:before,
767
+ .mi.control_point_duplicate:before {
768
768
  content: '\e3bb';
769
769
  }
770
770
  .material-icons.create:before,
771
771
  .mi.create:before {
772
772
  content: '\e150';
773
773
  }
774
- .material-icons.credit-card:before,
775
- .mi.credit-card:before {
774
+ .material-icons.credit_card:before,
775
+ .mi.credit_card:before {
776
776
  content: '\e870';
777
777
  }
778
778
  .material-icons.crop:before,
779
779
  .mi.crop:before {
780
780
  content: '\e3be';
781
781
  }
782
- .material-icons.crop-16-9:before,
783
- .mi.crop-16-9:before {
782
+ .material-icons.crop_16_9:before,
783
+ .mi.crop_16_9:before {
784
784
  content: '\e3bc';
785
785
  }
786
- .material-icons.crop-3-2:before,
787
- .mi.crop-3-2:before {
786
+ .material-icons.crop_3_2:before,
787
+ .mi.crop_3_2:before {
788
788
  content: '\e3bd';
789
789
  }
790
- .material-icons.crop-5-4:before,
791
- .mi.crop-5-4:before {
790
+ .material-icons.crop_5_4:before,
791
+ .mi.crop_5_4:before {
792
792
  content: '\e3bf';
793
793
  }
794
- .material-icons.crop-7-5:before,
795
- .mi.crop-7-5:before {
794
+ .material-icons.crop_7_5:before,
795
+ .mi.crop_7_5:before {
796
796
  content: '\e3c0';
797
797
  }
798
- .material-icons.crop-din:before,
799
- .mi.crop-din:before {
798
+ .material-icons.crop_din:before,
799
+ .mi.crop_din:before {
800
800
  content: '\e3c1';
801
801
  }
802
- .material-icons.crop-free:before,
803
- .mi.crop-free:before {
802
+ .material-icons.crop_free:before,
803
+ .mi.crop_free:before {
804
804
  content: '\e3c2';
805
805
  }
806
- .material-icons.crop-landscape:before,
807
- .mi.crop-landscape:before {
806
+ .material-icons.crop_landscape:before,
807
+ .mi.crop_landscape:before {
808
808
  content: '\e3c3';
809
809
  }
810
- .material-icons.crop-original:before,
811
- .mi.crop-original:before {
810
+ .material-icons.crop_original:before,
811
+ .mi.crop_original:before {
812
812
  content: '\e3c4';
813
813
  }
814
- .material-icons.crop-portrait:before,
815
- .mi.crop-portrait:before {
814
+ .material-icons.crop_portrait:before,
815
+ .mi.crop_portrait:before {
816
816
  content: '\e3c5';
817
817
  }
818
- .material-icons.crop-square:before,
819
- .mi.crop-square:before {
818
+ .material-icons.crop_square:before,
819
+ .mi.crop_square:before {
820
820
  content: '\e3c6';
821
821
  }
822
822
  .material-icons.dashboard:before,
823
823
  .mi.dashboard:before {
824
824
  content: '\e871';
825
825
  }
826
- .material-icons.data-usage:before,
827
- .mi.data-usage:before {
826
+ .material-icons.data_usage:before,
827
+ .mi.data_usage:before {
828
828
  content: '\e1af';
829
829
  }
830
830
  .material-icons.dehaze:before,
@@ -839,36 +839,36 @@
839
839
  .mi.description:before {
840
840
  content: '\e873';
841
841
  }
842
- .material-icons.desktop-mac:before,
843
- .mi.desktop-mac:before {
842
+ .material-icons.desktop_mac:before,
843
+ .mi.desktop_mac:before {
844
844
  content: '\e30b';
845
845
  }
846
- .material-icons.desktop-windows:before,
847
- .mi.desktop-windows:before {
846
+ .material-icons.desktop_windows:before,
847
+ .mi.desktop_windows:before {
848
848
  content: '\e30c';
849
849
  }
850
850
  .material-icons.details:before,
851
851
  .mi.details:before {
852
852
  content: '\e3c8';
853
853
  }
854
- .material-icons.developer-board:before,
855
- .mi.developer-board:before {
854
+ .material-icons.developer_board:before,
855
+ .mi.developer_board:before {
856
856
  content: '\e30d';
857
857
  }
858
- .material-icons.developer-mode:before,
859
- .mi.developer-mode:before {
858
+ .material-icons.developer_mode:before,
859
+ .mi.developer_mode:before {
860
860
  content: '\e1b0';
861
861
  }
862
- .material-icons.device-hub:before,
863
- .mi.device-hub:before {
862
+ .material-icons.device_hub:before,
863
+ .mi.device_hub:before {
864
864
  content: '\e335';
865
865
  }
866
866
  .material-icons.devices:before,
867
867
  .mi.devices:before {
868
868
  content: '\e1b1';
869
869
  }
870
- .material-icons.dialer-sip:before,
871
- .mi.dialer-sip:before {
870
+ .material-icons.dialer_sip:before,
871
+ .mi.dialer_sip:before {
872
872
  content: '\e0bb';
873
873
  }
874
874
  .material-icons.dialpad:before,
@@ -879,56 +879,56 @@
879
879
  .mi.directions:before {
880
880
  content: '\e52e';
881
881
  }
882
- .material-icons.directions-bike:before,
883
- .mi.directions-bike:before {
882
+ .material-icons.directions_bike:before,
883
+ .mi.directions_bike:before {
884
884
  content: '\e52f';
885
885
  }
886
- .material-icons.directions-boat:before,
887
- .mi.directions-boat:before {
886
+ .material-icons.directions_boat:before,
887
+ .mi.directions_boat:before {
888
888
  content: '\e532';
889
889
  }
890
- .material-icons.directions-bus:before,
891
- .mi.directions-bus:before {
890
+ .material-icons.directions_bus:before,
891
+ .mi.directions_bus:before {
892
892
  content: '\e530';
893
893
  }
894
- .material-icons.directions-car:before,
895
- .mi.directions-car:before {
894
+ .material-icons.directions_car:before,
895
+ .mi.directions_car:before {
896
896
  content: '\e531';
897
897
  }
898
- .material-icons.directions-railway:before,
899
- .mi.directions-railway:before {
898
+ .material-icons.directions_railway:before,
899
+ .mi.directions_railway:before {
900
900
  content: '\e534';
901
901
  }
902
- .material-icons.directions-run:before,
903
- .mi.directions-run:before {
902
+ .material-icons.directions_run:before,
903
+ .mi.directions_run:before {
904
904
  content: '\e566';
905
905
  }
906
- .material-icons.directions-subway:before,
907
- .mi.directions-subway:before {
906
+ .material-icons.directions_subway:before,
907
+ .mi.directions_subway:before {
908
908
  content: '\e533';
909
909
  }
910
- .material-icons.directions-transit:before,
911
- .mi.directions-transit:before {
910
+ .material-icons.directions_transit:before,
911
+ .mi.directions_transit:before {
912
912
  content: '\e535';
913
913
  }
914
- .material-icons.directions-walk:before,
915
- .mi.directions-walk:before {
914
+ .material-icons.directions_walk:before,
915
+ .mi.directions_walk:before {
916
916
  content: '\e536';
917
917
  }
918
- .material-icons.disc-full:before,
919
- .mi.disc-full:before {
918
+ .material-icons.disc_full:before,
919
+ .mi.disc_full:before {
920
920
  content: '\e610';
921
921
  }
922
922
  .material-icons.dns:before,
923
923
  .mi.dns:before {
924
924
  content: '\e875';
925
925
  }
926
- .material-icons.do-not-disturb:before,
927
- .mi.do-not-disturb:before {
926
+ .material-icons.do_not_disturb:before,
927
+ .mi.do_not_disturb:before {
928
928
  content: '\e612';
929
929
  }
930
- .material-icons.do-not-disturb-alt:before,
931
- .mi.do-not-disturb-alt:before {
930
+ .material-icons.do_not_disturb_alt:before,
931
+ .mi.do_not_disturb_alt:before {
932
932
  content: '\e611';
933
933
  }
934
934
  .material-icons.dock:before,
@@ -943,16 +943,16 @@
943
943
  .mi.done:before {
944
944
  content: '\e876';
945
945
  }
946
- .material-icons.done-all:before,
947
- .mi.done-all:before {
946
+ .material-icons.done_all:before,
947
+ .mi.done_all:before {
948
948
  content: '\e877';
949
949
  }
950
950
  .material-icons.drafts:before,
951
951
  .mi.drafts:before {
952
952
  content: '\e151';
953
953
  }
954
- .material-icons.drive-eta:before,
955
- .mi.drive-eta:before {
954
+ .material-icons.drive_eta:before,
955
+ .mi.drive_eta:before {
956
956
  content: '\e613';
957
957
  }
958
958
  .material-icons.dvr:before,
@@ -979,40 +979,40 @@
979
979
  .mi.error:before {
980
980
  content: '\e000';
981
981
  }
982
- .material-icons.error-outline:before,
983
- .mi.error-outline:before {
982
+ .material-icons.error_outline:before,
983
+ .mi.error_outline:before {
984
984
  content: '\e001';
985
985
  }
986
986
  .material-icons.event:before,
987
987
  .mi.event:before {
988
988
  content: '\e878';
989
989
  }
990
- .material-icons.event-available:before,
991
- .mi.event-available:before {
990
+ .material-icons.event_available:before,
991
+ .mi.event_available:before {
992
992
  content: '\e614';
993
993
  }
994
- .material-icons.event-busy:before,
995
- .mi.event-busy:before {
994
+ .material-icons.event_busy:before,
995
+ .mi.event_busy:before {
996
996
  content: '\e615';
997
997
  }
998
- .material-icons.event-note:before,
999
- .mi.event-note:before {
998
+ .material-icons.event_note:before,
999
+ .mi.event_note:before {
1000
1000
  content: '\e616';
1001
1001
  }
1002
- .material-icons.event-seat:before,
1003
- .mi.event-seat:before {
1002
+ .material-icons.event_seat:before,
1003
+ .mi.event_seat:before {
1004
1004
  content: '\e903';
1005
1005
  }
1006
- .material-icons.exit-to-app:before,
1007
- .mi.exit-to-app:before {
1006
+ .material-icons.exit_to_app:before,
1007
+ .mi.exit_to_app:before {
1008
1008
  content: '\e879';
1009
1009
  }
1010
- .material-icons.expand-less:before,
1011
- .mi.expand-less:before {
1010
+ .material-icons.expand_less:before,
1011
+ .mi.expand_less:before {
1012
1012
  content: '\e5ce';
1013
1013
  }
1014
- .material-icons.expand-more:before,
1015
- .mi.expand-more:before {
1014
+ .material-icons.expand_more:before,
1015
+ .mi.expand_more:before {
1016
1016
  content: '\e5cf';
1017
1017
  }
1018
1018
  .material-icons.explicit:before,
@@ -1027,24 +1027,24 @@
1027
1027
  .mi.exposure:before {
1028
1028
  content: '\e3ca';
1029
1029
  }
1030
- .material-icons.exposure-neg-1:before,
1031
- .mi.exposure-neg-1:before {
1030
+ .material-icons.exposure_neg_1:before,
1031
+ .mi.exposure_neg_1:before {
1032
1032
  content: '\e3cb';
1033
1033
  }
1034
- .material-icons.exposure-neg-2:before,
1035
- .mi.exposure-neg-2:before {
1034
+ .material-icons.exposure_neg_2:before,
1035
+ .mi.exposure_neg_2:before {
1036
1036
  content: '\e3cc';
1037
1037
  }
1038
- .material-icons.exposure-plus-1:before,
1039
- .mi.exposure-plus-1:before {
1038
+ .material-icons.exposure_plus_1:before,
1039
+ .mi.exposure_plus_1:before {
1040
1040
  content: '\e3cd';
1041
1041
  }
1042
- .material-icons.exposure-plus-2:before,
1043
- .mi.exposure-plus-2:before {
1042
+ .material-icons.exposure_plus_2:before,
1043
+ .mi.exposure_plus_2:before {
1044
1044
  content: '\e3ce';
1045
1045
  }
1046
- .material-icons.exposure-zero:before,
1047
- .mi.exposure-zero:before {
1046
+ .material-icons.exposure_zero:before,
1047
+ .mi.exposure_zero:before {
1048
1048
  content: '\e3cf';
1049
1049
  }
1050
1050
  .material-icons.extension:before,
@@ -1055,120 +1055,120 @@
1055
1055
  .mi.face:before {
1056
1056
  content: '\e87c';
1057
1057
  }
1058
- .material-icons.fast-forward:before,
1059
- .mi.fast-forward:before {
1058
+ .material-icons.fast_forward:before,
1059
+ .mi.fast_forward:before {
1060
1060
  content: '\e01f';
1061
1061
  }
1062
- .material-icons.fast-rewind:before,
1063
- .mi.fast-rewind:before {
1062
+ .material-icons.fast_rewind:before,
1063
+ .mi.fast_rewind:before {
1064
1064
  content: '\e020';
1065
1065
  }
1066
1066
  .material-icons.favorite:before,
1067
1067
  .mi.favorite:before {
1068
1068
  content: '\e87d';
1069
1069
  }
1070
- .material-icons.favorite-border:before,
1071
- .mi.favorite-border:before {
1070
+ .material-icons.favorite_border:before,
1071
+ .mi.favorite_border:before {
1072
1072
  content: '\e87e';
1073
1073
  }
1074
1074
  .material-icons.feedback:before,
1075
1075
  .mi.feedback:before {
1076
1076
  content: '\e87f';
1077
1077
  }
1078
- .material-icons.file-download:before,
1079
- .mi.file-download:before {
1078
+ .material-icons.file_download:before,
1079
+ .mi.file_download:before {
1080
1080
  content: '\e2c4';
1081
1081
  }
1082
- .material-icons.file-upload:before,
1083
- .mi.file-upload:before {
1082
+ .material-icons.file_upload:before,
1083
+ .mi.file_upload:before {
1084
1084
  content: '\e2c6';
1085
1085
  }
1086
1086
  .material-icons.filter:before,
1087
1087
  .mi.filter:before {
1088
1088
  content: '\e3d3';
1089
1089
  }
1090
- .material-icons.filter-1:before,
1091
- .mi.filter-1:before {
1090
+ .material-icons.filter_1:before,
1091
+ .mi.filter_1:before {
1092
1092
  content: '\e3d0';
1093
1093
  }
1094
- .material-icons.filter-2:before,
1095
- .mi.filter-2:before {
1094
+ .material-icons.filter_2:before,
1095
+ .mi.filter_2:before {
1096
1096
  content: '\e3d1';
1097
1097
  }
1098
- .material-icons.filter-3:before,
1099
- .mi.filter-3:before {
1098
+ .material-icons.filter_3:before,
1099
+ .mi.filter_3:before {
1100
1100
  content: '\e3d2';
1101
1101
  }
1102
- .material-icons.filter-4:before,
1103
- .mi.filter-4:before {
1102
+ .material-icons.filter_4:before,
1103
+ .mi.filter_4:before {
1104
1104
  content: '\e3d4';
1105
1105
  }
1106
- .material-icons.filter-5:before,
1107
- .mi.filter-5:before {
1106
+ .material-icons.filter_5:before,
1107
+ .mi.filter_5:before {
1108
1108
  content: '\e3d5';
1109
1109
  }
1110
- .material-icons.filter-6:before,
1111
- .mi.filter-6:before {
1110
+ .material-icons.filter_6:before,
1111
+ .mi.filter_6:before {
1112
1112
  content: '\e3d6';
1113
1113
  }
1114
- .material-icons.filter-7:before,
1115
- .mi.filter-7:before {
1114
+ .material-icons.filter_7:before,
1115
+ .mi.filter_7:before {
1116
1116
  content: '\e3d7';
1117
1117
  }
1118
- .material-icons.filter-8:before,
1119
- .mi.filter-8:before {
1118
+ .material-icons.filter_8:before,
1119
+ .mi.filter_8:before {
1120
1120
  content: '\e3d8';
1121
1121
  }
1122
- .material-icons.filter-9:before,
1123
- .mi.filter-9:before {
1122
+ .material-icons.filter_9:before,
1123
+ .mi.filter_9:before {
1124
1124
  content: '\e3d9';
1125
1125
  }
1126
- .material-icons.filter-9-plus:before,
1127
- .mi.filter-9-plus:before {
1126
+ .material-icons.filter_9_plus:before,
1127
+ .mi.filter_9_plus:before {
1128
1128
  content: '\e3da';
1129
1129
  }
1130
- .material-icons.filter-b-and-w:before,
1131
- .mi.filter-b-and-w:before {
1130
+ .material-icons.filter_b_and_w:before,
1131
+ .mi.filter_b_and_w:before {
1132
1132
  content: '\e3db';
1133
1133
  }
1134
- .material-icons.filter-center-focus:before,
1135
- .mi.filter-center-focus:before {
1134
+ .material-icons.filter_center_focus:before,
1135
+ .mi.filter_center_focus:before {
1136
1136
  content: '\e3dc';
1137
1137
  }
1138
- .material-icons.filter-drama:before,
1139
- .mi.filter-drama:before {
1138
+ .material-icons.filter_drama:before,
1139
+ .mi.filter_drama:before {
1140
1140
  content: '\e3dd';
1141
1141
  }
1142
- .material-icons.filter-frames:before,
1143
- .mi.filter-frames:before {
1142
+ .material-icons.filter_frames:before,
1143
+ .mi.filter_frames:before {
1144
1144
  content: '\e3de';
1145
1145
  }
1146
- .material-icons.filter-hdr:before,
1147
- .mi.filter-hdr:before {
1146
+ .material-icons.filter_hdr:before,
1147
+ .mi.filter_hdr:before {
1148
1148
  content: '\e3df';
1149
1149
  }
1150
- .material-icons.filter-list:before,
1151
- .mi.filter-list:before {
1150
+ .material-icons.filter_list:before,
1151
+ .mi.filter_list:before {
1152
1152
  content: '\e152';
1153
1153
  }
1154
- .material-icons.filter-none:before,
1155
- .mi.filter-none:before {
1154
+ .material-icons.filter_none:before,
1155
+ .mi.filter_none:before {
1156
1156
  content: '\e3e0';
1157
1157
  }
1158
- .material-icons.filter-tilt-shift:before,
1159
- .mi.filter-tilt-shift:before {
1158
+ .material-icons.filter_tilt_shift:before,
1159
+ .mi.filter_tilt_shift:before {
1160
1160
  content: '\e3e2';
1161
1161
  }
1162
- .material-icons.filter-vintage:before,
1163
- .mi.filter-vintage:before {
1162
+ .material-icons.filter_vintage:before,
1163
+ .mi.filter_vintage:before {
1164
1164
  content: '\e3e3';
1165
1165
  }
1166
- .material-icons.find-in-page:before,
1167
- .mi.find-in-page:before {
1166
+ .material-icons.find_in_page:before,
1167
+ .mi.find_in_page:before {
1168
1168
  content: '\e880';
1169
1169
  }
1170
- .material-icons.find-replace:before,
1171
- .mi.find-replace:before {
1170
+ .material-icons.find_replace:before,
1171
+ .mi.find_replace:before {
1172
1172
  content: '\e881';
1173
1173
  }
1174
1174
  .material-icons.flag:before,
@@ -1179,148 +1179,148 @@
1179
1179
  .mi.flare:before {
1180
1180
  content: '\e3e4';
1181
1181
  }
1182
- .material-icons.flash-auto:before,
1183
- .mi.flash-auto:before {
1182
+ .material-icons.flash_auto:before,
1183
+ .mi.flash_auto:before {
1184
1184
  content: '\e3e5';
1185
1185
  }
1186
- .material-icons.flash-off:before,
1187
- .mi.flash-off:before {
1186
+ .material-icons.flash_off:before,
1187
+ .mi.flash_off:before {
1188
1188
  content: '\e3e6';
1189
1189
  }
1190
- .material-icons.flash-on:before,
1191
- .mi.flash-on:before {
1190
+ .material-icons.flash_on:before,
1191
+ .mi.flash_on:before {
1192
1192
  content: '\e3e7';
1193
1193
  }
1194
1194
  .material-icons.flight:before,
1195
1195
  .mi.flight:before {
1196
1196
  content: '\e539';
1197
1197
  }
1198
- .material-icons.flight-land:before,
1199
- .mi.flight-land:before {
1198
+ .material-icons.flight_land:before,
1199
+ .mi.flight_land:before {
1200
1200
  content: '\e904';
1201
1201
  }
1202
- .material-icons.flight-takeoff:before,
1203
- .mi.flight-takeoff:before {
1202
+ .material-icons.flight_takeoff:before,
1203
+ .mi.flight_takeoff:before {
1204
1204
  content: '\e905';
1205
1205
  }
1206
1206
  .material-icons.flip:before,
1207
1207
  .mi.flip:before {
1208
1208
  content: '\e3e8';
1209
1209
  }
1210
- .material-icons.flip-to-back:before,
1211
- .mi.flip-to-back:before {
1210
+ .material-icons.flip_to_back:before,
1211
+ .mi.flip_to_back:before {
1212
1212
  content: '\e882';
1213
1213
  }
1214
- .material-icons.flip-to-front:before,
1215
- .mi.flip-to-front:before {
1214
+ .material-icons.flip_to_front:before,
1215
+ .mi.flip_to_front:before {
1216
1216
  content: '\e883';
1217
1217
  }
1218
1218
  .material-icons.folder:before,
1219
1219
  .mi.folder:before {
1220
1220
  content: '\e2c7';
1221
1221
  }
1222
- .material-icons.folder-open:before,
1223
- .mi.folder-open:before {
1222
+ .material-icons.folder_open:before,
1223
+ .mi.folder_open:before {
1224
1224
  content: '\e2c8';
1225
1225
  }
1226
- .material-icons.folder-shared:before,
1227
- .mi.folder-shared:before {
1226
+ .material-icons.folder_shared:before,
1227
+ .mi.folder_shared:before {
1228
1228
  content: '\e2c9';
1229
1229
  }
1230
- .material-icons.folder-special:before,
1231
- .mi.folder-special:before {
1230
+ .material-icons.folder_special:before,
1231
+ .mi.folder_special:before {
1232
1232
  content: '\e617';
1233
1233
  }
1234
- .material-icons.font-download:before,
1235
- .mi.font-download:before {
1234
+ .material-icons.font_download:before,
1235
+ .mi.font_download:before {
1236
1236
  content: '\e167';
1237
1237
  }
1238
- .material-icons.format-align-center:before,
1239
- .mi.format-align-center:before {
1238
+ .material-icons.format_align_center:before,
1239
+ .mi.format_align_center:before {
1240
1240
  content: '\e234';
1241
1241
  }
1242
- .material-icons.format-align-justify:before,
1243
- .mi.format-align-justify:before {
1242
+ .material-icons.format_align_justify:before,
1243
+ .mi.format_align_justify:before {
1244
1244
  content: '\e235';
1245
1245
  }
1246
- .material-icons.format-align-left:before,
1247
- .mi.format-align-left:before {
1246
+ .material-icons.format_align_left:before,
1247
+ .mi.format_align_left:before {
1248
1248
  content: '\e236';
1249
1249
  }
1250
- .material-icons.format-align-right:before,
1251
- .mi.format-align-right:before {
1250
+ .material-icons.format_align_right:before,
1251
+ .mi.format_align_right:before {
1252
1252
  content: '\e237';
1253
1253
  }
1254
- .material-icons.format-bold:before,
1255
- .mi.format-bold:before {
1254
+ .material-icons.format_bold:before,
1255
+ .mi.format_bold:before {
1256
1256
  content: '\e238';
1257
1257
  }
1258
- .material-icons.format-clear:before,
1259
- .mi.format-clear:before {
1258
+ .material-icons.format_clear:before,
1259
+ .mi.format_clear:before {
1260
1260
  content: '\e239';
1261
1261
  }
1262
- .material-icons.format-color-fill:before,
1263
- .mi.format-color-fill:before {
1262
+ .material-icons.format_color_fill:before,
1263
+ .mi.format_color_fill:before {
1264
1264
  content: '\e23a';
1265
1265
  }
1266
- .material-icons.format-color-reset:before,
1267
- .mi.format-color-reset:before {
1266
+ .material-icons.format_color_reset:before,
1267
+ .mi.format_color_reset:before {
1268
1268
  content: '\e23b';
1269
1269
  }
1270
- .material-icons.format-color-text:before,
1271
- .mi.format-color-text:before {
1270
+ .material-icons.format_color_text:before,
1271
+ .mi.format_color_text:before {
1272
1272
  content: '\e23c';
1273
1273
  }
1274
- .material-icons.format-indent-decrease:before,
1275
- .mi.format-indent-decrease:before {
1274
+ .material-icons.format_indent_decrease:before,
1275
+ .mi.format_indent_decrease:before {
1276
1276
  content: '\e23d';
1277
1277
  }
1278
- .material-icons.format-indent-increase:before,
1279
- .mi.format-indent-increase:before {
1278
+ .material-icons.format_indent_increase:before,
1279
+ .mi.format_indent_increase:before {
1280
1280
  content: '\e23e';
1281
1281
  }
1282
- .material-icons.format-italic:before,
1283
- .mi.format-italic:before {
1282
+ .material-icons.format_italic:before,
1283
+ .mi.format_italic:before {
1284
1284
  content: '\e23f';
1285
1285
  }
1286
- .material-icons.format-line-spacing:before,
1287
- .mi.format-line-spacing:before {
1286
+ .material-icons.format_line_spacing:before,
1287
+ .mi.format_line_spacing:before {
1288
1288
  content: '\e240';
1289
1289
  }
1290
- .material-icons.format-list-bulleted:before,
1291
- .mi.format-list-bulleted:before {
1290
+ .material-icons.format_list_bulleted:before,
1291
+ .mi.format_list_bulleted:before {
1292
1292
  content: '\e241';
1293
1293
  }
1294
- .material-icons.format-list-numbered:before,
1295
- .mi.format-list-numbered:before {
1294
+ .material-icons.format_list_numbered:before,
1295
+ .mi.format_list_numbered:before {
1296
1296
  content: '\e242';
1297
1297
  }
1298
- .material-icons.format-paint:before,
1299
- .mi.format-paint:before {
1298
+ .material-icons.format_paint:before,
1299
+ .mi.format_paint:before {
1300
1300
  content: '\e243';
1301
1301
  }
1302
- .material-icons.format-quote:before,
1303
- .mi.format-quote:before {
1302
+ .material-icons.format_quote:before,
1303
+ .mi.format_quote:before {
1304
1304
  content: '\e244';
1305
1305
  }
1306
- .material-icons.format-size:before,
1307
- .mi.format-size:before {
1306
+ .material-icons.format_size:before,
1307
+ .mi.format_size:before {
1308
1308
  content: '\e245';
1309
1309
  }
1310
- .material-icons.format-strikethrough:before,
1311
- .mi.format-strikethrough:before {
1310
+ .material-icons.format_strikethrough:before,
1311
+ .mi.format_strikethrough:before {
1312
1312
  content: '\e246';
1313
1313
  }
1314
- .material-icons.format-textdirection-l-to-r:before,
1315
- .mi.format-textdirection-l-to-r:before {
1314
+ .material-icons.format_textdirection_l_to_r:before,
1315
+ .mi.format_textdirection_l_to_r:before {
1316
1316
  content: '\e247';
1317
1317
  }
1318
- .material-icons.format-textdirection-r-to-l:before,
1319
- .mi.format-textdirection-r-to-l:before {
1318
+ .material-icons.format_textdirection_r_to_l:before,
1319
+ .mi.format_textdirection_r_to_l:before {
1320
1320
  content: '\e248';
1321
1321
  }
1322
- .material-icons.format-underlined:before,
1323
- .mi.format-underlined:before {
1322
+ .material-icons.format_underlined:before,
1323
+ .mi.format_underlined:before {
1324
1324
  content: '\e249';
1325
1325
  }
1326
1326
  .material-icons.forum:before,
@@ -1331,24 +1331,24 @@
1331
1331
  .mi.forward:before {
1332
1332
  content: '\e154';
1333
1333
  }
1334
- .material-icons.forward-10:before,
1335
- .mi.forward-10:before {
1334
+ .material-icons.forward_10:before,
1335
+ .mi.forward_10:before {
1336
1336
  content: '\e056';
1337
1337
  }
1338
- .material-icons.forward-30:before,
1339
- .mi.forward-30:before {
1338
+ .material-icons.forward_30:before,
1339
+ .mi.forward_30:before {
1340
1340
  content: '\e057';
1341
1341
  }
1342
- .material-icons.forward-5:before,
1343
- .mi.forward-5:before {
1342
+ .material-icons.forward_5:before,
1343
+ .mi.forward_5:before {
1344
1344
  content: '\e058';
1345
1345
  }
1346
1346
  .material-icons.fullscreen:before,
1347
1347
  .mi.fullscreen:before {
1348
1348
  content: '\e5d0';
1349
1349
  }
1350
- .material-icons.fullscreen-exit:before,
1351
- .mi.fullscreen-exit:before {
1350
+ .material-icons.fullscreen_exit:before,
1351
+ .mi.fullscreen_exit:before {
1352
1352
  content: '\e5d1';
1353
1353
  }
1354
1354
  .material-icons.functions:before,
@@ -1367,24 +1367,24 @@
1367
1367
  .mi.gesture:before {
1368
1368
  content: '\e155';
1369
1369
  }
1370
- .material-icons.get-app:before,
1371
- .mi.get-app:before {
1370
+ .material-icons.get_app:before,
1371
+ .mi.get_app:before {
1372
1372
  content: '\e884';
1373
1373
  }
1374
1374
  .material-icons.gif:before,
1375
1375
  .mi.gif:before {
1376
1376
  content: '\e908';
1377
1377
  }
1378
- .material-icons.gps-fixed:before,
1379
- .mi.gps-fixed:before {
1378
+ .material-icons.gps_fixed:before,
1379
+ .mi.gps_fixed:before {
1380
1380
  content: '\e1b3';
1381
1381
  }
1382
- .material-icons.gps-not-fixed:before,
1383
- .mi.gps-not-fixed:before {
1382
+ .material-icons.gps_not_fixed:before,
1383
+ .mi.gps_not_fixed:before {
1384
1384
  content: '\e1b4';
1385
1385
  }
1386
- .material-icons.gps-off:before,
1387
- .mi.gps-off:before {
1386
+ .material-icons.gps_off:before,
1387
+ .mi.gps_off:before {
1388
1388
  content: '\e1b5';
1389
1389
  }
1390
1390
  .material-icons.grade:before,
@@ -1399,56 +1399,56 @@
1399
1399
  .mi.grain:before {
1400
1400
  content: '\e3ea';
1401
1401
  }
1402
- .material-icons.graphic-eq:before,
1403
- .mi.graphic-eq:before {
1402
+ .material-icons.graphic_eq:before,
1403
+ .mi.graphic_eq:before {
1404
1404
  content: '\e1b8';
1405
1405
  }
1406
- .material-icons.grid-off:before,
1407
- .mi.grid-off:before {
1406
+ .material-icons.grid_off:before,
1407
+ .mi.grid_off:before {
1408
1408
  content: '\e3eb';
1409
1409
  }
1410
- .material-icons.grid-on:before,
1411
- .mi.grid-on:before {
1410
+ .material-icons.grid_on:before,
1411
+ .mi.grid_on:before {
1412
1412
  content: '\e3ec';
1413
1413
  }
1414
1414
  .material-icons.group:before,
1415
1415
  .mi.group:before {
1416
1416
  content: '\e7ef';
1417
1417
  }
1418
- .material-icons.group-add:before,
1419
- .mi.group-add:before {
1418
+ .material-icons.group_add:before,
1419
+ .mi.group_add:before {
1420
1420
  content: '\e7f0';
1421
1421
  }
1422
- .material-icons.group-work:before,
1423
- .mi.group-work:before {
1422
+ .material-icons.group_work:before,
1423
+ .mi.group_work:before {
1424
1424
  content: '\e886';
1425
1425
  }
1426
1426
  .material-icons.hd:before,
1427
1427
  .mi.hd:before {
1428
1428
  content: '\e052';
1429
1429
  }
1430
- .material-icons.hdr-off:before,
1431
- .mi.hdr-off:before {
1430
+ .material-icons.hdr_off:before,
1431
+ .mi.hdr_off:before {
1432
1432
  content: '\e3ed';
1433
1433
  }
1434
- .material-icons.hdr-on:before,
1435
- .mi.hdr-on:before {
1434
+ .material-icons.hdr_on:before,
1435
+ .mi.hdr_on:before {
1436
1436
  content: '\e3ee';
1437
1437
  }
1438
- .material-icons.hdr-strong:before,
1439
- .mi.hdr-strong:before {
1438
+ .material-icons.hdr_strong:before,
1439
+ .mi.hdr_strong:before {
1440
1440
  content: '\e3f1';
1441
1441
  }
1442
- .material-icons.hdr-weak:before,
1443
- .mi.hdr-weak:before {
1442
+ .material-icons.hdr_weak:before,
1443
+ .mi.hdr_weak:before {
1444
1444
  content: '\e3f2';
1445
1445
  }
1446
1446
  .material-icons.headset:before,
1447
1447
  .mi.headset:before {
1448
1448
  content: '\e310';
1449
1449
  }
1450
- .material-icons.headset-mic:before,
1451
- .mi.headset-mic:before {
1450
+ .material-icons.headset_mic:before,
1451
+ .mi.headset_mic:before {
1452
1452
  content: '\e311';
1453
1453
  }
1454
1454
  .material-icons.healing:before,
@@ -1463,16 +1463,16 @@
1463
1463
  .mi.help:before {
1464
1464
  content: '\e887';
1465
1465
  }
1466
- .material-icons.help-outline:before,
1467
- .mi.help-outline:before {
1466
+ .material-icons.help_outline:before,
1467
+ .mi.help_outline:before {
1468
1468
  content: '\e8fd';
1469
1469
  }
1470
- .material-icons.high-quality:before,
1471
- .mi.high-quality:before {
1470
+ .material-icons.high_quality:before,
1471
+ .mi.high_quality:before {
1472
1472
  content: '\e024';
1473
1473
  }
1474
- .material-icons.highlight-off:before,
1475
- .mi.highlight-off:before {
1474
+ .material-icons.highlight_off:before,
1475
+ .mi.highlight_off:before {
1476
1476
  content: '\e888';
1477
1477
  }
1478
1478
  .material-icons.history:before,
@@ -1487,12 +1487,12 @@
1487
1487
  .mi.hotel:before {
1488
1488
  content: '\e53a';
1489
1489
  }
1490
- .material-icons.hourglass-empty:before,
1491
- .mi.hourglass-empty:before {
1490
+ .material-icons.hourglass_empty:before,
1491
+ .mi.hourglass_empty:before {
1492
1492
  content: '\e88b';
1493
1493
  }
1494
- .material-icons.hourglass-full:before,
1495
- .mi.hourglass-full:before {
1494
+ .material-icons.hourglass_full:before,
1495
+ .mi.hourglass_full:before {
1496
1496
  content: '\e88c';
1497
1497
  }
1498
1498
  .material-icons.http:before,
@@ -1507,68 +1507,68 @@
1507
1507
  .mi.image:before {
1508
1508
  content: '\e3f4';
1509
1509
  }
1510
- .material-icons.image-aspect-ratio:before,
1511
- .mi.image-aspect-ratio:before {
1510
+ .material-icons.image_aspect_ratio:before,
1511
+ .mi.image_aspect_ratio:before {
1512
1512
  content: '\e3f5';
1513
1513
  }
1514
- .material-icons.import-export:before,
1515
- .mi.import-export:before {
1514
+ .material-icons.import_export:before,
1515
+ .mi.import_export:before {
1516
1516
  content: '\e0c3';
1517
1517
  }
1518
1518
  .material-icons.inbox:before,
1519
1519
  .mi.inbox:before {
1520
1520
  content: '\e156';
1521
1521
  }
1522
- .material-icons.indeterminate-check-box:before,
1523
- .mi.indeterminate-check-box:before {
1522
+ .material-icons.indeterminate_check_box:before,
1523
+ .mi.indeterminate_check_box:before {
1524
1524
  content: '\e909';
1525
1525
  }
1526
1526
  .material-icons.info:before,
1527
1527
  .mi.info:before {
1528
1528
  content: '\e88e';
1529
1529
  }
1530
- .material-icons.info-outline:before,
1531
- .mi.info-outline:before {
1530
+ .material-icons.info_outline:before,
1531
+ .mi.info_outline:before {
1532
1532
  content: '\e88f';
1533
1533
  }
1534
1534
  .material-icons.input:before,
1535
1535
  .mi.input:before {
1536
1536
  content: '\e890';
1537
1537
  }
1538
- .material-icons.insert-chart:before,
1539
- .mi.insert-chart:before {
1538
+ .material-icons.insert_chart:before,
1539
+ .mi.insert_chart:before {
1540
1540
  content: '\e24b';
1541
1541
  }
1542
- .material-icons.insert-comment:before,
1543
- .mi.insert-comment:before {
1542
+ .material-icons.insert_comment:before,
1543
+ .mi.insert_comment:before {
1544
1544
  content: '\e24c';
1545
1545
  }
1546
- .material-icons.insert-drive-file:before,
1547
- .mi.insert-drive-file:before {
1546
+ .material-icons.insert_drive_file:before,
1547
+ .mi.insert_drive_file:before {
1548
1548
  content: '\e24d';
1549
1549
  }
1550
- .material-icons.insert-emoticon:before,
1551
- .mi.insert-emoticon:before {
1550
+ .material-icons.insert_emoticon:before,
1551
+ .mi.insert_emoticon:before {
1552
1552
  content: '\e24e';
1553
1553
  }
1554
- .material-icons.insert-invitation:before,
1555
- .mi.insert-invitation:before {
1554
+ .material-icons.insert_invitation:before,
1555
+ .mi.insert_invitation:before {
1556
1556
  content: '\e24f';
1557
1557
  }
1558
- .material-icons.insert-link:before,
1559
- .mi.insert-link:before {
1558
+ .material-icons.insert_link:before,
1559
+ .mi.insert_link:before {
1560
1560
  content: '\e250';
1561
1561
  }
1562
- .material-icons.insert-photo:before,
1563
- .mi.insert-photo:before {
1562
+ .material-icons.insert_photo:before,
1563
+ .mi.insert_photo:before {
1564
1564
  content: '\e251';
1565
1565
  }
1566
- .material-icons.invert-colors:before,
1567
- .mi.invert-colors:before {
1566
+ .material-icons.invert_colors:before,
1567
+ .mi.invert_colors:before {
1568
1568
  content: '\e891';
1569
1569
  }
1570
- .material-icons.invert-colors-off:before,
1571
- .mi.invert-colors-off:before {
1570
+ .material-icons.invert_colors_off:before,
1571
+ .mi.invert_colors_off:before {
1572
1572
  content: '\e0c4';
1573
1573
  }
1574
1574
  .material-icons.iso:before,
@@ -1579,52 +1579,52 @@
1579
1579
  .mi.keyboard:before {
1580
1580
  content: '\e312';
1581
1581
  }
1582
- .material-icons.keyboard-arrow-down:before,
1583
- .mi.keyboard-arrow-down:before {
1582
+ .material-icons.keyboard_arrow_down:before,
1583
+ .mi.keyboard_arrow_down:before {
1584
1584
  content: '\e313';
1585
1585
  }
1586
- .material-icons.keyboard-arrow-left:before,
1587
- .mi.keyboard-arrow-left:before {
1586
+ .material-icons.keyboard_arrow_left:before,
1587
+ .mi.keyboard_arrow_left:before {
1588
1588
  content: '\e314';
1589
1589
  }
1590
- .material-icons.keyboard-arrow-right:before,
1591
- .mi.keyboard-arrow-right:before {
1590
+ .material-icons.keyboard_arrow_right:before,
1591
+ .mi.keyboard_arrow_right:before {
1592
1592
  content: '\e315';
1593
1593
  }
1594
- .material-icons.keyboard-arrow-up:before,
1595
- .mi.keyboard-arrow-up:before {
1594
+ .material-icons.keyboard_arrow_up:before,
1595
+ .mi.keyboard_arrow_up:before {
1596
1596
  content: '\e316';
1597
1597
  }
1598
- .material-icons.keyboard-backspace:before,
1599
- .mi.keyboard-backspace:before {
1598
+ .material-icons.keyboard_backspace:before,
1599
+ .mi.keyboard_backspace:before {
1600
1600
  content: '\e317';
1601
1601
  }
1602
- .material-icons.keyboard-capslock:before,
1603
- .mi.keyboard-capslock:before {
1602
+ .material-icons.keyboard_capslock:before,
1603
+ .mi.keyboard_capslock:before {
1604
1604
  content: '\e318';
1605
1605
  }
1606
- .material-icons.keyboard-hide:before,
1607
- .mi.keyboard-hide:before {
1606
+ .material-icons.keyboard_hide:before,
1607
+ .mi.keyboard_hide:before {
1608
1608
  content: '\e31a';
1609
1609
  }
1610
- .material-icons.keyboard-return:before,
1611
- .mi.keyboard-return:before {
1610
+ .material-icons.keyboard_return:before,
1611
+ .mi.keyboard_return:before {
1612
1612
  content: '\e31b';
1613
1613
  }
1614
- .material-icons.keyboard-tab:before,
1615
- .mi.keyboard-tab:before {
1614
+ .material-icons.keyboard_tab:before,
1615
+ .mi.keyboard_tab:before {
1616
1616
  content: '\e31c';
1617
1617
  }
1618
- .material-icons.keyboard-voice:before,
1619
- .mi.keyboard-voice:before {
1618
+ .material-icons.keyboard_voice:before,
1619
+ .mi.keyboard_voice:before {
1620
1620
  content: '\e31d';
1621
1621
  }
1622
1622
  .material-icons.label:before,
1623
1623
  .mi.label:before {
1624
1624
  content: '\e892';
1625
1625
  }
1626
- .material-icons.label-outline:before,
1627
- .mi.label-outline:before {
1626
+ .material-icons.label_outline:before,
1627
+ .mi.label_outline:before {
1628
1628
  content: '\e893';
1629
1629
  }
1630
1630
  .material-icons.landscape:before,
@@ -1639,16 +1639,16 @@
1639
1639
  .mi.laptop:before {
1640
1640
  content: '\e31e';
1641
1641
  }
1642
- .material-icons.laptop-chromebook:before,
1643
- .mi.laptop-chromebook:before {
1642
+ .material-icons.laptop_chromebook:before,
1643
+ .mi.laptop_chromebook:before {
1644
1644
  content: '\e31f';
1645
1645
  }
1646
- .material-icons.laptop-mac:before,
1647
- .mi.laptop-mac:before {
1646
+ .material-icons.laptop_mac:before,
1647
+ .mi.laptop_mac:before {
1648
1648
  content: '\e320';
1649
1649
  }
1650
- .material-icons.laptop-windows:before,
1651
- .mi.laptop-windows:before {
1650
+ .material-icons.laptop_windows:before,
1651
+ .mi.laptop_windows:before {
1652
1652
  content: '\e321';
1653
1653
  }
1654
1654
  .material-icons.launch:before,
@@ -1659,32 +1659,32 @@
1659
1659
  .mi.layers:before {
1660
1660
  content: '\e53b';
1661
1661
  }
1662
- .material-icons.layers-clear:before,
1663
- .mi.layers-clear:before {
1662
+ .material-icons.layers_clear:before,
1663
+ .mi.layers_clear:before {
1664
1664
  content: '\e53c';
1665
1665
  }
1666
- .material-icons.leak-add:before,
1667
- .mi.leak-add:before {
1666
+ .material-icons.leak_add:before,
1667
+ .mi.leak_add:before {
1668
1668
  content: '\e3f8';
1669
1669
  }
1670
- .material-icons.leak-remove:before,
1671
- .mi.leak-remove:before {
1670
+ .material-icons.leak_remove:before,
1671
+ .mi.leak_remove:before {
1672
1672
  content: '\e3f9';
1673
1673
  }
1674
1674
  .material-icons.lens:before,
1675
1675
  .mi.lens:before {
1676
1676
  content: '\e3fa';
1677
1677
  }
1678
- .material-icons.library-add:before,
1679
- .mi.library-add:before {
1678
+ .material-icons.library_add:before,
1679
+ .mi.library_add:before {
1680
1680
  content: '\e02e';
1681
1681
  }
1682
- .material-icons.library-books:before,
1683
- .mi.library-books:before {
1682
+ .material-icons.library_books:before,
1683
+ .mi.library_books:before {
1684
1684
  content: '\e02f';
1685
1685
  }
1686
- .material-icons.library-music:before,
1687
- .mi.library-music:before {
1686
+ .material-icons.library_music:before,
1687
+ .mi.library_music:before {
1688
1688
  content: '\e030';
1689
1689
  }
1690
1690
  .material-icons.link:before,
@@ -1695,188 +1695,188 @@
1695
1695
  .mi.list:before {
1696
1696
  content: '\e896';
1697
1697
  }
1698
- .material-icons.live-help:before,
1699
- .mi.live-help:before {
1698
+ .material-icons.live_help:before,
1699
+ .mi.live_help:before {
1700
1700
  content: '\e0c6';
1701
1701
  }
1702
- .material-icons.live-tv:before,
1703
- .mi.live-tv:before {
1702
+ .material-icons.live_tv:before,
1703
+ .mi.live_tv:before {
1704
1704
  content: '\e639';
1705
1705
  }
1706
- .material-icons.local-activity:before,
1707
- .mi.local-activity:before {
1706
+ .material-icons.local_activity:before,
1707
+ .mi.local_activity:before {
1708
1708
  content: '\e53f';
1709
1709
  }
1710
- .material-icons.local-airport:before,
1711
- .mi.local-airport:before {
1710
+ .material-icons.local_airport:before,
1711
+ .mi.local_airport:before {
1712
1712
  content: '\e53d';
1713
1713
  }
1714
- .material-icons.local-atm:before,
1715
- .mi.local-atm:before {
1714
+ .material-icons.local_atm:before,
1715
+ .mi.local_atm:before {
1716
1716
  content: '\e53e';
1717
1717
  }
1718
- .material-icons.local-bar:before,
1719
- .mi.local-bar:before {
1718
+ .material-icons.local_bar:before,
1719
+ .mi.local_bar:before {
1720
1720
  content: '\e540';
1721
1721
  }
1722
- .material-icons.local-cafe:before,
1723
- .mi.local-cafe:before {
1722
+ .material-icons.local_cafe:before,
1723
+ .mi.local_cafe:before {
1724
1724
  content: '\e541';
1725
1725
  }
1726
- .material-icons.local-car-wash:before,
1727
- .mi.local-car-wash:before {
1726
+ .material-icons.local_car_wash:before,
1727
+ .mi.local_car_wash:before {
1728
1728
  content: '\e542';
1729
1729
  }
1730
- .material-icons.local-convenience-store:before,
1731
- .mi.local-convenience-store:before {
1730
+ .material-icons.local_convenience_store:before,
1731
+ .mi.local_convenience_store:before {
1732
1732
  content: '\e543';
1733
1733
  }
1734
- .material-icons.local-dining:before,
1735
- .mi.local-dining:before {
1734
+ .material-icons.local_dining:before,
1735
+ .mi.local_dining:before {
1736
1736
  content: '\e556';
1737
1737
  }
1738
- .material-icons.local-drink:before,
1739
- .mi.local-drink:before {
1738
+ .material-icons.local_drink:before,
1739
+ .mi.local_drink:before {
1740
1740
  content: '\e544';
1741
1741
  }
1742
- .material-icons.local-florist:before,
1743
- .mi.local-florist:before {
1742
+ .material-icons.local_florist:before,
1743
+ .mi.local_florist:before {
1744
1744
  content: '\e545';
1745
1745
  }
1746
- .material-icons.local-gas-station:before,
1747
- .mi.local-gas-station:before {
1746
+ .material-icons.local_gas_station:before,
1747
+ .mi.local_gas_station:before {
1748
1748
  content: '\e546';
1749
1749
  }
1750
- .material-icons.local-grocery-store:before,
1751
- .mi.local-grocery-store:before {
1750
+ .material-icons.local_grocery_store:before,
1751
+ .mi.local_grocery_store:before {
1752
1752
  content: '\e547';
1753
1753
  }
1754
- .material-icons.local-hospital:before,
1755
- .mi.local-hospital:before {
1754
+ .material-icons.local_hospital:before,
1755
+ .mi.local_hospital:before {
1756
1756
  content: '\e548';
1757
1757
  }
1758
- .material-icons.local-hotel:before,
1759
- .mi.local-hotel:before {
1758
+ .material-icons.local_hotel:before,
1759
+ .mi.local_hotel:before {
1760
1760
  content: '\e549';
1761
1761
  }
1762
- .material-icons.local-laundry-service:before,
1763
- .mi.local-laundry-service:before {
1762
+ .material-icons.local_laundry_service:before,
1763
+ .mi.local_laundry_service:before {
1764
1764
  content: '\e54a';
1765
1765
  }
1766
- .material-icons.local-library:before,
1767
- .mi.local-library:before {
1766
+ .material-icons.local_library:before,
1767
+ .mi.local_library:before {
1768
1768
  content: '\e54b';
1769
1769
  }
1770
- .material-icons.local-mall:before,
1771
- .mi.local-mall:before {
1770
+ .material-icons.local_mall:before,
1771
+ .mi.local_mall:before {
1772
1772
  content: '\e54c';
1773
1773
  }
1774
- .material-icons.local-movies:before,
1775
- .mi.local-movies:before {
1774
+ .material-icons.local_movies:before,
1775
+ .mi.local_movies:before {
1776
1776
  content: '\e54d';
1777
1777
  }
1778
- .material-icons.local-offer:before,
1779
- .mi.local-offer:before {
1778
+ .material-icons.local_offer:before,
1779
+ .mi.local_offer:before {
1780
1780
  content: '\e54e';
1781
1781
  }
1782
- .material-icons.local-parking:before,
1783
- .mi.local-parking:before {
1782
+ .material-icons.local_parking:before,
1783
+ .mi.local_parking:before {
1784
1784
  content: '\e54f';
1785
1785
  }
1786
- .material-icons.local-pharmacy:before,
1787
- .mi.local-pharmacy:before {
1786
+ .material-icons.local_pharmacy:before,
1787
+ .mi.local_pharmacy:before {
1788
1788
  content: '\e550';
1789
1789
  }
1790
- .material-icons.local-phone:before,
1791
- .mi.local-phone:before {
1790
+ .material-icons.local_phone:before,
1791
+ .mi.local_phone:before {
1792
1792
  content: '\e551';
1793
1793
  }
1794
- .material-icons.local-pizza:before,
1795
- .mi.local-pizza:before {
1794
+ .material-icons.local_pizza:before,
1795
+ .mi.local_pizza:before {
1796
1796
  content: '\e552';
1797
1797
  }
1798
- .material-icons.local-play:before,
1799
- .mi.local-play:before {
1798
+ .material-icons.local_play:before,
1799
+ .mi.local_play:before {
1800
1800
  content: '\e553';
1801
1801
  }
1802
- .material-icons.local-post-office:before,
1803
- .mi.local-post-office:before {
1802
+ .material-icons.local_post_office:before,
1803
+ .mi.local_post_office:before {
1804
1804
  content: '\e554';
1805
1805
  }
1806
- .material-icons.local-printshop:before,
1807
- .mi.local-printshop:before {
1806
+ .material-icons.local_printshop:before,
1807
+ .mi.local_printshop:before {
1808
1808
  content: '\e555';
1809
1809
  }
1810
- .material-icons.local-see:before,
1811
- .mi.local-see:before {
1810
+ .material-icons.local_see:before,
1811
+ .mi.local_see:before {
1812
1812
  content: '\e557';
1813
1813
  }
1814
- .material-icons.local-shipping:before,
1815
- .mi.local-shipping:before {
1814
+ .material-icons.local_shipping:before,
1815
+ .mi.local_shipping:before {
1816
1816
  content: '\e558';
1817
1817
  }
1818
- .material-icons.local-taxi:before,
1819
- .mi.local-taxi:before {
1818
+ .material-icons.local_taxi:before,
1819
+ .mi.local_taxi:before {
1820
1820
  content: '\e559';
1821
1821
  }
1822
- .material-icons.location-city:before,
1823
- .mi.location-city:before {
1822
+ .material-icons.location_city:before,
1823
+ .mi.location_city:before {
1824
1824
  content: '\e7f1';
1825
1825
  }
1826
- .material-icons.location-disabled:before,
1827
- .mi.location-disabled:before {
1826
+ .material-icons.location_disabled:before,
1827
+ .mi.location_disabled:before {
1828
1828
  content: '\e1b6';
1829
1829
  }
1830
- .material-icons.location-off:before,
1831
- .mi.location-off:before {
1830
+ .material-icons.location_off:before,
1831
+ .mi.location_off:before {
1832
1832
  content: '\e0c7';
1833
1833
  }
1834
- .material-icons.location-on:before,
1835
- .mi.location-on:before {
1834
+ .material-icons.location_on:before,
1835
+ .mi.location_on:before {
1836
1836
  content: '\e0c8';
1837
1837
  }
1838
- .material-icons.location-searching:before,
1839
- .mi.location-searching:before {
1838
+ .material-icons.location_searching:before,
1839
+ .mi.location_searching:before {
1840
1840
  content: '\e1b7';
1841
1841
  }
1842
1842
  .material-icons.lock:before,
1843
1843
  .mi.lock:before {
1844
1844
  content: '\e897';
1845
1845
  }
1846
- .material-icons.lock-open:before,
1847
- .mi.lock-open:before {
1846
+ .material-icons.lock_open:before,
1847
+ .mi.lock_open:before {
1848
1848
  content: '\e898';
1849
1849
  }
1850
- .material-icons.lock-outline:before,
1851
- .mi.lock-outline:before {
1850
+ .material-icons.lock_outline:before,
1851
+ .mi.lock_outline:before {
1852
1852
  content: '\e899';
1853
1853
  }
1854
1854
  .material-icons.looks:before,
1855
1855
  .mi.looks:before {
1856
1856
  content: '\e3fc';
1857
1857
  }
1858
- .material-icons.looks-3:before,
1859
- .mi.looks-3:before {
1858
+ .material-icons.looks_3:before,
1859
+ .mi.looks_3:before {
1860
1860
  content: '\e3fb';
1861
1861
  }
1862
- .material-icons.looks-4:before,
1863
- .mi.looks-4:before {
1862
+ .material-icons.looks_4:before,
1863
+ .mi.looks_4:before {
1864
1864
  content: '\e3fd';
1865
1865
  }
1866
- .material-icons.looks-5:before,
1867
- .mi.looks-5:before {
1866
+ .material-icons.looks_5:before,
1867
+ .mi.looks_5:before {
1868
1868
  content: '\e3fe';
1869
1869
  }
1870
- .material-icons.looks-6:before,
1871
- .mi.looks-6:before {
1870
+ .material-icons.looks_6:before,
1871
+ .mi.looks_6:before {
1872
1872
  content: '\e3ff';
1873
1873
  }
1874
- .material-icons.looks-one:before,
1875
- .mi.looks-one:before {
1874
+ .material-icons.looks_one:before,
1875
+ .mi.looks_one:before {
1876
1876
  content: '\e400';
1877
1877
  }
1878
- .material-icons.looks-two:before,
1879
- .mi.looks-two:before {
1878
+ .material-icons.looks_two:before,
1879
+ .mi.looks_two:before {
1880
1880
  content: '\e401';
1881
1881
  }
1882
1882
  .material-icons.loop:before,
@@ -1903,8 +1903,8 @@
1903
1903
  .mi.markunread:before {
1904
1904
  content: '\e159';
1905
1905
  }
1906
- .material-icons.markunread-mailbox:before,
1907
- .mi.markunread-mailbox:before {
1906
+ .material-icons.markunread_mailbox:before,
1907
+ .mi.markunread_mailbox:before {
1908
1908
  content: '\e89b';
1909
1909
  }
1910
1910
  .material-icons.memory:before,
@@ -1915,8 +1915,8 @@
1915
1915
  .mi.menu:before {
1916
1916
  content: '\e5d2';
1917
1917
  }
1918
- .material-icons.merge-type:before,
1919
- .mi.merge-type:before {
1918
+ .material-icons.merge_type:before,
1919
+ .mi.merge_type:before {
1920
1920
  content: '\e252';
1921
1921
  }
1922
1922
  .material-icons.message:before,
@@ -1927,52 +1927,52 @@
1927
1927
  .mi.mic:before {
1928
1928
  content: '\e029';
1929
1929
  }
1930
- .material-icons.mic-none:before,
1931
- .mi.mic-none:before {
1930
+ .material-icons.mic_none:before,
1931
+ .mi.mic_none:before {
1932
1932
  content: '\e02a';
1933
1933
  }
1934
- .material-icons.mic-off:before,
1935
- .mi.mic-off:before {
1934
+ .material-icons.mic_off:before,
1935
+ .mi.mic_off:before {
1936
1936
  content: '\e02b';
1937
1937
  }
1938
1938
  .material-icons.mms:before,
1939
1939
  .mi.mms:before {
1940
1940
  content: '\e618';
1941
1941
  }
1942
- .material-icons.mode-comment:before,
1943
- .mi.mode-comment:before {
1942
+ .material-icons.mode_comment:before,
1943
+ .mi.mode_comment:before {
1944
1944
  content: '\e253';
1945
1945
  }
1946
- .material-icons.mode-edit:before,
1947
- .mi.mode-edit:before {
1946
+ .material-icons.mode_edit:before,
1947
+ .mi.mode_edit:before {
1948
1948
  content: '\e254';
1949
1949
  }
1950
- .material-icons.money-off:before,
1951
- .mi.money-off:before {
1950
+ .material-icons.money_off:before,
1951
+ .mi.money_off:before {
1952
1952
  content: '\e25c';
1953
1953
  }
1954
- .material-icons.monochrome-photos:before,
1955
- .mi.monochrome-photos:before {
1954
+ .material-icons.monochrome_photos:before,
1955
+ .mi.monochrome_photos:before {
1956
1956
  content: '\e403';
1957
1957
  }
1958
1958
  .material-icons.mood:before,
1959
1959
  .mi.mood:before {
1960
1960
  content: '\e7f2';
1961
1961
  }
1962
- .material-icons.mood-bad:before,
1963
- .mi.mood-bad:before {
1962
+ .material-icons.mood_bad:before,
1963
+ .mi.mood_bad:before {
1964
1964
  content: '\e7f3';
1965
1965
  }
1966
1966
  .material-icons.more:before,
1967
1967
  .mi.more:before {
1968
1968
  content: '\e619';
1969
1969
  }
1970
- .material-icons.more-horiz:before,
1971
- .mi.more-horiz:before {
1970
+ .material-icons.more_horiz:before,
1971
+ .mi.more_horiz:before {
1972
1972
  content: '\e5d3';
1973
1973
  }
1974
- .material-icons.more-vert:before,
1975
- .mi.more-vert:before {
1974
+ .material-icons.more_vert:before,
1975
+ .mi.more_vert:before {
1976
1976
  content: '\e5d4';
1977
1977
  }
1978
1978
  .material-icons.mouse:before,
@@ -1983,108 +1983,108 @@
1983
1983
  .mi.movie:before {
1984
1984
  content: '\e02c';
1985
1985
  }
1986
- .material-icons.movie-creation:before,
1987
- .mi.movie-creation:before {
1986
+ .material-icons.movie_creation:before,
1987
+ .mi.movie_creation:before {
1988
1988
  content: '\e404';
1989
1989
  }
1990
- .material-icons.music-note:before,
1991
- .mi.music-note:before {
1990
+ .material-icons.music_note:before,
1991
+ .mi.music_note:before {
1992
1992
  content: '\e405';
1993
1993
  }
1994
- .material-icons.my-location:before,
1995
- .mi.my-location:before {
1994
+ .material-icons.my_location:before,
1995
+ .mi.my_location:before {
1996
1996
  content: '\e55c';
1997
1997
  }
1998
1998
  .material-icons.nature:before,
1999
1999
  .mi.nature:before {
2000
2000
  content: '\e406';
2001
2001
  }
2002
- .material-icons.nature-people:before,
2003
- .mi.nature-people:before {
2002
+ .material-icons.nature_people:before,
2003
+ .mi.nature_people:before {
2004
2004
  content: '\e407';
2005
2005
  }
2006
- .material-icons.navigate-before:before,
2007
- .mi.navigate-before:before {
2006
+ .material-icons.navigate_before:before,
2007
+ .mi.navigate_before:before {
2008
2008
  content: '\e408';
2009
2009
  }
2010
- .material-icons.navigate-next:before,
2011
- .mi.navigate-next:before {
2010
+ .material-icons.navigate_next:before,
2011
+ .mi.navigate_next:before {
2012
2012
  content: '\e409';
2013
2013
  }
2014
2014
  .material-icons.navigation:before,
2015
2015
  .mi.navigation:before {
2016
2016
  content: '\e55d';
2017
2017
  }
2018
- .material-icons.network-cell:before,
2019
- .mi.network-cell:before {
2018
+ .material-icons.network_cell:before,
2019
+ .mi.network_cell:before {
2020
2020
  content: '\e1b9';
2021
2021
  }
2022
- .material-icons.network-locked:before,
2023
- .mi.network-locked:before {
2022
+ .material-icons.network_locked:before,
2023
+ .mi.network_locked:before {
2024
2024
  content: '\e61a';
2025
2025
  }
2026
- .material-icons.network-wifi:before,
2027
- .mi.network-wifi:before {
2026
+ .material-icons.network_wifi:before,
2027
+ .mi.network_wifi:before {
2028
2028
  content: '\e1ba';
2029
2029
  }
2030
- .material-icons.new-releases:before,
2031
- .mi.new-releases:before {
2030
+ .material-icons.new_releases:before,
2031
+ .mi.new_releases:before {
2032
2032
  content: '\e031';
2033
2033
  }
2034
2034
  .material-icons.nfc:before,
2035
2035
  .mi.nfc:before {
2036
2036
  content: '\e1bb';
2037
2037
  }
2038
- .material-icons.no-sim:before,
2039
- .mi.no-sim:before {
2038
+ .material-icons.no_sim:before,
2039
+ .mi.no_sim:before {
2040
2040
  content: '\e0cc';
2041
2041
  }
2042
- .material-icons.not-interested:before,
2043
- .mi.not-interested:before {
2042
+ .material-icons.not_interested:before,
2043
+ .mi.not_interested:before {
2044
2044
  content: '\e033';
2045
2045
  }
2046
- .material-icons.note-add:before,
2047
- .mi.note-add:before {
2046
+ .material-icons.note_add:before,
2047
+ .mi.note_add:before {
2048
2048
  content: '\e89c';
2049
2049
  }
2050
2050
  .material-icons.notifications:before,
2051
2051
  .mi.notifications:before {
2052
2052
  content: '\e7f4';
2053
2053
  }
2054
- .material-icons.notifications-active:before,
2055
- .mi.notifications-active:before {
2054
+ .material-icons.notifications_active:before,
2055
+ .mi.notifications_active:before {
2056
2056
  content: '\e7f7';
2057
2057
  }
2058
- .material-icons.notifications-none:before,
2059
- .mi.notifications-none:before {
2058
+ .material-icons.notifications_none:before,
2059
+ .mi.notifications_none:before {
2060
2060
  content: '\e7f5';
2061
2061
  }
2062
- .material-icons.notifications-off:before,
2063
- .mi.notifications-off:before {
2062
+ .material-icons.notifications_off:before,
2063
+ .mi.notifications_off:before {
2064
2064
  content: '\e7f6';
2065
2065
  }
2066
- .material-icons.notifications-paused:before,
2067
- .mi.notifications-paused:before {
2066
+ .material-icons.notifications_paused:before,
2067
+ .mi.notifications_paused:before {
2068
2068
  content: '\e7f8';
2069
2069
  }
2070
- .material-icons.offline-pin:before,
2071
- .mi.offline-pin:before {
2070
+ .material-icons.offline_pin:before,
2071
+ .mi.offline_pin:before {
2072
2072
  content: '\e90a';
2073
2073
  }
2074
- .material-icons.ondemand-video:before,
2075
- .mi.ondemand-video:before {
2074
+ .material-icons.ondemand_video:before,
2075
+ .mi.ondemand_video:before {
2076
2076
  content: '\e63a';
2077
2077
  }
2078
- .material-icons.open-in-browser:before,
2079
- .mi.open-in-browser:before {
2078
+ .material-icons.open_in_browser:before,
2079
+ .mi.open_in_browser:before {
2080
2080
  content: '\e89d';
2081
2081
  }
2082
- .material-icons.open-in-new:before,
2083
- .mi.open-in-new:before {
2082
+ .material-icons.open_in_new:before,
2083
+ .mi.open_in_new:before {
2084
2084
  content: '\e89e';
2085
2085
  }
2086
- .material-icons.open-with:before,
2087
- .mi.open-with:before {
2086
+ .material-icons.open_with:before,
2087
+ .mi.open_with:before {
2088
2088
  content: '\e89f';
2089
2089
  }
2090
2090
  .material-icons.pages:before,
@@ -2103,36 +2103,36 @@
2103
2103
  .mi.panorama:before {
2104
2104
  content: '\e40b';
2105
2105
  }
2106
- .material-icons.panorama-fish-eye:before,
2107
- .mi.panorama-fish-eye:before {
2106
+ .material-icons.panorama_fish_eye:before,
2107
+ .mi.panorama_fish_eye:before {
2108
2108
  content: '\e40c';
2109
2109
  }
2110
- .material-icons.panorama-horizontal:before,
2111
- .mi.panorama-horizontal:before {
2110
+ .material-icons.panorama_horizontal:before,
2111
+ .mi.panorama_horizontal:before {
2112
2112
  content: '\e40d';
2113
2113
  }
2114
- .material-icons.panorama-vertical:before,
2115
- .mi.panorama-vertical:before {
2114
+ .material-icons.panorama_vertical:before,
2115
+ .mi.panorama_vertical:before {
2116
2116
  content: '\e40e';
2117
2117
  }
2118
- .material-icons.panorama-wide-angle:before,
2119
- .mi.panorama-wide-angle:before {
2118
+ .material-icons.panorama_wide_angle:before,
2119
+ .mi.panorama_wide_angle:before {
2120
2120
  content: '\e40f';
2121
2121
  }
2122
- .material-icons.party-mode:before,
2123
- .mi.party-mode:before {
2122
+ .material-icons.party_mode:before,
2123
+ .mi.party_mode:before {
2124
2124
  content: '\e7fa';
2125
2125
  }
2126
2126
  .material-icons.pause:before,
2127
2127
  .mi.pause:before {
2128
2128
  content: '\e034';
2129
2129
  }
2130
- .material-icons.pause-circle-filled:before,
2131
- .mi.pause-circle-filled:before {
2130
+ .material-icons.pause_circle_filled:before,
2131
+ .mi.pause_circle_filled:before {
2132
2132
  content: '\e035';
2133
2133
  }
2134
- .material-icons.pause-circle-outline:before,
2135
- .mi.pause-circle-outline:before {
2134
+ .material-icons.pause_circle_outline:before,
2135
+ .mi.pause_circle_outline:before {
2136
2136
  content: '\e036';
2137
2137
  }
2138
2138
  .material-icons.payment:before,
@@ -2143,188 +2143,188 @@
2143
2143
  .mi.people:before {
2144
2144
  content: '\e7fb';
2145
2145
  }
2146
- .material-icons.people-outline:before,
2147
- .mi.people-outline:before {
2146
+ .material-icons.people_outline:before,
2147
+ .mi.people_outline:before {
2148
2148
  content: '\e7fc';
2149
2149
  }
2150
- .material-icons.perm-camera-mic:before,
2151
- .mi.perm-camera-mic:before {
2150
+ .material-icons.perm_camera_mic:before,
2151
+ .mi.perm_camera_mic:before {
2152
2152
  content: '\e8a2';
2153
2153
  }
2154
- .material-icons.perm-contact-calendar:before,
2155
- .mi.perm-contact-calendar:before {
2154
+ .material-icons.perm_contact_calendar:before,
2155
+ .mi.perm_contact_calendar:before {
2156
2156
  content: '\e8a3';
2157
2157
  }
2158
- .material-icons.perm-data-setting:before,
2159
- .mi.perm-data-setting:before {
2158
+ .material-icons.perm_data_setting:before,
2159
+ .mi.perm_data_setting:before {
2160
2160
  content: '\e8a4';
2161
2161
  }
2162
- .material-icons.perm-device-information:before,
2163
- .mi.perm-device-information:before {
2162
+ .material-icons.perm_device_information:before,
2163
+ .mi.perm_device_information:before {
2164
2164
  content: '\e8a5';
2165
2165
  }
2166
- .material-icons.perm-identity:before,
2167
- .mi.perm-identity:before {
2166
+ .material-icons.perm_identity:before,
2167
+ .mi.perm_identity:before {
2168
2168
  content: '\e8a6';
2169
2169
  }
2170
- .material-icons.perm-media:before,
2171
- .mi.perm-media:before {
2170
+ .material-icons.perm_media:before,
2171
+ .mi.perm_media:before {
2172
2172
  content: '\e8a7';
2173
2173
  }
2174
- .material-icons.perm-phone-msg:before,
2175
- .mi.perm-phone-msg:before {
2174
+ .material-icons.perm_phone_msg:before,
2175
+ .mi.perm_phone_msg:before {
2176
2176
  content: '\e8a8';
2177
2177
  }
2178
- .material-icons.perm-scan-wifi:before,
2179
- .mi.perm-scan-wifi:before {
2178
+ .material-icons.perm_scan_wifi:before,
2179
+ .mi.perm_scan_wifi:before {
2180
2180
  content: '\e8a9';
2181
2181
  }
2182
2182
  .material-icons.person:before,
2183
2183
  .mi.person:before {
2184
2184
  content: '\e7fd';
2185
2185
  }
2186
- .material-icons.person-add:before,
2187
- .mi.person-add:before {
2186
+ .material-icons.person_add:before,
2187
+ .mi.person_add:before {
2188
2188
  content: '\e7fe';
2189
2189
  }
2190
- .material-icons.person-outline:before,
2191
- .mi.person-outline:before {
2190
+ .material-icons.person_outline:before,
2191
+ .mi.person_outline:before {
2192
2192
  content: '\e7ff';
2193
2193
  }
2194
- .material-icons.person-pin:before,
2195
- .mi.person-pin:before {
2194
+ .material-icons.person_pin:before,
2195
+ .mi.person_pin:before {
2196
2196
  content: '\e55a';
2197
2197
  }
2198
- .material-icons.personal-video:before,
2199
- .mi.personal-video:before {
2198
+ .material-icons.personal_video:before,
2199
+ .mi.personal_video:before {
2200
2200
  content: '\e63b';
2201
2201
  }
2202
2202
  .material-icons.phone:before,
2203
2203
  .mi.phone:before {
2204
2204
  content: '\e0cd';
2205
2205
  }
2206
- .material-icons.phone-android:before,
2207
- .mi.phone-android:before {
2206
+ .material-icons.phone_android:before,
2207
+ .mi.phone_android:before {
2208
2208
  content: '\e324';
2209
2209
  }
2210
- .material-icons.phone-bluetooth-speaker:before,
2211
- .mi.phone-bluetooth-speaker:before {
2210
+ .material-icons.phone_bluetooth_speaker:before,
2211
+ .mi.phone_bluetooth_speaker:before {
2212
2212
  content: '\e61b';
2213
2213
  }
2214
- .material-icons.phone-forwarded:before,
2215
- .mi.phone-forwarded:before {
2214
+ .material-icons.phone_forwarded:before,
2215
+ .mi.phone_forwarded:before {
2216
2216
  content: '\e61c';
2217
2217
  }
2218
- .material-icons.phone-in-talk:before,
2219
- .mi.phone-in-talk:before {
2218
+ .material-icons.phone_in_talk:before,
2219
+ .mi.phone_in_talk:before {
2220
2220
  content: '\e61d';
2221
2221
  }
2222
- .material-icons.phone-iphone:before,
2223
- .mi.phone-iphone:before {
2222
+ .material-icons.phone_iphone:before,
2223
+ .mi.phone_iphone:before {
2224
2224
  content: '\e325';
2225
2225
  }
2226
- .material-icons.phone-locked:before,
2227
- .mi.phone-locked:before {
2226
+ .material-icons.phone_locked:before,
2227
+ .mi.phone_locked:before {
2228
2228
  content: '\e61e';
2229
2229
  }
2230
- .material-icons.phone-missed:before,
2231
- .mi.phone-missed:before {
2230
+ .material-icons.phone_missed:before,
2231
+ .mi.phone_missed:before {
2232
2232
  content: '\e61f';
2233
2233
  }
2234
- .material-icons.phone-paused:before,
2235
- .mi.phone-paused:before {
2234
+ .material-icons.phone_paused:before,
2235
+ .mi.phone_paused:before {
2236
2236
  content: '\e620';
2237
2237
  }
2238
2238
  .material-icons.phonelink:before,
2239
2239
  .mi.phonelink:before {
2240
2240
  content: '\e326';
2241
2241
  }
2242
- .material-icons.phonelink-erase:before,
2243
- .mi.phonelink-erase:before {
2242
+ .material-icons.phonelink_erase:before,
2243
+ .mi.phonelink_erase:before {
2244
2244
  content: '\e0db';
2245
2245
  }
2246
- .material-icons.phonelink-lock:before,
2247
- .mi.phonelink-lock:before {
2246
+ .material-icons.phonelink_lock:before,
2247
+ .mi.phonelink_lock:before {
2248
2248
  content: '\e0dc';
2249
2249
  }
2250
- .material-icons.phonelink-off:before,
2251
- .mi.phonelink-off:before {
2250
+ .material-icons.phonelink_off:before,
2251
+ .mi.phonelink_off:before {
2252
2252
  content: '\e327';
2253
2253
  }
2254
- .material-icons.phonelink-ring:before,
2255
- .mi.phonelink-ring:before {
2254
+ .material-icons.phonelink_ring:before,
2255
+ .mi.phonelink_ring:before {
2256
2256
  content: '\e0dd';
2257
2257
  }
2258
- .material-icons.phonelink-setup:before,
2259
- .mi.phonelink-setup:before {
2258
+ .material-icons.phonelink_setup:before,
2259
+ .mi.phonelink_setup:before {
2260
2260
  content: '\e0de';
2261
2261
  }
2262
2262
  .material-icons.photo:before,
2263
2263
  .mi.photo:before {
2264
2264
  content: '\e410';
2265
2265
  }
2266
- .material-icons.photo-album:before,
2267
- .mi.photo-album:before {
2266
+ .material-icons.photo_album:before,
2267
+ .mi.photo_album:before {
2268
2268
  content: '\e411';
2269
2269
  }
2270
- .material-icons.photo-camera:before,
2271
- .mi.photo-camera:before {
2270
+ .material-icons.photo_camera:before,
2271
+ .mi.photo_camera:before {
2272
2272
  content: '\e412';
2273
2273
  }
2274
- .material-icons.photo-library:before,
2275
- .mi.photo-library:before {
2274
+ .material-icons.photo_library:before,
2275
+ .mi.photo_library:before {
2276
2276
  content: '\e413';
2277
2277
  }
2278
- .material-icons.photo-size-select-actual:before,
2279
- .mi.photo-size-select-actual:before {
2278
+ .material-icons.photo_size_select_actual:before,
2279
+ .mi.photo_size_select_actual:before {
2280
2280
  content: '\e432';
2281
2281
  }
2282
- .material-icons.photo-size-select-large:before,
2283
- .mi.photo-size-select-large:before {
2282
+ .material-icons.photo_size_select_large:before,
2283
+ .mi.photo_size_select_large:before {
2284
2284
  content: '\e433';
2285
2285
  }
2286
- .material-icons.photo-size-select-small:before,
2287
- .mi.photo-size-select-small:before {
2286
+ .material-icons.photo_size_select_small:before,
2287
+ .mi.photo_size_select_small:before {
2288
2288
  content: '\e434';
2289
2289
  }
2290
- .material-icons.picture-as-pdf:before,
2291
- .mi.picture-as-pdf:before {
2290
+ .material-icons.picture_as_pdf:before,
2291
+ .mi.picture_as_pdf:before {
2292
2292
  content: '\e415';
2293
2293
  }
2294
- .material-icons.picture-in-picture:before,
2295
- .mi.picture-in-picture:before {
2294
+ .material-icons.picture_in_picture:before,
2295
+ .mi.picture_in_picture:before {
2296
2296
  content: '\e8aa';
2297
2297
  }
2298
- .material-icons.pin-drop:before,
2299
- .mi.pin-drop:before {
2298
+ .material-icons.pin_drop:before,
2299
+ .mi.pin_drop:before {
2300
2300
  content: '\e55e';
2301
2301
  }
2302
2302
  .material-icons.place:before,
2303
2303
  .mi.place:before {
2304
2304
  content: '\e55f';
2305
2305
  }
2306
- .material-icons.play-arrow:before,
2307
- .mi.play-arrow:before {
2306
+ .material-icons.play_arrow:before,
2307
+ .mi.play_arrow:before {
2308
2308
  content: '\e037';
2309
2309
  }
2310
- .material-icons.play-circle-filled:before,
2311
- .mi.play-circle-filled:before {
2310
+ .material-icons.play_circle_filled:before,
2311
+ .mi.play_circle_filled:before {
2312
2312
  content: '\e038';
2313
2313
  }
2314
- .material-icons.play-circle-outline:before,
2315
- .mi.play-circle-outline:before {
2314
+ .material-icons.play_circle_outline:before,
2315
+ .mi.play_circle_outline:before {
2316
2316
  content: '\e039';
2317
2317
  }
2318
- .material-icons.play-for-work:before,
2319
- .mi.play-for-work:before {
2318
+ .material-icons.play_for_work:before,
2319
+ .mi.play_for_work:before {
2320
2320
  content: '\e906';
2321
2321
  }
2322
- .material-icons.playlist-add:before,
2323
- .mi.playlist-add:before {
2322
+ .material-icons.playlist_add:before,
2323
+ .mi.playlist_add:before {
2324
2324
  content: '\e03b';
2325
2325
  }
2326
- .material-icons.plus-one:before,
2327
- .mi.plus-one:before {
2326
+ .material-icons.plus_one:before,
2327
+ .mi.plus_one:before {
2328
2328
  content: '\e800';
2329
2329
  }
2330
2330
  .material-icons.poll:before,
@@ -2335,8 +2335,8 @@
2335
2335
  .mi.polymer:before {
2336
2336
  content: '\e8ab';
2337
2337
  }
2338
- .material-icons.portable-wifi-off:before,
2339
- .mi.portable-wifi-off:before {
2338
+ .material-icons.portable_wifi_off:before,
2339
+ .mi.portable_wifi_off:before {
2340
2340
  content: '\e0ce';
2341
2341
  }
2342
2342
  .material-icons.portrait:before,
@@ -2347,16 +2347,16 @@
2347
2347
  .mi.power:before {
2348
2348
  content: '\e63c';
2349
2349
  }
2350
- .material-icons.power-input:before,
2351
- .mi.power-input:before {
2350
+ .material-icons.power_input:before,
2351
+ .mi.power_input:before {
2352
2352
  content: '\e336';
2353
2353
  }
2354
- .material-icons.power-settings-new:before,
2355
- .mi.power-settings-new:before {
2354
+ .material-icons.power_settings_new:before,
2355
+ .mi.power_settings_new:before {
2356
2356
  content: '\e8ac';
2357
2357
  }
2358
- .material-icons.present-to-all:before,
2359
- .mi.present-to-all:before {
2358
+ .material-icons.present_to_all:before,
2359
+ .mi.present_to_all:before {
2360
2360
  content: '\e0df';
2361
2361
  }
2362
2362
  .material-icons.print:before,
@@ -2371,44 +2371,44 @@
2371
2371
  .mi.publish:before {
2372
2372
  content: '\e255';
2373
2373
  }
2374
- .material-icons.query-builder:before,
2375
- .mi.query-builder:before {
2374
+ .material-icons.query_builder:before,
2375
+ .mi.query_builder:before {
2376
2376
  content: '\e8ae';
2377
2377
  }
2378
- .material-icons.question-answer:before,
2379
- .mi.question-answer:before {
2378
+ .material-icons.question_answer:before,
2379
+ .mi.question_answer:before {
2380
2380
  content: '\e8af';
2381
2381
  }
2382
2382
  .material-icons.queue:before,
2383
2383
  .mi.queue:before {
2384
2384
  content: '\e03c';
2385
2385
  }
2386
- .material-icons.queue-music:before,
2387
- .mi.queue-music:before {
2386
+ .material-icons.queue_music:before,
2387
+ .mi.queue_music:before {
2388
2388
  content: '\e03d';
2389
2389
  }
2390
2390
  .material-icons.radio:before,
2391
2391
  .mi.radio:before {
2392
2392
  content: '\e03e';
2393
2393
  }
2394
- .material-icons.radio-button-checked:before,
2395
- .mi.radio-button-checked:before {
2394
+ .material-icons.radio_button_checked:before,
2395
+ .mi.radio_button_checked:before {
2396
2396
  content: '\e837';
2397
2397
  }
2398
- .material-icons.radio-button-unchecked:before,
2399
- .mi.radio-button-unchecked:before {
2398
+ .material-icons.radio_button_unchecked:before,
2399
+ .mi.radio_button_unchecked:before {
2400
2400
  content: '\e836';
2401
2401
  }
2402
- .material-icons.rate-review:before,
2403
- .mi.rate-review:before {
2402
+ .material-icons.rate_review:before,
2403
+ .mi.rate_review:before {
2404
2404
  content: '\e560';
2405
2405
  }
2406
2406
  .material-icons.receipt:before,
2407
2407
  .mi.receipt:before {
2408
2408
  content: '\e8b0';
2409
2409
  }
2410
- .material-icons.recent-actors:before,
2411
- .mi.recent-actors:before {
2410
+ .material-icons.recent_actors:before,
2411
+ .mi.recent_actors:before {
2412
2412
  content: '\e03f';
2413
2413
  }
2414
2414
  .material-icons.redeem:before,
@@ -2427,16 +2427,16 @@
2427
2427
  .mi.remove:before {
2428
2428
  content: '\e15b';
2429
2429
  }
2430
- .material-icons.remove-circle:before,
2431
- .mi.remove-circle:before {
2430
+ .material-icons.remove_circle:before,
2431
+ .mi.remove_circle:before {
2432
2432
  content: '\e15c';
2433
2433
  }
2434
- .material-icons.remove-circle-outline:before,
2435
- .mi.remove-circle-outline:before {
2434
+ .material-icons.remove_circle_outline:before,
2435
+ .mi.remove_circle_outline:before {
2436
2436
  content: '\e15d';
2437
2437
  }
2438
- .material-icons.remove-red-eye:before,
2439
- .mi.remove-red-eye:before {
2438
+ .material-icons.remove_red_eye:before,
2439
+ .mi.remove_red_eye:before {
2440
2440
  content: '\e417';
2441
2441
  }
2442
2442
  .material-icons.reorder:before,
@@ -2447,68 +2447,68 @@
2447
2447
  .mi.repeat:before {
2448
2448
  content: '\e040';
2449
2449
  }
2450
- .material-icons.repeat-one:before,
2451
- .mi.repeat-one:before {
2450
+ .material-icons.repeat_one:before,
2451
+ .mi.repeat_one:before {
2452
2452
  content: '\e041';
2453
2453
  }
2454
2454
  .material-icons.replay:before,
2455
2455
  .mi.replay:before {
2456
2456
  content: '\e042';
2457
2457
  }
2458
- .material-icons.replay-10:before,
2459
- .mi.replay-10:before {
2458
+ .material-icons.replay_10:before,
2459
+ .mi.replay_10:before {
2460
2460
  content: '\e059';
2461
2461
  }
2462
- .material-icons.replay-30:before,
2463
- .mi.replay-30:before {
2462
+ .material-icons.replay_30:before,
2463
+ .mi.replay_30:before {
2464
2464
  content: '\e05a';
2465
2465
  }
2466
- .material-icons.replay-5:before,
2467
- .mi.replay-5:before {
2466
+ .material-icons.replay_5:before,
2467
+ .mi.replay_5:before {
2468
2468
  content: '\e05b';
2469
2469
  }
2470
2470
  .material-icons.reply:before,
2471
2471
  .mi.reply:before {
2472
2472
  content: '\e15e';
2473
2473
  }
2474
- .material-icons.reply-all:before,
2475
- .mi.reply-all:before {
2474
+ .material-icons.reply_all:before,
2475
+ .mi.reply_all:before {
2476
2476
  content: '\e15f';
2477
2477
  }
2478
2478
  .material-icons.report:before,
2479
2479
  .mi.report:before {
2480
2480
  content: '\e160';
2481
2481
  }
2482
- .material-icons.report-problem:before,
2483
- .mi.report-problem:before {
2482
+ .material-icons.report_problem:before,
2483
+ .mi.report_problem:before {
2484
2484
  content: '\e8b2';
2485
2485
  }
2486
- .material-icons.restaurant-menu:before,
2487
- .mi.restaurant-menu:before {
2486
+ .material-icons.restaurant_menu:before,
2487
+ .mi.restaurant_menu:before {
2488
2488
  content: '\e561';
2489
2489
  }
2490
2490
  .material-icons.restore:before,
2491
2491
  .mi.restore:before {
2492
2492
  content: '\e8b3';
2493
2493
  }
2494
- .material-icons.ring-volume:before,
2495
- .mi.ring-volume:before {
2494
+ .material-icons.ring_volume:before,
2495
+ .mi.ring_volume:before {
2496
2496
  content: '\e0d1';
2497
2497
  }
2498
2498
  .material-icons.room:before,
2499
2499
  .mi.room:before {
2500
2500
  content: '\e8b4';
2501
2501
  }
2502
- .material-icons.rotate-90-degrees-ccw:before,
2503
- .mi.rotate-90-degrees-ccw:before {
2502
+ .material-icons.rotate_90_degrees_ccw:before,
2503
+ .mi.rotate_90_degrees_ccw:before {
2504
2504
  content: '\e418';
2505
2505
  }
2506
- .material-icons.rotate-left:before,
2507
- .mi.rotate-left:before {
2506
+ .material-icons.rotate_left:before,
2507
+ .mi.rotate_left:before {
2508
2508
  content: '\e419';
2509
2509
  }
2510
- .material-icons.rotate-right:before,
2511
- .mi.rotate-right:before {
2510
+ .material-icons.rotate_right:before,
2511
+ .mi.rotate_right:before {
2512
2512
  content: '\e41a';
2513
2513
  }
2514
2514
  .material-icons.router:before,
@@ -2535,28 +2535,28 @@
2535
2535
  .mi.school:before {
2536
2536
  content: '\e80c';
2537
2537
  }
2538
- .material-icons.screen-lock-landscape:before,
2539
- .mi.screen-lock-landscape:before {
2538
+ .material-icons.screen_lock_landscape:before,
2539
+ .mi.screen_lock_landscape:before {
2540
2540
  content: '\e1be';
2541
2541
  }
2542
- .material-icons.screen-lock-portrait:before,
2543
- .mi.screen-lock-portrait:before {
2542
+ .material-icons.screen_lock_portrait:before,
2543
+ .mi.screen_lock_portrait:before {
2544
2544
  content: '\e1bf';
2545
2545
  }
2546
- .material-icons.screen-lock-rotation:before,
2547
- .mi.screen-lock-rotation:before {
2546
+ .material-icons.screen_lock_rotation:before,
2547
+ .mi.screen_lock_rotation:before {
2548
2548
  content: '\e1c0';
2549
2549
  }
2550
- .material-icons.screen-rotation:before,
2551
- .mi.screen-rotation:before {
2550
+ .material-icons.screen_rotation:before,
2551
+ .mi.screen_rotation:before {
2552
2552
  content: '\e1c1';
2553
2553
  }
2554
- .material-icons.sd-card:before,
2555
- .mi.sd-card:before {
2554
+ .material-icons.sd_card:before,
2555
+ .mi.sd_card:before {
2556
2556
  content: '\e623';
2557
2557
  }
2558
- .material-icons.sd-storage:before,
2559
- .mi.sd-storage:before {
2558
+ .material-icons.sd_storage:before,
2559
+ .mi.sd_storage:before {
2560
2560
  content: '\e1c2';
2561
2561
  }
2562
2562
  .material-icons.search:before,
@@ -2567,8 +2567,8 @@
2567
2567
  .mi.security:before {
2568
2568
  content: '\e32a';
2569
2569
  }
2570
- .material-icons.select-all:before,
2571
- .mi.select-all:before {
2570
+ .material-icons.select_all:before,
2571
+ .mi.select_all:before {
2572
2572
  content: '\e162';
2573
2573
  }
2574
2574
  .material-icons.send:before,
@@ -2579,72 +2579,72 @@
2579
2579
  .mi.settings:before {
2580
2580
  content: '\e8b8';
2581
2581
  }
2582
- .material-icons.settings-applications:before,
2583
- .mi.settings-applications:before {
2582
+ .material-icons.settings_applications:before,
2583
+ .mi.settings_applications:before {
2584
2584
  content: '\e8b9';
2585
2585
  }
2586
- .material-icons.settings-backup-restore:before,
2587
- .mi.settings-backup-restore:before {
2586
+ .material-icons.settings_backup_restore:before,
2587
+ .mi.settings_backup_restore:before {
2588
2588
  content: '\e8ba';
2589
2589
  }
2590
- .material-icons.settings-bluetooth:before,
2591
- .mi.settings-bluetooth:before {
2590
+ .material-icons.settings_bluetooth:before,
2591
+ .mi.settings_bluetooth:before {
2592
2592
  content: '\e8bb';
2593
2593
  }
2594
- .material-icons.settings-brightness:before,
2595
- .mi.settings-brightness:before {
2594
+ .material-icons.settings_brightness:before,
2595
+ .mi.settings_brightness:before {
2596
2596
  content: '\e8bd';
2597
2597
  }
2598
- .material-icons.settings-cell:before,
2599
- .mi.settings-cell:before {
2598
+ .material-icons.settings_cell:before,
2599
+ .mi.settings_cell:before {
2600
2600
  content: '\e8bc';
2601
2601
  }
2602
- .material-icons.settings-ethernet:before,
2603
- .mi.settings-ethernet:before {
2602
+ .material-icons.settings_ethernet:before,
2603
+ .mi.settings_ethernet:before {
2604
2604
  content: '\e8be';
2605
2605
  }
2606
- .material-icons.settings-input-antenna:before,
2607
- .mi.settings-input-antenna:before {
2606
+ .material-icons.settings_input_antenna:before,
2607
+ .mi.settings_input_antenna:before {
2608
2608
  content: '\e8bf';
2609
2609
  }
2610
- .material-icons.settings-input-component:before,
2611
- .mi.settings-input-component:before {
2610
+ .material-icons.settings_input_component:before,
2611
+ .mi.settings_input_component:before {
2612
2612
  content: '\e8c0';
2613
2613
  }
2614
- .material-icons.settings-input-composite:before,
2615
- .mi.settings-input-composite:before {
2614
+ .material-icons.settings_input_composite:before,
2615
+ .mi.settings_input_composite:before {
2616
2616
  content: '\e8c1';
2617
2617
  }
2618
- .material-icons.settings-input-hdmi:before,
2619
- .mi.settings-input-hdmi:before {
2618
+ .material-icons.settings_input_hdmi:before,
2619
+ .mi.settings_input_hdmi:before {
2620
2620
  content: '\e8c2';
2621
2621
  }
2622
- .material-icons.settings-input-svideo:before,
2623
- .mi.settings-input-svideo:before {
2622
+ .material-icons.settings_input_svideo:before,
2623
+ .mi.settings_input_svideo:before {
2624
2624
  content: '\e8c3';
2625
2625
  }
2626
- .material-icons.settings-overscan:before,
2627
- .mi.settings-overscan:before {
2626
+ .material-icons.settings_overscan:before,
2627
+ .mi.settings_overscan:before {
2628
2628
  content: '\e8c4';
2629
2629
  }
2630
- .material-icons.settings-phone:before,
2631
- .mi.settings-phone:before {
2630
+ .material-icons.settings_phone:before,
2631
+ .mi.settings_phone:before {
2632
2632
  content: '\e8c5';
2633
2633
  }
2634
- .material-icons.settings-power:before,
2635
- .mi.settings-power:before {
2634
+ .material-icons.settings_power:before,
2635
+ .mi.settings_power:before {
2636
2636
  content: '\e8c6';
2637
2637
  }
2638
- .material-icons.settings-remote:before,
2639
- .mi.settings-remote:before {
2638
+ .material-icons.settings_remote:before,
2639
+ .mi.settings_remote:before {
2640
2640
  content: '\e8c7';
2641
2641
  }
2642
- .material-icons.settings-system-daydream:before,
2643
- .mi.settings-system-daydream:before {
2642
+ .material-icons.settings_system_daydream:before,
2643
+ .mi.settings_system_daydream:before {
2644
2644
  content: '\e1c3';
2645
2645
  }
2646
- .material-icons.settings-voice:before,
2647
- .mi.settings-voice:before {
2646
+ .material-icons.settings_voice:before,
2647
+ .mi.settings_voice:before {
2648
2648
  content: '\e8c8';
2649
2649
  }
2650
2650
  .material-icons.share:before,
@@ -2655,68 +2655,68 @@
2655
2655
  .mi.shop:before {
2656
2656
  content: '\e8c9';
2657
2657
  }
2658
- .material-icons.shop-two:before,
2659
- .mi.shop-two:before {
2658
+ .material-icons.shop_two:before,
2659
+ .mi.shop_two:before {
2660
2660
  content: '\e8ca';
2661
2661
  }
2662
- .material-icons.shopping-basket:before,
2663
- .mi.shopping-basket:before {
2662
+ .material-icons.shopping_basket:before,
2663
+ .mi.shopping_basket:before {
2664
2664
  content: '\e8cb';
2665
2665
  }
2666
- .material-icons.shopping-cart:before,
2667
- .mi.shopping-cart:before {
2666
+ .material-icons.shopping_cart:before,
2667
+ .mi.shopping_cart:before {
2668
2668
  content: '\e8cc';
2669
2669
  }
2670
2670
  .material-icons.shuffle:before,
2671
2671
  .mi.shuffle:before {
2672
2672
  content: '\e043';
2673
2673
  }
2674
- .material-icons.signal-cellular-4-bar:before,
2675
- .mi.signal-cellular-4-bar:before {
2674
+ .material-icons.signal_cellular_4_bar:before,
2675
+ .mi.signal_cellular_4_bar:before {
2676
2676
  content: '\e1c8';
2677
2677
  }
2678
- .material-icons.signal-cellular-connected-no-internet-4-bar:before,
2679
- .mi.signal-cellular-connected-no-internet-4-bar:before {
2678
+ .material-icons.signal_cellular_connected_no_internet_4_bar:before,
2679
+ .mi.signal_cellular_connected_no_internet_4_bar:before {
2680
2680
  content: '\e1cd';
2681
2681
  }
2682
- .material-icons.signal-cellular-no-sim:before,
2683
- .mi.signal-cellular-no-sim:before {
2682
+ .material-icons.signal_cellular_no_sim:before,
2683
+ .mi.signal_cellular_no_sim:before {
2684
2684
  content: '\e1ce';
2685
2685
  }
2686
- .material-icons.signal-cellular-null:before,
2687
- .mi.signal-cellular-null:before {
2686
+ .material-icons.signal_cellular_null:before,
2687
+ .mi.signal_cellular_null:before {
2688
2688
  content: '\e1cf';
2689
2689
  }
2690
- .material-icons.signal-cellular-off:before,
2691
- .mi.signal-cellular-off:before {
2690
+ .material-icons.signal_cellular_off:before,
2691
+ .mi.signal_cellular_off:before {
2692
2692
  content: '\e1d0';
2693
2693
  }
2694
- .material-icons.signal-wifi-4-bar:before,
2695
- .mi.signal-wifi-4-bar:before {
2694
+ .material-icons.signal_wifi_4_bar:before,
2695
+ .mi.signal_wifi_4_bar:before {
2696
2696
  content: '\e1d8';
2697
2697
  }
2698
- .material-icons.signal-wifi-4-bar-lock:before,
2699
- .mi.signal-wifi-4-bar-lock:before {
2698
+ .material-icons.signal_wifi_4_bar_lock:before,
2699
+ .mi.signal_wifi_4_bar_lock:before {
2700
2700
  content: '\e1d9';
2701
2701
  }
2702
- .material-icons.signal-wifi-off:before,
2703
- .mi.signal-wifi-off:before {
2702
+ .material-icons.signal_wifi_off:before,
2703
+ .mi.signal_wifi_off:before {
2704
2704
  content: '\e1da';
2705
2705
  }
2706
- .material-icons.sim-card:before,
2707
- .mi.sim-card:before {
2706
+ .material-icons.sim_card:before,
2707
+ .mi.sim_card:before {
2708
2708
  content: '\e32b';
2709
2709
  }
2710
- .material-icons.sim-card-alert:before,
2711
- .mi.sim-card-alert:before {
2710
+ .material-icons.sim_card_alert:before,
2711
+ .mi.sim_card_alert:before {
2712
2712
  content: '\e624';
2713
2713
  }
2714
- .material-icons.skip-next:before,
2715
- .mi.skip-next:before {
2714
+ .material-icons.skip_next:before,
2715
+ .mi.skip_next:before {
2716
2716
  content: '\e044';
2717
2717
  }
2718
- .material-icons.skip-previous:before,
2719
- .mi.skip-previous:before {
2718
+ .material-icons.skip_previous:before,
2719
+ .mi.skip_previous:before {
2720
2720
  content: '\e045';
2721
2721
  }
2722
2722
  .material-icons.slideshow:before,
@@ -2731,8 +2731,8 @@
2731
2731
  .mi.sms:before {
2732
2732
  content: '\e625';
2733
2733
  }
2734
- .material-icons.sms-failed:before,
2735
- .mi.sms-failed:before {
2734
+ .material-icons.sms_failed:before,
2735
+ .mi.sms_failed:before {
2736
2736
  content: '\e626';
2737
2737
  }
2738
2738
  .material-icons.snooze:before,
@@ -2743,28 +2743,28 @@
2743
2743
  .mi.sort:before {
2744
2744
  content: '\e164';
2745
2745
  }
2746
- .material-icons.sort-by-alpha:before,
2747
- .mi.sort-by-alpha:before {
2746
+ .material-icons.sort_by_alpha:before,
2747
+ .mi.sort_by_alpha:before {
2748
2748
  content: '\e053';
2749
2749
  }
2750
- .material-icons.space-bar:before,
2751
- .mi.space-bar:before {
2750
+ .material-icons.space_bar:before,
2751
+ .mi.space_bar:before {
2752
2752
  content: '\e256';
2753
2753
  }
2754
2754
  .material-icons.speaker:before,
2755
2755
  .mi.speaker:before {
2756
2756
  content: '\e32d';
2757
2757
  }
2758
- .material-icons.speaker-group:before,
2759
- .mi.speaker-group:before {
2758
+ .material-icons.speaker_group:before,
2759
+ .mi.speaker_group:before {
2760
2760
  content: '\e32e';
2761
2761
  }
2762
- .material-icons.speaker-notes:before,
2763
- .mi.speaker-notes:before {
2762
+ .material-icons.speaker_notes:before,
2763
+ .mi.speaker_notes:before {
2764
2764
  content: '\e8cd';
2765
2765
  }
2766
- .material-icons.speaker-phone:before,
2767
- .mi.speaker-phone:before {
2766
+ .material-icons.speaker_phone:before,
2767
+ .mi.speaker_phone:before {
2768
2768
  content: '\e0d2';
2769
2769
  }
2770
2770
  .material-icons.spellcheck:before,
@@ -2775,32 +2775,32 @@
2775
2775
  .mi.star:before {
2776
2776
  content: '\e838';
2777
2777
  }
2778
- .material-icons.star-border:before,
2779
- .mi.star-border:before {
2778
+ .material-icons.star_border:before,
2779
+ .mi.star_border:before {
2780
2780
  content: '\e83a';
2781
2781
  }
2782
- .material-icons.star-half:before,
2783
- .mi.star-half:before {
2782
+ .material-icons.star_half:before,
2783
+ .mi.star_half:before {
2784
2784
  content: '\e839';
2785
2785
  }
2786
2786
  .material-icons.stars:before,
2787
2787
  .mi.stars:before {
2788
2788
  content: '\e8d0';
2789
2789
  }
2790
- .material-icons.stay-current-landscape:before,
2791
- .mi.stay-current-landscape:before {
2790
+ .material-icons.stay_current_landscape:before,
2791
+ .mi.stay_current_landscape:before {
2792
2792
  content: '\e0d3';
2793
2793
  }
2794
- .material-icons.stay-current-portrait:before,
2795
- .mi.stay-current-portrait:before {
2794
+ .material-icons.stay_current_portrait:before,
2795
+ .mi.stay_current_portrait:before {
2796
2796
  content: '\e0d4';
2797
2797
  }
2798
- .material-icons.stay-primary-landscape:before,
2799
- .mi.stay-primary-landscape:before {
2798
+ .material-icons.stay_primary_landscape:before,
2799
+ .mi.stay_primary_landscape:before {
2800
2800
  content: '\e0d5';
2801
2801
  }
2802
- .material-icons.stay-primary-portrait:before,
2803
- .mi.stay-primary-portrait:before {
2802
+ .material-icons.stay_primary_portrait:before,
2803
+ .mi.stay_primary_portrait:before {
2804
2804
  content: '\e0d6';
2805
2805
  }
2806
2806
  .material-icons.stop:before,
@@ -2815,16 +2815,16 @@
2815
2815
  .mi.store:before {
2816
2816
  content: '\e8d1';
2817
2817
  }
2818
- .material-icons.store-mall-directory:before,
2819
- .mi.store-mall-directory:before {
2818
+ .material-icons.store_mall_directory:before,
2819
+ .mi.store_mall_directory:before {
2820
2820
  content: '\e563';
2821
2821
  }
2822
2822
  .material-icons.straighten:before,
2823
2823
  .mi.straighten:before {
2824
2824
  content: '\e41c';
2825
2825
  }
2826
- .material-icons.strikethrough-s:before,
2827
- .mi.strikethrough-s:before {
2826
+ .material-icons.strikethrough_s:before,
2827
+ .mi.strikethrough_s:before {
2828
2828
  content: '\e257';
2829
2829
  }
2830
2830
  .material-icons.style:before,
@@ -2839,92 +2839,92 @@
2839
2839
  .mi.subtitles:before {
2840
2840
  content: '\e048';
2841
2841
  }
2842
- .material-icons.supervisor-account:before,
2843
- .mi.supervisor-account:before {
2842
+ .material-icons.supervisor_account:before,
2843
+ .mi.supervisor_account:before {
2844
2844
  content: '\e8d3';
2845
2845
  }
2846
- .material-icons.surround-sound:before,
2847
- .mi.surround-sound:before {
2846
+ .material-icons.surround_sound:before,
2847
+ .mi.surround_sound:before {
2848
2848
  content: '\e049';
2849
2849
  }
2850
- .material-icons.swap-calls:before,
2851
- .mi.swap-calls:before {
2850
+ .material-icons.swap_calls:before,
2851
+ .mi.swap_calls:before {
2852
2852
  content: '\e0d7';
2853
2853
  }
2854
- .material-icons.swap-horiz:before,
2855
- .mi.swap-horiz:before {
2854
+ .material-icons.swap_horiz:before,
2855
+ .mi.swap_horiz:before {
2856
2856
  content: '\e8d4';
2857
2857
  }
2858
- .material-icons.swap-vert:before,
2859
- .mi.swap-vert:before {
2858
+ .material-icons.swap_vert:before,
2859
+ .mi.swap_vert:before {
2860
2860
  content: '\e8d5';
2861
2861
  }
2862
- .material-icons.swap-vertical-circle:before,
2863
- .mi.swap-vertical-circle:before {
2862
+ .material-icons.swap_vertical_circle:before,
2863
+ .mi.swap_vertical_circle:before {
2864
2864
  content: '\e8d6';
2865
2865
  }
2866
- .material-icons.switch-camera:before,
2867
- .mi.switch-camera:before {
2866
+ .material-icons.switch_camera:before,
2867
+ .mi.switch_camera:before {
2868
2868
  content: '\e41e';
2869
2869
  }
2870
- .material-icons.switch-video:before,
2871
- .mi.switch-video:before {
2870
+ .material-icons.switch_video:before,
2871
+ .mi.switch_video:before {
2872
2872
  content: '\e41f';
2873
2873
  }
2874
2874
  .material-icons.sync:before,
2875
2875
  .mi.sync:before {
2876
2876
  content: '\e627';
2877
2877
  }
2878
- .material-icons.sync-disabled:before,
2879
- .mi.sync-disabled:before {
2878
+ .material-icons.sync_disabled:before,
2879
+ .mi.sync_disabled:before {
2880
2880
  content: '\e628';
2881
2881
  }
2882
- .material-icons.sync-problem:before,
2883
- .mi.sync-problem:before {
2882
+ .material-icons.sync_problem:before,
2883
+ .mi.sync_problem:before {
2884
2884
  content: '\e629';
2885
2885
  }
2886
- .material-icons.system-update:before,
2887
- .mi.system-update:before {
2886
+ .material-icons.system_update:before,
2887
+ .mi.system_update:before {
2888
2888
  content: '\e62a';
2889
2889
  }
2890
- .material-icons.system-update-alt:before,
2891
- .mi.system-update-alt:before {
2890
+ .material-icons.system_update_alt:before,
2891
+ .mi.system_update_alt:before {
2892
2892
  content: '\e8d7';
2893
2893
  }
2894
2894
  .material-icons.tab:before,
2895
2895
  .mi.tab:before {
2896
2896
  content: '\e8d8';
2897
2897
  }
2898
- .material-icons.tab-unselected:before,
2899
- .mi.tab-unselected:before {
2898
+ .material-icons.tab_unselected:before,
2899
+ .mi.tab_unselected:before {
2900
2900
  content: '\e8d9';
2901
2901
  }
2902
2902
  .material-icons.tablet:before,
2903
2903
  .mi.tablet:before {
2904
2904
  content: '\e32f';
2905
2905
  }
2906
- .material-icons.tablet-android:before,
2907
- .mi.tablet-android:before {
2906
+ .material-icons.tablet_android:before,
2907
+ .mi.tablet_android:before {
2908
2908
  content: '\e330';
2909
2909
  }
2910
- .material-icons.tablet-mac:before,
2911
- .mi.tablet-mac:before {
2910
+ .material-icons.tablet_mac:before,
2911
+ .mi.tablet_mac:before {
2912
2912
  content: '\e331';
2913
2913
  }
2914
- .material-icons.tag-faces:before,
2915
- .mi.tag-faces:before {
2914
+ .material-icons.tag_faces:before,
2915
+ .mi.tag_faces:before {
2916
2916
  content: '\e420';
2917
2917
  }
2918
- .material-icons.tap-and-play:before,
2919
- .mi.tap-and-play:before {
2918
+ .material-icons.tap_and_play:before,
2919
+ .mi.tap_and_play:before {
2920
2920
  content: '\e62b';
2921
2921
  }
2922
2922
  .material-icons.terrain:before,
2923
2923
  .mi.terrain:before {
2924
2924
  content: '\e564';
2925
2925
  }
2926
- .material-icons.text-format:before,
2927
- .mi.text-format:before {
2926
+ .material-icons.text_format:before,
2927
+ .mi.text_format:before {
2928
2928
  content: '\e165';
2929
2929
  }
2930
2930
  .material-icons.textsms:before,
@@ -2939,20 +2939,20 @@
2939
2939
  .mi.theaters:before {
2940
2940
  content: '\e8da';
2941
2941
  }
2942
- .material-icons.thumb-down:before,
2943
- .mi.thumb-down:before {
2942
+ .material-icons.thumb_down:before,
2943
+ .mi.thumb_down:before {
2944
2944
  content: '\e8db';
2945
2945
  }
2946
- .material-icons.thumb-up:before,
2947
- .mi.thumb-up:before {
2946
+ .material-icons.thumb_up:before,
2947
+ .mi.thumb_up:before {
2948
2948
  content: '\e8dc';
2949
2949
  }
2950
- .material-icons.thumbs-up-down:before,
2951
- .mi.thumbs-up-down:before {
2950
+ .material-icons.thumbs_up_down:before,
2951
+ .mi.thumbs_up_down:before {
2952
2952
  content: '\e8dd';
2953
2953
  }
2954
- .material-icons.time-to-leave:before,
2955
- .mi.time-to-leave:before {
2954
+ .material-icons.time_to_leave:before,
2955
+ .mi.time_to_leave:before {
2956
2956
  content: '\e62c';
2957
2957
  }
2958
2958
  .material-icons.timelapse:before,
@@ -2963,16 +2963,16 @@
2963
2963
  .mi.timer:before {
2964
2964
  content: '\e425';
2965
2965
  }
2966
- .material-icons.timer-10:before,
2967
- .mi.timer-10:before {
2966
+ .material-icons.timer_10:before,
2967
+ .mi.timer_10:before {
2968
2968
  content: '\e423';
2969
2969
  }
2970
- .material-icons.timer-3:before,
2971
- .mi.timer-3:before {
2970
+ .material-icons.timer_3:before,
2971
+ .mi.timer_3:before {
2972
2972
  content: '\e424';
2973
2973
  }
2974
- .material-icons.timer-off:before,
2975
- .mi.timer-off:before {
2974
+ .material-icons.timer_off:before,
2975
+ .mi.timer_off:before {
2976
2976
  content: '\e426';
2977
2977
  }
2978
2978
  .material-icons.toc:before,
@@ -2995,8 +2995,8 @@
2995
2995
  .mi.toys:before {
2996
2996
  content: '\e332';
2997
2997
  }
2998
- .material-icons.track-changes:before,
2999
- .mi.track-changes:before {
2998
+ .material-icons.track_changes:before,
2999
+ .mi.track_changes:before {
3000
3000
  content: '\e8e1';
3001
3001
  }
3002
3002
  .material-icons.traffic:before,
@@ -3011,28 +3011,28 @@
3011
3011
  .mi.translate:before {
3012
3012
  content: '\e8e2';
3013
3013
  }
3014
- .material-icons.trending-down:before,
3015
- .mi.trending-down:before {
3014
+ .material-icons.trending_down:before,
3015
+ .mi.trending_down:before {
3016
3016
  content: '\e8e3';
3017
3017
  }
3018
- .material-icons.trending-flat:before,
3019
- .mi.trending-flat:before {
3018
+ .material-icons.trending_flat:before,
3019
+ .mi.trending_flat:before {
3020
3020
  content: '\e8e4';
3021
3021
  }
3022
- .material-icons.trending-up:before,
3023
- .mi.trending-up:before {
3022
+ .material-icons.trending_up:before,
3023
+ .mi.trending_up:before {
3024
3024
  content: '\e8e5';
3025
3025
  }
3026
3026
  .material-icons.tune:before,
3027
3027
  .mi.tune:before {
3028
3028
  content: '\e429';
3029
3029
  }
3030
- .material-icons.turned-in:before,
3031
- .mi.turned-in:before {
3030
+ .material-icons.turned_in:before,
3031
+ .mi.turned_in:before {
3032
3032
  content: '\e8e6';
3033
3033
  }
3034
- .material-icons.turned-in-not:before,
3035
- .mi.turned-in-not:before {
3034
+ .material-icons.turned_in_not:before,
3035
+ .mi.turned_in_not:before {
3036
3036
  content: '\e8e7';
3037
3037
  }
3038
3038
  .material-icons.tv:before,
@@ -3043,100 +3043,100 @@
3043
3043
  .mi.undo:before {
3044
3044
  content: '\e166';
3045
3045
  }
3046
- .material-icons.unfold-less:before,
3047
- .mi.unfold-less:before {
3046
+ .material-icons.unfold_less:before,
3047
+ .mi.unfold_less:before {
3048
3048
  content: '\e5d6';
3049
3049
  }
3050
- .material-icons.unfold-more:before,
3051
- .mi.unfold-more:before {
3050
+ .material-icons.unfold_more:before,
3051
+ .mi.unfold_more:before {
3052
3052
  content: '\e5d7';
3053
3053
  }
3054
3054
  .material-icons.usb:before,
3055
3055
  .mi.usb:before {
3056
3056
  content: '\e1e0';
3057
3057
  }
3058
- .material-icons.verified-user:before,
3059
- .mi.verified-user:before {
3058
+ .material-icons.verified_user:before,
3059
+ .mi.verified_user:before {
3060
3060
  content: '\e8e8';
3061
3061
  }
3062
- .material-icons.vertical-align-bottom:before,
3063
- .mi.vertical-align-bottom:before {
3062
+ .material-icons.vertical_align_bottom:before,
3063
+ .mi.vertical_align_bottom:before {
3064
3064
  content: '\e258';
3065
3065
  }
3066
- .material-icons.vertical-align-center:before,
3067
- .mi.vertical-align-center:before {
3066
+ .material-icons.vertical_align_center:before,
3067
+ .mi.vertical_align_center:before {
3068
3068
  content: '\e259';
3069
3069
  }
3070
- .material-icons.vertical-align-top:before,
3071
- .mi.vertical-align-top:before {
3070
+ .material-icons.vertical_align_top:before,
3071
+ .mi.vertical_align_top:before {
3072
3072
  content: '\e25a';
3073
3073
  }
3074
3074
  .material-icons.vibration:before,
3075
3075
  .mi.vibration:before {
3076
3076
  content: '\e62d';
3077
3077
  }
3078
- .material-icons.video-library:before,
3079
- .mi.video-library:before {
3078
+ .material-icons.video_library:before,
3079
+ .mi.video_library:before {
3080
3080
  content: '\e04a';
3081
3081
  }
3082
3082
  .material-icons.videocam:before,
3083
3083
  .mi.videocam:before {
3084
3084
  content: '\e04b';
3085
3085
  }
3086
- .material-icons.videocam-off:before,
3087
- .mi.videocam-off:before {
3086
+ .material-icons.videocam_off:before,
3087
+ .mi.videocam_off:before {
3088
3088
  content: '\e04c';
3089
3089
  }
3090
- .material-icons.view-agenda:before,
3091
- .mi.view-agenda:before {
3090
+ .material-icons.view_agenda:before,
3091
+ .mi.view_agenda:before {
3092
3092
  content: '\e8e9';
3093
3093
  }
3094
- .material-icons.view-array:before,
3095
- .mi.view-array:before {
3094
+ .material-icons.view_array:before,
3095
+ .mi.view_array:before {
3096
3096
  content: '\e8ea';
3097
3097
  }
3098
- .material-icons.view-carousel:before,
3099
- .mi.view-carousel:before {
3098
+ .material-icons.view_carousel:before,
3099
+ .mi.view_carousel:before {
3100
3100
  content: '\e8eb';
3101
3101
  }
3102
- .material-icons.view-column:before,
3103
- .mi.view-column:before {
3102
+ .material-icons.view_column:before,
3103
+ .mi.view_column:before {
3104
3104
  content: '\e8ec';
3105
3105
  }
3106
- .material-icons.view-comfy:before,
3107
- .mi.view-comfy:before {
3106
+ .material-icons.view_comfy:before,
3107
+ .mi.view_comfy:before {
3108
3108
  content: '\e42a';
3109
3109
  }
3110
- .material-icons.view-compact:before,
3111
- .mi.view-compact:before {
3110
+ .material-icons.view_compact:before,
3111
+ .mi.view_compact:before {
3112
3112
  content: '\e42b';
3113
3113
  }
3114
- .material-icons.view-day:before,
3115
- .mi.view-day:before {
3114
+ .material-icons.view_day:before,
3115
+ .mi.view_day:before {
3116
3116
  content: '\e8ed';
3117
3117
  }
3118
- .material-icons.view-headline:before,
3119
- .mi.view-headline:before {
3118
+ .material-icons.view_headline:before,
3119
+ .mi.view_headline:before {
3120
3120
  content: '\e8ee';
3121
3121
  }
3122
- .material-icons.view-list:before,
3123
- .mi.view-list:before {
3122
+ .material-icons.view_list:before,
3123
+ .mi.view_list:before {
3124
3124
  content: '\e8ef';
3125
3125
  }
3126
- .material-icons.view-module:before,
3127
- .mi.view-module:before {
3126
+ .material-icons.view_module:before,
3127
+ .mi.view_module:before {
3128
3128
  content: '\e8f0';
3129
3129
  }
3130
- .material-icons.view-quilt:before,
3131
- .mi.view-quilt:before {
3130
+ .material-icons.view_quilt:before,
3131
+ .mi.view_quilt:before {
3132
3132
  content: '\e8f1';
3133
3133
  }
3134
- .material-icons.view-stream:before,
3135
- .mi.view-stream:before {
3134
+ .material-icons.view_stream:before,
3135
+ .mi.view_stream:before {
3136
3136
  content: '\e8f2';
3137
3137
  }
3138
- .material-icons.view-week:before,
3139
- .mi.view-week:before {
3138
+ .material-icons.view_week:before,
3139
+ .mi.view_week:before {
3140
3140
  content: '\e8f3';
3141
3141
  }
3142
3142
  .material-icons.vignette:before,
@@ -3147,40 +3147,40 @@
3147
3147
  .mi.visibility:before {
3148
3148
  content: '\e8f4';
3149
3149
  }
3150
- .material-icons.visibility-off:before,
3151
- .mi.visibility-off:before {
3150
+ .material-icons.visibility_off:before,
3151
+ .mi.visibility_off:before {
3152
3152
  content: '\e8f5';
3153
3153
  }
3154
- .material-icons.voice-chat:before,
3155
- .mi.voice-chat:before {
3154
+ .material-icons.voice_chat:before,
3155
+ .mi.voice_chat:before {
3156
3156
  content: '\e62e';
3157
3157
  }
3158
3158
  .material-icons.voicemail:before,
3159
3159
  .mi.voicemail:before {
3160
3160
  content: '\e0d9';
3161
3161
  }
3162
- .material-icons.volume-down:before,
3163
- .mi.volume-down:before {
3162
+ .material-icons.volume_down:before,
3163
+ .mi.volume_down:before {
3164
3164
  content: '\e04d';
3165
3165
  }
3166
- .material-icons.volume-mute:before,
3167
- .mi.volume-mute:before {
3166
+ .material-icons.volume_mute:before,
3167
+ .mi.volume_mute:before {
3168
3168
  content: '\e04e';
3169
3169
  }
3170
- .material-icons.volume-off:before,
3171
- .mi.volume-off:before {
3170
+ .material-icons.volume_off:before,
3171
+ .mi.volume_off:before {
3172
3172
  content: '\e04f';
3173
3173
  }
3174
- .material-icons.volume-up:before,
3175
- .mi.volume-up:before {
3174
+ .material-icons.volume_up:before,
3175
+ .mi.volume_up:before {
3176
3176
  content: '\e050';
3177
3177
  }
3178
- .material-icons.vpn-key:before,
3179
- .mi.vpn-key:before {
3178
+ .material-icons.vpn_key:before,
3179
+ .mi.vpn_key:before {
3180
3180
  content: '\e0da';
3181
3181
  }
3182
- .material-icons.vpn-lock:before,
3183
- .mi.vpn-lock:before {
3182
+ .material-icons.vpn_lock:before,
3183
+ .mi.vpn_lock:before {
3184
3184
  content: '\e62f';
3185
3185
  }
3186
3186
  .material-icons.wallpaper:before,
@@ -3195,24 +3195,24 @@
3195
3195
  .mi.watch:before {
3196
3196
  content: '\e334';
3197
3197
  }
3198
- .material-icons.wb-auto:before,
3199
- .mi.wb-auto:before {
3198
+ .material-icons.wb_auto:before,
3199
+ .mi.wb_auto:before {
3200
3200
  content: '\e42c';
3201
3201
  }
3202
- .material-icons.wb-cloudy:before,
3203
- .mi.wb-cloudy:before {
3202
+ .material-icons.wb_cloudy:before,
3203
+ .mi.wb_cloudy:before {
3204
3204
  content: '\e42d';
3205
3205
  }
3206
- .material-icons.wb-incandescent:before,
3207
- .mi.wb-incandescent:before {
3206
+ .material-icons.wb_incandescent:before,
3207
+ .mi.wb_incandescent:before {
3208
3208
  content: '\e42e';
3209
3209
  }
3210
- .material-icons.wb-iridescent:before,
3211
- .mi.wb-iridescent:before {
3210
+ .material-icons.wb_iridescent:before,
3211
+ .mi.wb_iridescent:before {
3212
3212
  content: '\e436';
3213
3213
  }
3214
- .material-icons.wb-sunny:before,
3215
- .mi.wb-sunny:before {
3214
+ .material-icons.wb_sunny:before,
3215
+ .mi.wb_sunny:before {
3216
3216
  content: '\e430';
3217
3217
  }
3218
3218
  .material-icons.wc:before,
@@ -3235,31 +3235,31 @@
3235
3235
  .mi.wifi:before {
3236
3236
  content: '\e63e';
3237
3237
  }
3238
- .material-icons.wifi-lock:before,
3239
- .mi.wifi-lock:before {
3238
+ .material-icons.wifi_lock:before,
3239
+ .mi.wifi_lock:before {
3240
3240
  content: '\e1e1';
3241
3241
  }
3242
- .material-icons.wifi-tethering:before,
3243
- .mi.wifi-tethering:before {
3242
+ .material-icons.wifi_tethering:before,
3243
+ .mi.wifi_tethering:before {
3244
3244
  content: '\e1e2';
3245
3245
  }
3246
3246
  .material-icons.work:before,
3247
3247
  .mi.work:before {
3248
3248
  content: '\e8f9';
3249
3249
  }
3250
- .material-icons.wrap-text:before,
3251
- .mi.wrap-text:before {
3250
+ .material-icons.wrap_text:before,
3251
+ .mi.wrap_text:before {
3252
3252
  content: '\e25b';
3253
3253
  }
3254
- .material-icons.youtube-searched-for:before,
3255
- .mi.youtube-searched-for:before {
3254
+ .material-icons.youtube_searched_for:before,
3255
+ .mi.youtube_searched_for:before {
3256
3256
  content: '\e8fa';
3257
3257
  }
3258
- .material-icons.zoom-in:before,
3259
- .mi.zoom-in:before {
3258
+ .material-icons.zoom_in:before,
3259
+ .mi.zoom_in:before {
3260
3260
  content: '\e8ff';
3261
3261
  }
3262
- .material-icons.zoom-out:before,
3263
- .mi.zoom-out:before {
3262
+ .material-icons.zoom_out:before,
3263
+ .mi.zoom_out:before {
3264
3264
  content: '\e900';
3265
3265
  }