materialize-sass 0.95.3.3 → 0.95.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1 -1
  3. data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  4. data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  5. data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
  6. data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  7. data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  8. data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  9. data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  10. data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  11. data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  12. data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  13. data/app/assets/javascripts/materialize-sprockets.js +2 -1
  14. data/app/assets/javascripts/materialize/buttons.js +4 -4
  15. data/app/assets/javascripts/materialize/collapsible.js +11 -14
  16. data/app/assets/javascripts/materialize/dropdown.js +5 -1
  17. data/app/assets/javascripts/materialize/forms.js +157 -151
  18. data/app/assets/javascripts/materialize/global.js +18 -0
  19. data/app/assets/javascripts/materialize/init.js +5 -1
  20. data/app/assets/javascripts/materialize/leanModal.js +0 -1
  21. data/app/assets/javascripts/materialize/pushpin.js +1 -14
  22. data/app/assets/javascripts/materialize/scrollFire.js +60 -21
  23. data/app/assets/javascripts/materialize/scrollspy.js +4 -7
  24. data/app/assets/javascripts/materialize/sideNav.js +58 -21
  25. data/app/assets/javascripts/materialize/slider.js +1 -1
  26. data/app/assets/javascripts/materialize/toasts.js +90 -73
  27. data/app/assets/javascripts/materialize/transitions.js +57 -61
  28. data/app/assets/javascripts/materialize/waves.js +6 -3
  29. data/app/assets/stylesheets/materialize/components/_buttons.scss +3 -3
  30. data/app/assets/stylesheets/materialize/components/_cards.scss +5 -7
  31. data/app/assets/stylesheets/materialize/components/_collapsible.scss +3 -11
  32. data/app/assets/stylesheets/materialize/components/_dropdown.scss +1 -1
  33. data/app/assets/stylesheets/materialize/components/_form.scss +178 -162
  34. data/app/assets/stylesheets/materialize/components/_global.scss +11 -10
  35. data/app/assets/stylesheets/materialize/components/_icons-material-design.scss +766 -2230
  36. data/app/assets/stylesheets/materialize/components/_materialbox.scss +2 -3
  37. data/app/assets/stylesheets/materialize/components/_modal.scss +3 -3
  38. data/app/assets/stylesheets/materialize/components/_navbar.scss +4 -7
  39. data/app/assets/stylesheets/materialize/components/_prefixer.scss +0 -40
  40. data/app/assets/stylesheets/materialize/components/_preloader.scss +2 -4
  41. data/app/assets/stylesheets/materialize/components/_sideNav.scss +9 -9
  42. data/app/assets/stylesheets/materialize/components/_slider.scss +6 -6
  43. data/app/assets/stylesheets/materialize/components/_table_of_contents.scss +1 -1
  44. data/app/assets/stylesheets/materialize/components/_tabs.scss +2 -2
  45. data/app/assets/stylesheets/materialize/components/_toast.scss +4 -5
  46. data/app/assets/stylesheets/materialize/components/_tooltip.scss +2 -2
  47. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +20 -47
  48. data/lib/materialize-sass.rb +75 -6
  49. data/lib/materialize-sass/engine.rb +13 -0
  50. data/lib/materialize-sass/version.rb +1 -1
  51. metadata +9 -15
@@ -140,7 +140,7 @@ video.responsive-video {
140
140
  width: 30px;
141
141
  height: 30px;
142
142
  margin: 0 10px;
143
- @include border-radius(2px);
143
+ border-radius: 2px;
144
144
  text-align: center;
145
145
 
146
146
  a { color: #444; }
@@ -199,11 +199,11 @@ video.responsive-video {
199
199
  **********************/
200
200
 
201
201
  ul.staggered-list li {
202
- @include opacity(0);
202
+ opacity: 0;
203
203
  }
204
204
 
205
205
  .fade-in {
206
- @include opacity(0);
206
+ opacity: 0;
207
207
  transform-origin: 0 50%;
208
208
  }
209
209
 
@@ -333,7 +333,7 @@ td, th{
333
333
  display: table-cell;
334
334
  text-align: left;
335
335
  vertical-align: middle;
336
- @include border-radius(2px);
336
+ border-radius: 2px;
337
337
  }
338
338
 
339
339
  // Responsive Table
@@ -405,17 +405,16 @@ td, th{
405
405
 
406
406
  // Collections
407
407
  .collection {
408
- background-color: #999;
409
408
  margin: $element-top-margin 0 $element-bottom-margin 0;
410
409
  border: 1px solid $collection-border-color;
411
- @include border-radius(2px);
410
+ border-radius: 2px;
412
411
  overflow: hidden;
413
412
 
414
413
  .collection-item {
415
414
  background-color: $collection-bg-color;
416
415
  line-height: 1.5rem;
417
416
  padding: 10px 20px;
418
- margin: 0px;
417
+ margin: 0;
419
418
  border-bottom: 1px solid $collection-border-color;
420
419
 
421
420
  // Avatar Collection
@@ -514,7 +513,7 @@ span.badge {
514
513
  font-size: 0.8rem;
515
514
  color: #fff;
516
515
  background-color: $badge-bg-color;
517
- @include border-radius(2px);
516
+ border-radius: 2px;
518
517
  }
519
518
  &.new:after {
520
519
  content: " new";
@@ -545,7 +544,7 @@ span.badge {
545
544
  display: block;
546
545
  width: 100%;
547
546
  background-color: lighten($progress-bar-color, 40%);
548
- @include border-radius(2px);
547
+ border-radius: 2px;
549
548
  margin: $element-top-margin 0 $element-bottom-margin 0;
550
549
  overflow: hidden;
551
550
  .determinate {
@@ -649,7 +648,7 @@ span.badge {
649
648
 
650
649
  // Circle
651
650
  .circle {
652
- @include border-radius(50%);
651
+ border-radius: 50%;
653
652
  }
654
653
 
655
654
  .center-block {
@@ -663,3 +662,5 @@ span.badge {
663
662
  overflow: hidden;
664
663
  text-overflow: ellipsis;
665
664
  }
665
+
666
+ .no-padding { padding: 0 !important; }
@@ -1,2247 +1,783 @@
1
+ $font-mdi : 'Material-Design-Icons';
2
+ $mdi-prefix : 'mdi-';
3
+
1
4
  @font-face {
2
- font-family: "Material-Design-Icons";
3
- src:font-url("#{$icons-font-path}Material-Design-Icons.eot?#iefix") format("embedded-opentype"),
4
- font-url("#{$icons-font-path}Material-Design-Icons.woff2") format("woff2"),
5
- font-url("#{$icons-font-path}Material-Design-Icons.woff") format("woff"),
6
- font-url("#{$icons-font-path}Material-Design-Icons.ttf") format("truetype"),
7
- font-url("#{$icons-font-path}Material-Design-Icons.svg#Material-Design-Icons") format("svg");
5
+ font-family: "#{$font-mdi}";
6
+ src:font-url("#{$icons-font-path}#{$font-mdi}.eot?#iefix") format("embedded-opentype"),
7
+ font-url("#{$icons-font-path}#{$font-mdi}.woff2") format("woff2"),
8
+ font-url("#{$icons-font-path}#{$font-mdi}.woff") format("woff"),
9
+ font-url("#{$icons-font-path}#{$font-mdi}.ttf") format("truetype"),
10
+ font-url("#{$icons-font-path}#{$font-mdi}.svg##{$font-mdi}") format("svg");
8
11
  font-weight: normal;
9
12
  font-style: normal;
10
13
  }
11
14
 
12
- [class^="mdi-"], [class*=" mdi-"] {
13
- font-family: "Material-Design-Icons";
15
+ [class^="#{$mdi-prefix}"], [class*=" #{$mdi-prefix}"] {
16
+ font-family: "#{$font-mdi}";
14
17
  speak: none;
15
18
  font-style: normal;
16
19
  font-weight: normal;
17
20
  font-variant: normal;
18
21
  text-transform: none;
22
+ text-rendering: auto;
19
23
 
20
24
  /* Better Font Rendering =========== */
21
25
  -webkit-font-smoothing: antialiased;
22
26
  -moz-osx-font-smoothing: grayscale;
23
27
  }
24
28
 
25
- .mdi-action-3d-rotation:before {
26
- content: "\e600";
27
- }
28
- .mdi-action-accessibility:before {
29
- content: "\e601";
30
- }
31
- .mdi-action-account-balance:before {
32
- content: "\e602";
33
- }
34
- .mdi-action-account-balance-wallet:before {
35
- content: "\e603";
36
- }
37
- .mdi-action-account-box:before {
38
- content: "\e604";
39
- }
40
- .mdi-action-account-child:before {
41
- content: "\e605";
42
- }
43
- .mdi-action-account-circle:before {
44
- content: "\e606";
45
- }
46
- .mdi-action-add-shopping-cart:before {
47
- content: "\e607";
48
- }
49
- .mdi-action-alarm:before {
50
- content: "\e608";
51
- }
52
- .mdi-action-alarm-add:before {
53
- content: "\e609";
54
- }
55
- .mdi-action-alarm-off:before {
56
- content: "\e60a";
57
- }
58
- .mdi-action-alarm-on:before {
59
- content: "\e60b";
60
- }
61
- .mdi-action-android:before {
62
- content: "\e60c";
63
- }
64
- .mdi-action-announcement:before {
65
- content: "\e60d";
66
- }
67
- .mdi-action-aspect-ratio:before {
68
- content: "\e60e";
69
- }
70
- .mdi-action-assessment:before {
71
- content: "\e60f";
72
- }
73
- .mdi-action-assignment:before {
74
- content: "\e610";
75
- }
76
- .mdi-action-assignment-ind:before {
77
- content: "\e611";
78
- }
79
- .mdi-action-assignment-late:before {
80
- content: "\e612";
81
- }
82
- .mdi-action-assignment-return:before {
83
- content: "\e613";
84
- }
85
- .mdi-action-assignment-returned:before {
86
- content: "\e614";
87
- }
88
- .mdi-action-assignment-turned-in:before {
89
- content: "\e615";
90
- }
91
- .mdi-action-autorenew:before {
92
- content: "\e616";
93
- }
94
- .mdi-action-backup:before {
95
- content: "\e617";
96
- }
97
- .mdi-action-book:before {
98
- content: "\e618";
99
- }
100
- .mdi-action-bookmark:before {
101
- content: "\e619";
102
- }
103
- .mdi-action-bookmark-outline:before {
104
- content: "\e61a";
105
- }
106
- .mdi-action-bug-report:before {
107
- content: "\e61b";
108
- }
109
- .mdi-action-cached:before {
110
- content: "\e61c";
111
- }
112
- .mdi-action-class:before {
113
- content: "\e61d";
114
- }
115
- .mdi-action-credit-card:before {
116
- content: "\e61e";
117
- }
118
- .mdi-action-dashboard:before {
119
- content: "\e61f";
120
- }
121
- .mdi-action-delete:before {
122
- content: "\e620";
123
- }
124
- .mdi-action-description:before {
125
- content: "\e621";
126
- }
127
- .mdi-action-dns:before {
128
- content: "\e622";
129
- }
130
- .mdi-action-done:before {
131
- content: "\e623";
132
- }
133
- .mdi-action-done-all:before {
134
- content: "\e624";
135
- }
136
- .mdi-action-event:before {
137
- content: "\e625";
138
- }
139
- .mdi-action-exit-to-app:before {
140
- content: "\e626";
141
- }
142
- .mdi-action-explore:before {
143
- content: "\e627";
144
- }
145
- .mdi-action-extension:before {
146
- content: "\e628";
147
- }
148
- .mdi-action-face-unlock:before {
149
- content: "\e629";
150
- }
151
- .mdi-action-favorite:before {
152
- content: "\e62a";
153
- }
154
- .mdi-action-favorite-outline:before {
155
- content: "\e62b";
156
- }
157
- .mdi-action-find-in-page:before {
158
- content: "\e62c";
159
- }
160
- .mdi-action-find-replace:before {
161
- content: "\e62d";
162
- }
163
- .mdi-action-flip-to-back:before {
164
- content: "\e62e";
165
- }
166
- .mdi-action-flip-to-front:before {
167
- content: "\e62f";
168
- }
169
- .mdi-action-get-app:before {
170
- content: "\e630";
171
- }
172
- .mdi-action-grade:before {
173
- content: "\e631";
174
- }
175
- .mdi-action-group-work:before {
176
- content: "\e632";
177
- }
178
- .mdi-action-help:before {
179
- content: "\e633";
180
- }
181
- .mdi-action-highlight-remove:before {
182
- content: "\e634";
183
- }
184
- .mdi-action-history:before {
185
- content: "\e635";
186
- }
187
- .mdi-action-home:before {
188
- content: "\e636";
189
- }
190
- .mdi-action-https:before {
191
- content: "\e637";
192
- }
193
- .mdi-action-info:before {
194
- content: "\e638";
195
- }
196
- .mdi-action-info-outline:before {
197
- content: "\e639";
198
- }
199
- .mdi-action-input:before {
200
- content: "\e63a";
201
- }
202
- .mdi-action-invert-colors:before {
203
- content: "\e63b";
204
- }
205
- .mdi-action-label:before {
206
- content: "\e63c";
207
- }
208
- .mdi-action-label-outline:before {
209
- content: "\e63d";
210
- }
211
- .mdi-action-language:before {
212
- content: "\e63e";
213
- }
214
- .mdi-action-launch:before {
215
- content: "\e63f";
216
- }
217
- .mdi-action-list:before {
218
- content: "\e640";
219
- }
220
- .mdi-action-lock:before {
221
- content: "\e641";
222
- }
223
- .mdi-action-lock-open:before {
224
- content: "\e642";
225
- }
226
- .mdi-action-lock-outline:before {
227
- content: "\e643";
228
- }
229
- .mdi-action-loyalty:before {
230
- content: "\e644";
231
- }
232
- .mdi-action-markunread-mailbox:before {
233
- content: "\e645";
234
- }
235
- .mdi-action-note-add:before {
236
- content: "\e646";
237
- }
238
- .mdi-action-open-in-browser:before {
239
- content: "\e647";
240
- }
241
- .mdi-action-open-in-new:before {
242
- content: "\e648";
243
- }
244
- .mdi-action-open-with:before {
245
- content: "\e649";
246
- }
247
- .mdi-action-pageview:before {
248
- content: "\e64a";
249
- }
250
- .mdi-action-payment:before {
251
- content: "\e64b";
252
- }
253
- .mdi-action-perm-camera-mic:before {
254
- content: "\e64c";
255
- }
256
- .mdi-action-perm-contact-cal:before {
257
- content: "\e64d";
258
- }
259
- .mdi-action-perm-data-setting:before {
260
- content: "\e64e";
261
- }
262
- .mdi-action-perm-device-info:before {
263
- content: "\e64f";
264
- }
265
- .mdi-action-perm-identity:before {
266
- content: "\e650";
267
- }
268
- .mdi-action-perm-media:before {
269
- content: "\e651";
270
- }
271
- .mdi-action-perm-phone-msg:before {
272
- content: "\e652";
273
- }
274
- .mdi-action-perm-scan-wifi:before {
275
- content: "\e653";
276
- }
277
- .mdi-action-picture-in-picture:before {
278
- content: "\e654";
279
- }
280
- .mdi-action-polymer:before {
281
- content: "\e655";
282
- }
283
- .mdi-action-print:before {
284
- content: "\e656";
285
- }
286
- .mdi-action-query-builder:before {
287
- content: "\e657";
288
- }
289
- .mdi-action-question-answer:before {
290
- content: "\e658";
291
- }
292
- .mdi-action-receipt:before {
293
- content: "\e659";
294
- }
295
- .mdi-action-redeem:before {
296
- content: "\e65a";
297
- }
298
- .mdi-action-report-problem:before {
299
- content: "\e65b";
300
- }
301
- .mdi-action-restore:before {
302
- content: "\e65c";
303
- }
304
- .mdi-action-room:before {
305
- content: "\e65d";
306
- }
307
- .mdi-action-schedule:before {
308
- content: "\e65e";
309
- }
310
- .mdi-action-search:before {
311
- content: "\e65f";
312
- }
313
- .mdi-action-settings:before {
314
- content: "\e660";
315
- }
316
- .mdi-action-settings-applications:before {
317
- content: "\e661";
318
- }
319
- .mdi-action-settings-backup-restore:before {
320
- content: "\e662";
321
- }
322
- .mdi-action-settings-bluetooth:before {
323
- content: "\e663";
324
- }
325
- .mdi-action-settings-cell:before {
326
- content: "\e664";
327
- }
328
- .mdi-action-settings-display:before {
329
- content: "\e665";
330
- }
331
- .mdi-action-settings-ethernet:before {
332
- content: "\e666";
333
- }
334
- .mdi-action-settings-input-antenna:before {
335
- content: "\e667";
336
- }
337
- .mdi-action-settings-input-component:before {
338
- content: "\e668";
339
- }
340
- .mdi-action-settings-input-composite:before {
341
- content: "\e669";
342
- }
343
- .mdi-action-settings-input-hdmi:before {
344
- content: "\e66a";
345
- }
346
- .mdi-action-settings-input-svideo:before {
347
- content: "\e66b";
348
- }
349
- .mdi-action-settings-overscan:before {
350
- content: "\e66c";
351
- }
352
- .mdi-action-settings-phone:before {
353
- content: "\e66d";
354
- }
355
- .mdi-action-settings-power:before {
356
- content: "\e66e";
357
- }
358
- .mdi-action-settings-remote:before {
359
- content: "\e66f";
360
- }
361
- .mdi-action-settings-voice:before {
362
- content: "\e670";
363
- }
364
- .mdi-action-shop:before {
365
- content: "\e671";
366
- }
367
- .mdi-action-shopping-basket:before {
368
- content: "\e672";
369
- }
370
- .mdi-action-shopping-cart:before {
371
- content: "\e673";
372
- }
373
- .mdi-action-shop-two:before {
374
- content: "\e674";
375
- }
376
- .mdi-action-speaker-notes:before {
377
- content: "\e675";
378
- }
379
- .mdi-action-spellcheck:before {
380
- content: "\e676";
381
- }
382
- .mdi-action-star-rate:before {
383
- content: "\e677";
384
- }
385
- .mdi-action-stars:before {
386
- content: "\e678";
387
- }
388
- .mdi-action-store:before {
389
- content: "\e679";
390
- }
391
- .mdi-action-subject:before {
392
- content: "\e67a";
393
- }
394
- .mdi-action-swap-horiz:before {
395
- content: "\e67b";
396
- }
397
- .mdi-action-swap-vert:before {
398
- content: "\e67c";
399
- }
400
- .mdi-action-swap-vert-circle:before {
401
- content: "\e67d";
402
- }
403
- .mdi-action-system-update-tv:before {
404
- content: "\e67e";
405
- }
406
- .mdi-action-tab:before {
407
- content: "\e67f";
408
- }
409
- .mdi-action-tab-unselected:before {
410
- content: "\e680";
411
- }
412
- .mdi-action-theaters:before {
413
- content: "\e681";
414
- }
415
- .mdi-action-thumb-down:before {
416
- content: "\e682";
417
- }
418
- .mdi-action-thumbs-up-down:before {
419
- content: "\e683";
420
- }
421
- .mdi-action-thumb-up:before {
422
- content: "\e684";
423
- }
424
- .mdi-action-toc:before {
425
- content: "\e685";
426
- }
427
- .mdi-action-today:before {
428
- content: "\e686";
429
- }
430
- .mdi-action-track-changes:before {
431
- content: "\e687";
432
- }
433
- .mdi-action-translate:before {
434
- content: "\e688";
435
- }
436
- .mdi-action-trending-down:before {
437
- content: "\e689";
438
- }
439
- .mdi-action-trending-neutral:before {
440
- content: "\e68a";
441
- }
442
- .mdi-action-trending-up:before {
443
- content: "\e68b";
444
- }
445
- .mdi-action-turned-in:before {
446
- content: "\e68c";
447
- }
448
- .mdi-action-turned-in-not:before {
449
- content: "\e68d";
450
- }
451
- .mdi-action-verified-user:before {
452
- content: "\e68e";
453
- }
454
- .mdi-action-view-agenda:before {
455
- content: "\e68f";
456
- }
457
- .mdi-action-view-array:before {
458
- content: "\e690";
459
- }
460
- .mdi-action-view-carousel:before {
461
- content: "\e691";
462
- }
463
- .mdi-action-view-column:before {
464
- content: "\e692";
465
- }
466
- .mdi-action-view-day:before {
467
- content: "\e693";
468
- }
469
- .mdi-action-view-headline:before {
470
- content: "\e694";
471
- }
472
- .mdi-action-view-list:before {
473
- content: "\e695";
474
- }
475
- .mdi-action-view-module:before {
476
- content: "\e696";
477
- }
478
- .mdi-action-view-quilt:before {
479
- content: "\e697";
480
- }
481
- .mdi-action-view-stream:before {
482
- content: "\e698";
483
- }
484
- .mdi-action-view-week:before {
485
- content: "\e699";
486
- }
487
- .mdi-action-visibility:before {
488
- content: "\e69a";
489
- }
490
- .mdi-action-visibility-off:before {
491
- content: "\e69b";
492
- }
493
- .mdi-action-wallet-giftcard:before {
494
- content: "\e69c";
495
- }
496
- .mdi-action-wallet-membership:before {
497
- content: "\e69d";
498
- }
499
- .mdi-action-wallet-travel:before {
500
- content: "\e69e";
501
- }
502
- .mdi-action-work:before {
503
- content: "\e69f";
504
- }
505
- .mdi-alert-error:before {
506
- content: "\e6a0";
507
- }
508
- .mdi-alert-warning:before {
509
- content: "\e6a1";
510
- }
511
- .mdi-av-album:before {
512
- content: "\e6a2";
513
- }
514
- .mdi-av-timer:before {
515
- content: "\e6a3";
516
- }
517
- .mdi-av-closed-caption:before {
518
- content: "\e6a4";
519
- }
520
- .mdi-av-equalizer:before {
521
- content: "\e6a5";
522
- }
523
- .mdi-av-explicit:before {
524
- content: "\e6a6";
525
- }
526
- .mdi-av-fast-forward:before {
527
- content: "\e6a7";
528
- }
529
- .mdi-av-fast-rewind:before {
530
- content: "\e6a8";
531
- }
532
- .mdi-av-games:before {
533
- content: "\e6a9";
534
- }
535
- .mdi-av-hearing:before {
536
- content: "\e6aa";
537
- }
538
- .mdi-av-high-quality:before {
539
- content: "\e6ab";
540
- }
541
- .mdi-av-loop:before {
542
- content: "\e6ac";
543
- }
544
- .mdi-av-mic:before {
545
- content: "\e6ad";
546
- }
547
- .mdi-av-mic-none:before {
548
- content: "\e6ae";
549
- }
550
- .mdi-av-mic-off:before {
551
- content: "\e6af";
552
- }
553
- .mdi-av-movie:before {
554
- content: "\e6b0";
555
- }
556
- .mdi-av-my-library-add:before {
557
- content: "\e6b1";
558
- }
559
- .mdi-av-my-library-books:before {
560
- content: "\e6b2";
561
- }
562
- .mdi-av-my-library-music:before {
563
- content: "\e6b3";
564
- }
565
- .mdi-av-new-releases:before {
566
- content: "\e6b4";
567
- }
568
- .mdi-av-not-interested:before {
569
- content: "\e6b5";
570
- }
571
- .mdi-av-pause:before {
572
- content: "\e6b6";
573
- }
574
- .mdi-av-pause-circle-fill:before {
575
- content: "\e6b7";
576
- }
577
- .mdi-av-pause-circle-outline:before {
578
- content: "\e6b8";
579
- }
580
- .mdi-av-play-arrow:before {
581
- content: "\e6b9";
582
- }
583
- .mdi-av-play-circle-fill:before {
584
- content: "\e6ba";
585
- }
586
- .mdi-av-play-circle-outline:before {
587
- content: "\e6bb";
588
- }
589
- .mdi-av-playlist-add:before {
590
- content: "\e6bc";
591
- }
592
- .mdi-av-play-shopping-bag:before {
593
- content: "\e6bd";
594
- }
595
- .mdi-av-queue:before {
596
- content: "\e6be";
597
- }
598
- .mdi-av-queue-music:before {
599
- content: "\e6bf";
600
- }
601
- .mdi-av-radio:before {
602
- content: "\e6c0";
603
- }
604
- .mdi-av-recent-actors:before {
605
- content: "\e6c1";
606
- }
607
- .mdi-av-repeat:before {
608
- content: "\e6c2";
609
- }
610
- .mdi-av-repeat-one:before {
611
- content: "\e6c3";
612
- }
613
- .mdi-av-replay:before {
614
- content: "\e6c4";
615
- }
616
- .mdi-av-shuffle:before {
617
- content: "\e6c5";
618
- }
619
- .mdi-av-skip-next:before {
620
- content: "\e6c6";
621
- }
622
- .mdi-av-skip-previous:before {
623
- content: "\e6c7";
624
- }
625
- .mdi-av-snooze:before {
626
- content: "\e6c8";
627
- }
628
- .mdi-av-stop:before {
629
- content: "\e6c9";
630
- }
631
- .mdi-av-subtitles:before {
632
- content: "\e6ca";
633
- }
634
- .mdi-av-surround-sound:before {
635
- content: "\e6cb";
636
- }
637
- .mdi-av-videocam:before {
638
- content: "\e6cc";
639
- }
640
- .mdi-av-videocam-off:before {
641
- content: "\e6cd";
642
- }
643
- .mdi-av-video-collection:before {
644
- content: "\e6ce";
645
- }
646
- .mdi-av-volume-down:before {
647
- content: "\e6cf";
648
- }
649
- .mdi-av-volume-mute:before {
650
- content: "\e6d0";
651
- }
652
- .mdi-av-volume-off:before {
653
- content: "\e6d1";
654
- }
655
- .mdi-av-volume-up:before {
656
- content: "\e6d2";
657
- }
658
- .mdi-av-web:before {
659
- content: "\e6d3";
660
- }
661
- .mdi-communication-business:before {
662
- content: "\e6d4";
663
- }
664
- .mdi-communication-call:before {
665
- content: "\e6d5";
666
- }
667
- .mdi-communication-call-end:before {
668
- content: "\e6d6";
669
- }
670
- .mdi-communication-call-made:before {
671
- content: "\e6d7";
672
- }
673
- .mdi-communication-call-merge:before {
674
- content: "\e6d8";
675
- }
676
- .mdi-communication-call-missed:before {
677
- content: "\e6d9";
678
- }
679
- .mdi-communication-call-received:before {
680
- content: "\e6da";
681
- }
682
- .mdi-communication-call-split:before {
683
- content: "\e6db";
684
- }
685
- .mdi-communication-chat:before {
686
- content: "\e6dc";
687
- }
688
- .mdi-communication-clear-all:before {
689
- content: "\e6dd";
690
- }
691
- .mdi-communication-comment:before {
692
- content: "\e6de";
693
- }
694
- .mdi-communication-contacts:before {
695
- content: "\e6df";
696
- }
697
- .mdi-communication-dialer-sip:before {
698
- content: "\e6e0";
699
- }
700
- .mdi-communication-dialpad:before {
701
- content: "\e6e1";
702
- }
703
- .mdi-communication-dnd-on:before {
704
- content: "\e6e2";
705
- }
706
- .mdi-communication-email:before {
707
- content: "\e6e3";
708
- }
709
- .mdi-communication-forum:before {
710
- content: "\e6e4";
711
- }
712
- .mdi-communication-import-export:before {
713
- content: "\e6e5";
714
- }
715
- .mdi-communication-invert-colors-off:before {
716
- content: "\e6e6";
717
- }
718
- .mdi-communication-invert-colors-on:before {
719
- content: "\e6e7";
720
- }
721
- .mdi-communication-live-help:before {
722
- content: "\e6e8";
723
- }
724
- .mdi-communication-location-off:before {
725
- content: "\e6e9";
726
- }
727
- .mdi-communication-location-on:before {
728
- content: "\e6ea";
729
- }
730
- .mdi-communication-message:before {
731
- content: "\e6eb";
732
- }
733
- .mdi-communication-messenger:before {
734
- content: "\e6ec";
735
- }
736
- .mdi-communication-no-sim:before {
737
- content: "\e6ed";
738
- }
739
- .mdi-communication-phone:before {
740
- content: "\e6ee";
741
- }
742
- .mdi-communication-portable-wifi-off:before {
743
- content: "\e6ef";
744
- }
745
- .mdi-communication-quick-contacts-dialer:before {
746
- content: "\e6f0";
747
- }
748
- .mdi-communication-quick-contacts-mail:before {
749
- content: "\e6f1";
750
- }
751
- .mdi-communication-ring-volume:before {
752
- content: "\e6f2";
753
- }
754
- .mdi-communication-stay-current-landscape:before {
755
- content: "\e6f3";
756
- }
757
- .mdi-communication-stay-current-portrait:before {
758
- content: "\e6f4";
759
- }
760
- .mdi-communication-stay-primary-landscape:before {
761
- content: "\e6f5";
762
- }
763
- .mdi-communication-stay-primary-portrait:before {
764
- content: "\e6f6";
765
- }
766
- .mdi-communication-swap-calls:before {
767
- content: "\e6f7";
768
- }
769
- .mdi-communication-textsms:before {
770
- content: "\e6f8";
771
- }
772
- .mdi-communication-voicemail:before {
773
- content: "\e6f9";
774
- }
775
- .mdi-communication-vpn-key:before {
776
- content: "\e6fa";
777
- }
778
- .mdi-content-add:before {
779
- content: "\e6fb";
780
- }
781
- .mdi-content-add-box:before {
782
- content: "\e6fc";
783
- }
784
- .mdi-content-add-circle:before {
785
- content: "\e6fd";
786
- }
787
- .mdi-content-add-circle-outline:before {
788
- content: "\e6fe";
789
- }
790
- .mdi-content-archive:before {
791
- content: "\e6ff";
792
- }
793
- .mdi-content-backspace:before {
794
- content: "\e700";
795
- }
796
- .mdi-content-block:before {
797
- content: "\e701";
798
- }
799
- .mdi-content-clear:before {
800
- content: "\e702";
801
- }
802
- .mdi-content-content-copy:before {
803
- content: "\e703";
804
- }
805
- .mdi-content-content-cut:before {
806
- content: "\e704";
807
- }
808
- .mdi-content-content-paste:before {
809
- content: "\e705";
810
- }
811
- .mdi-content-create:before {
812
- content: "\e706";
813
- }
814
- .mdi-content-drafts:before {
815
- content: "\e707";
816
- }
817
- .mdi-content-filter-list:before {
818
- content: "\e708";
819
- }
820
- .mdi-content-flag:before {
821
- content: "\e709";
822
- }
823
- .mdi-content-forward:before {
824
- content: "\e70a";
825
- }
826
- .mdi-content-gesture:before {
827
- content: "\e70b";
828
- }
829
- .mdi-content-inbox:before {
830
- content: "\e70c";
831
- }
832
- .mdi-content-link:before {
833
- content: "\e70d";
834
- }
835
- .mdi-content-mail:before {
836
- content: "\e70e";
837
- }
838
- .mdi-content-markunread:before {
839
- content: "\e70f";
840
- }
841
- .mdi-content-redo:before {
842
- content: "\e710";
843
- }
844
- .mdi-content-remove:before {
845
- content: "\e711";
846
- }
847
- .mdi-content-remove-circle:before {
848
- content: "\e712";
849
- }
850
- .mdi-content-remove-circle-outline:before {
851
- content: "\e713";
852
- }
853
- .mdi-content-reply:before {
854
- content: "\e714";
855
- }
856
- .mdi-content-reply-all:before {
857
- content: "\e715";
858
- }
859
- .mdi-content-report:before {
860
- content: "\e716";
861
- }
862
- .mdi-content-save:before {
863
- content: "\e717";
864
- }
865
- .mdi-content-select-all:before {
866
- content: "\e718";
867
- }
868
- .mdi-content-send:before {
869
- content: "\e719";
870
- }
871
- .mdi-content-sort:before {
872
- content: "\e71a";
873
- }
874
- .mdi-content-text-format:before {
875
- content: "\e71b";
876
- }
877
- .mdi-content-undo:before {
878
- content: "\e71c";
879
- }
880
- .mdi-device-access-alarm:before {
881
- content: "\e71d";
882
- }
883
- .mdi-device-access-alarms:before {
884
- content: "\e71e";
885
- }
886
- .mdi-device-access-time:before {
887
- content: "\e71f";
888
- }
889
- .mdi-device-add-alarm:before {
890
- content: "\e720";
891
- }
892
- .mdi-device-airplanemode-off:before {
893
- content: "\e721";
894
- }
895
- .mdi-device-airplanemode-on:before {
896
- content: "\e722";
897
- }
898
- .mdi-device-battery-20:before {
899
- content: "\e723";
900
- }
901
- .mdi-device-battery-30:before {
902
- content: "\e724";
903
- }
904
- .mdi-device-battery-50:before {
905
- content: "\e725";
906
- }
907
- .mdi-device-battery-60:before {
908
- content: "\e726";
909
- }
910
- .mdi-device-battery-80:before {
911
- content: "\e727";
912
- }
913
- .mdi-device-battery-90:before {
914
- content: "\e728";
915
- }
916
- .mdi-device-battery-alert:before {
917
- content: "\e729";
918
- }
919
- .mdi-device-battery-charging-20:before {
920
- content: "\e72a";
921
- }
922
- .mdi-device-battery-charging-30:before {
923
- content: "\e72b";
924
- }
925
- .mdi-device-battery-charging-50:before {
926
- content: "\e72c";
927
- }
928
- .mdi-device-battery-charging-60:before {
929
- content: "\e72d";
930
- }
931
- .mdi-device-battery-charging-80:before {
932
- content: "\e72e";
933
- }
934
- .mdi-device-battery-charging-90:before {
935
- content: "\e72f";
936
- }
937
- .mdi-device-battery-charging-full:before {
938
- content: "\e730";
939
- }
940
- .mdi-device-battery-full:before {
941
- content: "\e731";
942
- }
943
- .mdi-device-battery-std:before {
944
- content: "\e732";
945
- }
946
- .mdi-device-battery-unknown:before {
947
- content: "\e733";
948
- }
949
- .mdi-device-bluetooth:before {
950
- content: "\e734";
951
- }
952
- .mdi-device-bluetooth-connected:before {
953
- content: "\e735";
954
- }
955
- .mdi-device-bluetooth-disabled:before {
956
- content: "\e736";
957
- }
958
- .mdi-device-bluetooth-searching:before {
959
- content: "\e737";
960
- }
961
- .mdi-device-brightness-auto:before {
962
- content: "\e738";
963
- }
964
- .mdi-device-brightness-high:before {
965
- content: "\e739";
966
- }
967
- .mdi-device-brightness-low:before {
968
- content: "\e73a";
969
- }
970
- .mdi-device-brightness-medium:before {
971
- content: "\e73b";
972
- }
973
- .mdi-device-data-usage:before {
974
- content: "\e73c";
975
- }
976
- .mdi-device-developer-mode:before {
977
- content: "\e73d";
978
- }
979
- .mdi-device-devices:before {
980
- content: "\e73e";
981
- }
982
- .mdi-device-dvr:before {
983
- content: "\e73f";
984
- }
985
- .mdi-device-gps-fixed:before {
986
- content: "\e740";
987
- }
988
- .mdi-device-gps-not-fixed:before {
989
- content: "\e741";
990
- }
991
- .mdi-device-gps-off:before {
992
- content: "\e742";
993
- }
994
- .mdi-device-location-disabled:before {
995
- content: "\e743";
996
- }
997
- .mdi-device-location-searching:before {
998
- content: "\e744";
999
- }
1000
- .mdi-device-multitrack-audio:before {
1001
- content: "\e745";
1002
- }
1003
- .mdi-device-network-cell:before {
1004
- content: "\e746";
1005
- }
1006
- .mdi-device-network-wifi:before {
1007
- content: "\e747";
1008
- }
1009
- .mdi-device-nfc:before {
1010
- content: "\e748";
1011
- }
1012
- .mdi-device-now-wallpaper:before {
1013
- content: "\e749";
1014
- }
1015
- .mdi-device-now-widgets:before {
1016
- content: "\e74a";
1017
- }
1018
- .mdi-device-screen-lock-landscape:before {
1019
- content: "\e74b";
1020
- }
1021
- .mdi-device-screen-lock-portrait:before {
1022
- content: "\e74c";
1023
- }
1024
- .mdi-device-screen-lock-rotation:before {
1025
- content: "\e74d";
1026
- }
1027
- .mdi-device-screen-rotation:before {
1028
- content: "\e74e";
1029
- }
1030
- .mdi-device-sd-storage:before {
1031
- content: "\e74f";
1032
- }
1033
- .mdi-device-settings-system-daydream:before {
1034
- content: "\e750";
1035
- }
1036
- .mdi-device-signal-cellular-0-bar:before {
1037
- content: "\e751";
1038
- }
1039
- .mdi-device-signal-cellular-1-bar:before {
1040
- content: "\e752";
1041
- }
1042
- .mdi-device-signal-cellular-2-bar:before {
1043
- content: "\e753";
1044
- }
1045
- .mdi-device-signal-cellular-3-bar:before {
1046
- content: "\e754";
1047
- }
1048
- .mdi-device-signal-cellular-4-bar:before {
1049
- content: "\e755";
1050
- }
1051
- .mdi-device-signal-cellular-connected-no-internet-0-bar:before {
1052
- content: "\e756";
1053
- }
1054
- .mdi-device-signal-cellular-connected-no-internet-1-bar:before {
1055
- content: "\e757";
1056
- }
1057
- .mdi-device-signal-cellular-connected-no-internet-2-bar:before {
1058
- content: "\e758";
1059
- }
1060
- .mdi-device-signal-cellular-connected-no-internet-3-bar:before {
1061
- content: "\e759";
1062
- }
1063
- .mdi-device-signal-cellular-connected-no-internet-4-bar:before {
1064
- content: "\e75a";
1065
- }
1066
- .mdi-device-signal-cellular-no-sim:before {
1067
- content: "\e75b";
1068
- }
1069
- .mdi-device-signal-cellular-null:before {
1070
- content: "\e75c";
1071
- }
1072
- .mdi-device-signal-cellular-off:before {
1073
- content: "\e75d";
1074
- }
1075
- .mdi-device-signal-wifi-0-bar:before {
1076
- content: "\e75e";
1077
- }
1078
- .mdi-device-signal-wifi-1-bar:before {
1079
- content: "\e75f";
1080
- }
1081
- .mdi-device-signal-wifi-2-bar:before {
1082
- content: "\e760";
1083
- }
1084
- .mdi-device-signal-wifi-3-bar:before {
1085
- content: "\e761";
1086
- }
1087
- .mdi-device-signal-wifi-4-bar:before {
1088
- content: "\e762";
1089
- }
1090
- .mdi-device-signal-wifi-off:before {
1091
- content: "\e763";
1092
- }
1093
- .mdi-device-storage:before {
1094
- content: "\e764";
1095
- }
1096
- .mdi-device-usb:before {
1097
- content: "\e765";
1098
- }
1099
- .mdi-device-wifi-lock:before {
1100
- content: "\e766";
1101
- }
1102
- .mdi-device-wifi-tethering:before {
1103
- content: "\e767";
1104
- }
1105
- .mdi-editor-attach-file:before {
1106
- content: "\e768";
1107
- }
1108
- .mdi-editor-attach-money:before {
1109
- content: "\e769";
1110
- }
1111
- .mdi-editor-border-all:before {
1112
- content: "\e76a";
1113
- }
1114
- .mdi-editor-border-bottom:before {
1115
- content: "\e76b";
1116
- }
1117
- .mdi-editor-border-clear:before {
1118
- content: "\e76c";
1119
- }
1120
- .mdi-editor-border-color:before {
1121
- content: "\e76d";
1122
- }
1123
- .mdi-editor-border-horizontal:before {
1124
- content: "\e76e";
1125
- }
1126
- .mdi-editor-border-inner:before {
1127
- content: "\e76f";
1128
- }
1129
- .mdi-editor-border-left:before {
1130
- content: "\e770";
1131
- }
1132
- .mdi-editor-border-outer:before {
1133
- content: "\e771";
1134
- }
1135
- .mdi-editor-border-right:before {
1136
- content: "\e772";
1137
- }
1138
- .mdi-editor-border-style:before {
1139
- content: "\e773";
1140
- }
1141
- .mdi-editor-border-top:before {
1142
- content: "\e774";
1143
- }
1144
- .mdi-editor-border-vertical:before {
1145
- content: "\e775";
1146
- }
1147
- .mdi-editor-format-align-center:before {
1148
- content: "\e776";
1149
- }
1150
- .mdi-editor-format-align-justify:before {
1151
- content: "\e777";
1152
- }
1153
- .mdi-editor-format-align-left:before {
1154
- content: "\e778";
1155
- }
1156
- .mdi-editor-format-align-right:before {
1157
- content: "\e779";
1158
- }
1159
- .mdi-editor-format-bold:before {
1160
- content: "\e77a";
1161
- }
1162
- .mdi-editor-format-clear:before {
1163
- content: "\e77b";
1164
- }
1165
- .mdi-editor-format-color-fill:before {
1166
- content: "\e77c";
1167
- }
1168
- .mdi-editor-format-color-reset:before {
1169
- content: "\e77d";
1170
- }
1171
- .mdi-editor-format-color-text:before {
1172
- content: "\e77e";
1173
- }
1174
- .mdi-editor-format-indent-decrease:before {
1175
- content: "\e77f";
1176
- }
1177
- .mdi-editor-format-indent-increase:before {
1178
- content: "\e780";
1179
- }
1180
- .mdi-editor-format-italic:before {
1181
- content: "\e781";
1182
- }
1183
- .mdi-editor-format-line-spacing:before {
1184
- content: "\e782";
1185
- }
1186
- .mdi-editor-format-list-bulleted:before {
1187
- content: "\e783";
1188
- }
1189
- .mdi-editor-format-list-numbered:before {
1190
- content: "\e784";
1191
- }
1192
- .mdi-editor-format-paint:before {
1193
- content: "\e785";
1194
- }
1195
- .mdi-editor-format-quote:before {
1196
- content: "\e786";
1197
- }
1198
- .mdi-editor-format-size:before {
1199
- content: "\e787";
1200
- }
1201
- .mdi-editor-format-strikethrough:before {
1202
- content: "\e788";
1203
- }
1204
- .mdi-editor-functions:before {
1205
- content: "\e789";
1206
- }
1207
- .mdi-editor-format-textdirection-l-to-r:before {
1208
- content: "\e78a";
1209
- }
1210
- .mdi-editor-format-underline:before {
1211
- content: "\e78b";
1212
- }
1213
- .mdi-editor-format-textdirection-r-to-l:before {
1214
- content: "\e78c";
1215
- }
1216
- .mdi-editor-insert-chart:before {
1217
- content: "\e78d";
1218
- }
1219
- .mdi-editor-insert-comment:before {
1220
- content: "\e78e";
1221
- }
1222
- .mdi-editor-insert-drive-file:before {
1223
- content: "\e78f";
1224
- }
1225
- .mdi-editor-insert-emoticon:before {
1226
- content: "\e790";
1227
- }
1228
- .mdi-editor-insert-invitation:before {
1229
- content: "\e791";
1230
- }
1231
- .mdi-editor-insert-link:before {
1232
- content: "\e792";
1233
- }
1234
- .mdi-editor-insert-photo:before {
1235
- content: "\e793";
1236
- }
1237
- .mdi-editor-merge-type:before {
1238
- content: "\e794";
1239
- }
1240
- .mdi-editor-mode-comment:before {
1241
- content: "\e795";
1242
- }
1243
- .mdi-editor-mode-edit:before {
1244
- content: "\e796";
1245
- }
1246
- .mdi-editor-publish:before {
1247
- content: "\e797";
1248
- }
1249
- .mdi-editor-vertical-align-bottom:before {
1250
- content: "\e798";
1251
- }
1252
- .mdi-editor-vertical-align-center:before {
1253
- content: "\e799";
1254
- }
1255
- .mdi-editor-vertical-align-top:before {
1256
- content: "\e79a";
1257
- }
1258
- .mdi-editor-wrap-text:before {
1259
- content: "\e79b";
1260
- }
1261
- .mdi-file-attachment:before {
1262
- content: "\e79c";
1263
- }
1264
- .mdi-file-cloud:before {
1265
- content: "\e79d";
1266
- }
1267
- .mdi-file-cloud-circle:before {
1268
- content: "\e79e";
1269
- }
1270
- .mdi-file-cloud-done:before {
1271
- content: "\e79f";
1272
- }
1273
- .mdi-file-cloud-download:before {
1274
- content: "\e7a0";
1275
- }
1276
- .mdi-file-cloud-off:before {
1277
- content: "\e7a1";
1278
- }
1279
- .mdi-file-cloud-queue:before {
1280
- content: "\e7a2";
1281
- }
1282
- .mdi-file-cloud-upload:before {
1283
- content: "\e7a3";
1284
- }
1285
- .mdi-file-file-download:before {
1286
- content: "\e7a4";
1287
- }
1288
- .mdi-file-file-upload:before {
1289
- content: "\e7a5";
1290
- }
1291
- .mdi-file-folder:before {
1292
- content: "\e7a6";
1293
- }
1294
- .mdi-file-folder-open:before {
1295
- content: "\e7a7";
1296
- }
1297
- .mdi-file-folder-shared:before {
1298
- content: "\e7a8";
1299
- }
1300
- .mdi-hardware-cast:before {
1301
- content: "\e7a9";
1302
- }
1303
- .mdi-hardware-cast-connected:before {
1304
- content: "\e7aa";
1305
- }
1306
- .mdi-hardware-computer:before {
1307
- content: "\e7ab";
1308
- }
1309
- .mdi-hardware-desktop-mac:before {
1310
- content: "\e7ac";
1311
- }
1312
- .mdi-hardware-desktop-windows:before {
1313
- content: "\e7ad";
1314
- }
1315
- .mdi-hardware-dock:before {
1316
- content: "\e7ae";
1317
- }
1318
- .mdi-hardware-gamepad:before {
1319
- content: "\e7af";
1320
- }
1321
- .mdi-hardware-headset:before {
1322
- content: "\e7b0";
1323
- }
1324
- .mdi-hardware-headset-mic:before {
1325
- content: "\e7b1";
1326
- }
1327
- .mdi-hardware-keyboard:before {
1328
- content: "\e7b2";
1329
- }
1330
- .mdi-hardware-keyboard-alt:before {
1331
- content: "\e7b3";
1332
- }
1333
- .mdi-hardware-keyboard-arrow-down:before {
1334
- content: "\e7b4";
1335
- }
1336
- .mdi-hardware-keyboard-arrow-left:before {
1337
- content: "\e7b5";
1338
- }
1339
- .mdi-hardware-keyboard-arrow-right:before {
1340
- content: "\e7b6";
1341
- }
1342
- .mdi-hardware-keyboard-arrow-up:before {
1343
- content: "\e7b7";
1344
- }
1345
- .mdi-hardware-keyboard-backspace:before {
1346
- content: "\e7b8";
1347
- }
1348
- .mdi-hardware-keyboard-capslock:before {
1349
- content: "\e7b9";
1350
- }
1351
- .mdi-hardware-keyboard-control:before {
1352
- content: "\e7ba";
1353
- }
1354
- .mdi-hardware-keyboard-hide:before {
1355
- content: "\e7bb";
1356
- }
1357
- .mdi-hardware-keyboard-return:before {
1358
- content: "\e7bc";
1359
- }
1360
- .mdi-hardware-keyboard-tab:before {
1361
- content: "\e7bd";
1362
- }
1363
- .mdi-hardware-keyboard-voice:before {
1364
- content: "\e7be";
1365
- }
1366
- .mdi-hardware-laptop:before {
1367
- content: "\e7bf";
1368
- }
1369
- .mdi-hardware-laptop-chromebook:before {
1370
- content: "\e7c0";
1371
- }
1372
- .mdi-hardware-laptop-mac:before {
1373
- content: "\e7c1";
1374
- }
1375
- .mdi-hardware-laptop-windows:before {
1376
- content: "\e7c2";
1377
- }
1378
- .mdi-hardware-memory:before {
1379
- content: "\e7c3";
1380
- }
1381
- .mdi-hardware-mouse:before {
1382
- content: "\e7c4";
1383
- }
1384
- .mdi-hardware-phone-android:before {
1385
- content: "\e7c5";
1386
- }
1387
- .mdi-hardware-phone-iphone:before {
1388
- content: "\e7c6";
1389
- }
1390
- .mdi-hardware-phonelink:before {
1391
- content: "\e7c7";
1392
- }
1393
- .mdi-hardware-phonelink-off:before {
1394
- content: "\e7c8";
1395
- }
1396
- .mdi-hardware-security:before {
1397
- content: "\e7c9";
1398
- }
1399
- .mdi-hardware-sim-card:before {
1400
- content: "\e7ca";
1401
- }
1402
- .mdi-hardware-smartphone:before {
1403
- content: "\e7cb";
1404
- }
1405
- .mdi-hardware-speaker:before {
1406
- content: "\e7cc";
1407
- }
1408
- .mdi-hardware-tablet:before {
1409
- content: "\e7cd";
1410
- }
1411
- .mdi-hardware-tablet-android:before {
1412
- content: "\e7ce";
1413
- }
1414
- .mdi-hardware-tablet-mac:before {
1415
- content: "\e7cf";
1416
- }
1417
- .mdi-hardware-tv:before {
1418
- content: "\e7d0";
1419
- }
1420
- .mdi-hardware-watch:before {
1421
- content: "\e7d1";
1422
- }
1423
- .mdi-image-add-to-photos:before {
1424
- content: "\e7d2";
1425
- }
1426
- .mdi-image-adjust:before {
1427
- content: "\e7d3";
1428
- }
1429
- .mdi-image-assistant-photo:before {
1430
- content: "\e7d4";
1431
- }
1432
- .mdi-image-audiotrack:before {
1433
- content: "\e7d5";
1434
- }
1435
- .mdi-image-blur-circular:before {
1436
- content: "\e7d6";
1437
- }
1438
- .mdi-image-blur-linear:before {
1439
- content: "\e7d7";
1440
- }
1441
- .mdi-image-blur-off:before {
1442
- content: "\e7d8";
1443
- }
1444
- .mdi-image-blur-on:before {
1445
- content: "\e7d9";
1446
- }
1447
- .mdi-image-brightness-1:before {
1448
- content: "\e7da";
1449
- }
1450
- .mdi-image-brightness-2:before {
1451
- content: "\e7db";
1452
- }
1453
- .mdi-image-brightness-3:before {
1454
- content: "\e7dc";
1455
- }
1456
- .mdi-image-brightness-4:before {
1457
- content: "\e7dd";
1458
- }
1459
- .mdi-image-brightness-5:before {
1460
- content: "\e7de";
1461
- }
1462
- .mdi-image-brightness-6:before {
1463
- content: "\e7df";
1464
- }
1465
- .mdi-image-brightness-7:before {
1466
- content: "\e7e0";
1467
- }
1468
- .mdi-image-brush:before {
1469
- content: "\e7e1";
1470
- }
1471
- .mdi-image-camera:before {
1472
- content: "\e7e2";
1473
- }
1474
- .mdi-image-camera-alt:before {
1475
- content: "\e7e3";
1476
- }
1477
- .mdi-image-camera-front:before {
1478
- content: "\e7e4";
1479
- }
1480
- .mdi-image-camera-rear:before {
1481
- content: "\e7e5";
1482
- }
1483
- .mdi-image-camera-roll:before {
1484
- content: "\e7e6";
1485
- }
1486
- .mdi-image-center-focus-strong:before {
1487
- content: "\e7e7";
1488
- }
1489
- .mdi-image-center-focus-weak:before {
1490
- content: "\e7e8";
1491
- }
1492
- .mdi-image-collections:before {
1493
- content: "\e7e9";
1494
- }
1495
- .mdi-image-colorize:before {
1496
- content: "\e7ea";
1497
- }
1498
- .mdi-image-color-lens:before {
1499
- content: "\e7eb";
1500
- }
1501
- .mdi-image-compare:before {
1502
- content: "\e7ec";
1503
- }
1504
- .mdi-image-control-point:before {
1505
- content: "\e7ed";
1506
- }
1507
- .mdi-image-control-point-duplicate:before {
1508
- content: "\e7ee";
1509
- }
1510
- .mdi-image-crop:before {
1511
- content: "\e7ef";
1512
- }
1513
- .mdi-image-crop-3-2:before {
1514
- content: "\e7f0";
1515
- }
1516
- .mdi-image-crop-5-4:before {
1517
- content: "\e7f1";
1518
- }
1519
- .mdi-image-crop-7-5:before {
1520
- content: "\e7f2";
1521
- }
1522
- .mdi-image-crop-16-9:before {
1523
- content: "\e7f3";
1524
- }
1525
- .mdi-image-crop-din:before {
1526
- content: "\e7f4";
1527
- }
1528
- .mdi-image-crop-free:before {
1529
- content: "\e7f5";
1530
- }
1531
- .mdi-image-crop-landscape:before {
1532
- content: "\e7f6";
1533
- }
1534
- .mdi-image-crop-original:before {
1535
- content: "\e7f7";
1536
- }
1537
- .mdi-image-crop-portrait:before {
1538
- content: "\e7f8";
1539
- }
1540
- .mdi-image-crop-square:before {
1541
- content: "\e7f9";
1542
- }
1543
- .mdi-image-dehaze:before {
1544
- content: "\e7fa";
1545
- }
1546
- .mdi-image-details:before {
1547
- content: "\e7fb";
1548
- }
1549
- .mdi-image-edit:before {
1550
- content: "\e7fc";
1551
- }
1552
- .mdi-image-exposure:before {
1553
- content: "\e7fd";
1554
- }
1555
- .mdi-image-exposure-minus-1:before {
1556
- content: "\e7fe";
1557
- }
1558
- .mdi-image-exposure-minus-2:before {
1559
- content: "\e7ff";
1560
- }
1561
- .mdi-image-exposure-plus-1:before {
1562
- content: "\e800";
1563
- }
1564
- .mdi-image-exposure-plus-2:before {
1565
- content: "\e801";
1566
- }
1567
- .mdi-image-exposure-zero:before {
1568
- content: "\e802";
1569
- }
1570
- .mdi-image-filter:before {
1571
- content: "\e803";
1572
- }
1573
- .mdi-image-filter-1:before {
1574
- content: "\e804";
1575
- }
1576
- .mdi-image-filter-2:before {
1577
- content: "\e805";
1578
- }
1579
- .mdi-image-filter-3:before {
1580
- content: "\e806";
1581
- }
1582
- .mdi-image-filter-4:before {
1583
- content: "\e807";
1584
- }
1585
- .mdi-image-filter-5:before {
1586
- content: "\e808";
1587
- }
1588
- .mdi-image-filter-6:before {
1589
- content: "\e809";
1590
- }
1591
- .mdi-image-filter-7:before {
1592
- content: "\e80a";
1593
- }
1594
- .mdi-image-filter-8:before {
1595
- content: "\e80b";
1596
- }
1597
- .mdi-image-filter-9:before {
1598
- content: "\e80c";
1599
- }
1600
- .mdi-image-filter-9-plus:before {
1601
- content: "\e80d";
1602
- }
1603
- .mdi-image-filter-b-and-w:before {
1604
- content: "\e80e";
1605
- }
1606
- .mdi-image-filter-center-focus:before {
1607
- content: "\e80f";
1608
- }
1609
- .mdi-image-filter-drama:before {
1610
- content: "\e810";
1611
- }
1612
- .mdi-image-filter-frames:before {
1613
- content: "\e811";
1614
- }
1615
- .mdi-image-filter-hdr:before {
1616
- content: "\e812";
1617
- }
1618
- .mdi-image-filter-none:before {
1619
- content: "\e813";
1620
- }
1621
- .mdi-image-filter-tilt-shift:before {
1622
- content: "\e814";
1623
- }
1624
- .mdi-image-filter-vintage:before {
1625
- content: "\e815";
1626
- }
1627
- .mdi-image-flare:before {
1628
- content: "\e816";
1629
- }
1630
- .mdi-image-flash-auto:before {
1631
- content: "\e817";
1632
- }
1633
- .mdi-image-flash-off:before {
1634
- content: "\e818";
1635
- }
1636
- .mdi-image-flash-on:before {
1637
- content: "\e819";
1638
- }
1639
- .mdi-image-flip:before {
1640
- content: "\e81a";
1641
- }
1642
- .mdi-image-gradient:before {
1643
- content: "\e81b";
1644
- }
1645
- .mdi-image-grain:before {
1646
- content: "\e81c";
1647
- }
1648
- .mdi-image-grid-off:before {
1649
- content: "\e81d";
1650
- }
1651
- .mdi-image-grid-on:before {
1652
- content: "\e81e";
1653
- }
1654
- .mdi-image-hdr-off:before {
1655
- content: "\e81f";
1656
- }
1657
- .mdi-image-hdr-on:before {
1658
- content: "\e820";
1659
- }
1660
- .mdi-image-hdr-strong:before {
1661
- content: "\e821";
1662
- }
1663
- .mdi-image-hdr-weak:before {
1664
- content: "\e822";
1665
- }
1666
- .mdi-image-healing:before {
1667
- content: "\e823";
1668
- }
1669
- .mdi-image-image:before {
1670
- content: "\e824";
1671
- }
1672
- .mdi-image-image-aspect-ratio:before {
1673
- content: "\e825";
1674
- }
1675
- .mdi-image-iso:before {
1676
- content: "\e826";
1677
- }
1678
- .mdi-image-landscape:before {
1679
- content: "\e827";
1680
- }
1681
- .mdi-image-leak-add:before {
1682
- content: "\e828";
1683
- }
1684
- .mdi-image-leak-remove:before {
1685
- content: "\e829";
1686
- }
1687
- .mdi-image-lens:before {
1688
- content: "\e82a";
1689
- }
1690
- .mdi-image-looks:before {
1691
- content: "\e82b";
1692
- }
1693
- .mdi-image-looks-3:before {
1694
- content: "\e82c";
1695
- }
1696
- .mdi-image-looks-4:before {
1697
- content: "\e82d";
1698
- }
1699
- .mdi-image-looks-5:before {
1700
- content: "\e82e";
1701
- }
1702
- .mdi-image-looks-6:before {
1703
- content: "\e82f";
1704
- }
1705
- .mdi-image-looks-one:before {
1706
- content: "\e830";
1707
- }
1708
- .mdi-image-looks-two:before {
1709
- content: "\e831";
1710
- }
1711
- .mdi-image-loupe:before {
1712
- content: "\e832";
1713
- }
1714
- .mdi-image-movie-creation:before {
1715
- content: "\e833";
1716
- }
1717
- .mdi-image-nature:before {
1718
- content: "\e834";
1719
- }
1720
- .mdi-image-nature-people:before {
1721
- content: "\e835";
1722
- }
1723
- .mdi-image-navigate-before:before {
1724
- content: "\e836";
1725
- }
1726
- .mdi-image-navigate-next:before {
1727
- content: "\e837";
1728
- }
1729
- .mdi-image-palette:before {
1730
- content: "\e838";
1731
- }
1732
- .mdi-image-panorama:before {
1733
- content: "\e839";
1734
- }
1735
- .mdi-image-panorama-fisheye:before {
1736
- content: "\e83a";
1737
- }
1738
- .mdi-image-panorama-horizontal:before {
1739
- content: "\e83b";
1740
- }
1741
- .mdi-image-panorama-vertical:before {
1742
- content: "\e83c";
1743
- }
1744
- .mdi-image-panorama-wide-angle:before {
1745
- content: "\e83d";
1746
- }
1747
- .mdi-image-photo:before {
1748
- content: "\e83e";
1749
- }
1750
- .mdi-image-photo-album:before {
1751
- content: "\e83f";
1752
- }
1753
- .mdi-image-photo-camera:before {
1754
- content: "\e840";
1755
- }
1756
- .mdi-image-photo-library:before {
1757
- content: "\e841";
1758
- }
1759
- .mdi-image-portrait:before {
1760
- content: "\e842";
1761
- }
1762
- .mdi-image-remove-red-eye:before {
1763
- content: "\e843";
1764
- }
1765
- .mdi-image-rotate-left:before {
1766
- content: "\e844";
1767
- }
1768
- .mdi-image-rotate-right:before {
1769
- content: "\e845";
1770
- }
1771
- .mdi-image-slideshow:before {
1772
- content: "\e846";
1773
- }
1774
- .mdi-image-straighten:before {
1775
- content: "\e847";
1776
- }
1777
- .mdi-image-style:before {
1778
- content: "\e848";
1779
- }
1780
- .mdi-image-switch-camera:before {
1781
- content: "\e849";
1782
- }
1783
- .mdi-image-switch-video:before {
1784
- content: "\e84a";
1785
- }
1786
- .mdi-image-tag-faces:before {
1787
- content: "\e84b";
1788
- }
1789
- .mdi-image-texture:before {
1790
- content: "\e84c";
1791
- }
1792
- .mdi-image-timelapse:before {
1793
- content: "\e84d";
1794
- }
1795
- .mdi-image-timer:before {
1796
- content: "\e84e";
1797
- }
1798
- .mdi-image-timer-3:before {
1799
- content: "\e84f";
1800
- }
1801
- .mdi-image-timer-10:before {
1802
- content: "\e850";
1803
- }
1804
- .mdi-image-timer-auto:before {
1805
- content: "\e851";
1806
- }
1807
- .mdi-image-timer-off:before {
1808
- content: "\e852";
1809
- }
1810
- .mdi-image-tonality:before {
1811
- content: "\e853";
1812
- }
1813
- .mdi-image-transform:before {
1814
- content: "\e854";
1815
- }
1816
- .mdi-image-tune:before {
1817
- content: "\e855";
1818
- }
1819
- .mdi-image-wb-auto:before {
1820
- content: "\e856";
1821
- }
1822
- .mdi-image-wb-cloudy:before {
1823
- content: "\e857";
1824
- }
1825
- .mdi-image-wb-incandescent:before {
1826
- content: "\e858";
1827
- }
1828
- .mdi-image-wb-irradescent:before {
1829
- content: "\e859";
1830
- }
1831
- .mdi-image-wb-sunny:before {
1832
- content: "\e85a";
1833
- }
1834
- .mdi-maps-beenhere:before {
1835
- content: "\e85b";
1836
- }
1837
- .mdi-maps-directions:before {
1838
- content: "\e85c";
1839
- }
1840
- .mdi-maps-directions-bike:before {
1841
- content: "\e85d";
1842
- }
1843
- .mdi-maps-directions-bus:before {
1844
- content: "\e85e";
1845
- }
1846
- .mdi-maps-directions-car:before {
1847
- content: "\e85f";
1848
- }
1849
- .mdi-maps-directions-ferry:before {
1850
- content: "\e860";
1851
- }
1852
- .mdi-maps-directions-subway:before {
1853
- content: "\e861";
1854
- }
1855
- .mdi-maps-directions-train:before {
1856
- content: "\e862";
1857
- }
1858
- .mdi-maps-directions-transit:before {
1859
- content: "\e863";
1860
- }
1861
- .mdi-maps-directions-walk:before {
1862
- content: "\e864";
1863
- }
1864
- .mdi-maps-flight:before {
1865
- content: "\e865";
1866
- }
1867
- .mdi-maps-hotel:before {
1868
- content: "\e866";
1869
- }
1870
- .mdi-maps-layers:before {
1871
- content: "\e867";
1872
- }
1873
- .mdi-maps-layers-clear:before {
1874
- content: "\e868";
1875
- }
1876
- .mdi-maps-local-airport:before {
1877
- content: "\e869";
1878
- }
1879
- .mdi-maps-local-atm:before {
1880
- content: "\e86a";
1881
- }
1882
- .mdi-maps-local-attraction:before {
1883
- content: "\e86b";
1884
- }
1885
- .mdi-maps-local-bar:before {
1886
- content: "\e86c";
1887
- }
1888
- .mdi-maps-local-cafe:before {
1889
- content: "\e86d";
1890
- }
1891
- .mdi-maps-local-car-wash:before {
1892
- content: "\e86e";
1893
- }
1894
- .mdi-maps-local-convenience-store:before {
1895
- content: "\e86f";
1896
- }
1897
- .mdi-maps-local-drink:before {
1898
- content: "\e870";
1899
- }
1900
- .mdi-maps-local-florist:before {
1901
- content: "\e871";
1902
- }
1903
- .mdi-maps-local-gas-station:before {
1904
- content: "\e872";
1905
- }
1906
- .mdi-maps-local-grocery-store:before {
1907
- content: "\e873";
1908
- }
1909
- .mdi-maps-local-hospital:before {
1910
- content: "\e874";
1911
- }
1912
- .mdi-maps-local-hotel:before {
1913
- content: "\e875";
1914
- }
1915
- .mdi-maps-local-laundry-service:before {
1916
- content: "\e876";
1917
- }
1918
- .mdi-maps-local-library:before {
1919
- content: "\e877";
1920
- }
1921
- .mdi-maps-local-mall:before {
1922
- content: "\e878";
1923
- }
1924
- .mdi-maps-local-movies:before {
1925
- content: "\e879";
1926
- }
1927
- .mdi-maps-local-offer:before {
1928
- content: "\e87a";
1929
- }
1930
- .mdi-maps-local-parking:before {
1931
- content: "\e87b";
1932
- }
1933
- .mdi-maps-local-pharmacy:before {
1934
- content: "\e87c";
1935
- }
1936
- .mdi-maps-local-phone:before {
1937
- content: "\e87d";
1938
- }
1939
- .mdi-maps-local-pizza:before {
1940
- content: "\e87e";
1941
- }
1942
- .mdi-maps-local-play:before {
1943
- content: "\e87f";
1944
- }
1945
- .mdi-maps-local-post-office:before {
1946
- content: "\e880";
1947
- }
1948
- .mdi-maps-local-print-shop:before {
1949
- content: "\e881";
1950
- }
1951
- .mdi-maps-local-restaurant:before {
1952
- content: "\e882";
1953
- }
1954
- .mdi-maps-local-see:before {
1955
- content: "\e883";
1956
- }
1957
- .mdi-maps-local-shipping:before {
1958
- content: "\e884";
1959
- }
1960
- .mdi-maps-local-taxi:before {
1961
- content: "\e885";
1962
- }
1963
- .mdi-maps-location-history:before {
1964
- content: "\e886";
1965
- }
1966
- .mdi-maps-map:before {
1967
- content: "\e887";
1968
- }
1969
- .mdi-maps-my-location:before {
1970
- content: "\e888";
1971
- }
1972
- .mdi-maps-navigation:before {
1973
- content: "\e889";
1974
- }
1975
- .mdi-maps-pin-drop:before {
1976
- content: "\e88a";
1977
- }
1978
- .mdi-maps-place:before {
1979
- content: "\e88b";
1980
- }
1981
- .mdi-maps-rate-review:before {
1982
- content: "\e88c";
1983
- }
1984
- .mdi-maps-restaurant-menu:before {
1985
- content: "\e88d";
1986
- }
1987
- .mdi-maps-satellite:before {
1988
- content: "\e88e";
1989
- }
1990
- .mdi-maps-store-mall-directory:before {
1991
- content: "\e88f";
1992
- }
1993
- .mdi-maps-terrain:before {
1994
- content: "\e890";
1995
- }
1996
- .mdi-maps-traffic:before {
1997
- content: "\e891";
1998
- }
1999
- .mdi-navigation-apps:before {
2000
- content: "\e892";
2001
- }
2002
- .mdi-navigation-arrow-back:before {
2003
- content: "\e893";
2004
- }
2005
- .mdi-navigation-arrow-drop-down:before {
2006
- content: "\e894";
2007
- }
2008
- .mdi-navigation-arrow-drop-down-circle:before {
2009
- content: "\e895";
2010
- }
2011
- .mdi-navigation-arrow-drop-up:before {
2012
- content: "\e896";
2013
- }
2014
- .mdi-navigation-arrow-forward:before {
2015
- content: "\e897";
2016
- }
2017
- .mdi-navigation-cancel:before {
2018
- content: "\e898";
2019
- }
2020
- .mdi-navigation-check:before {
2021
- content: "\e899";
2022
- }
2023
- .mdi-navigation-chevron-left:before {
2024
- content: "\e89a";
2025
- }
2026
- .mdi-navigation-chevron-right:before {
2027
- content: "\e89b";
2028
- }
2029
- .mdi-navigation-close:before {
2030
- content: "\e89c";
2031
- }
2032
- .mdi-navigation-expand-less:before {
2033
- content: "\e89d";
2034
- }
2035
- .mdi-navigation-expand-more:before {
2036
- content: "\e89e";
2037
- }
2038
- .mdi-navigation-fullscreen:before {
2039
- content: "\e89f";
2040
- }
2041
- .mdi-navigation-fullscreen-exit:before {
2042
- content: "\e8a0";
2043
- }
2044
- .mdi-navigation-menu:before {
2045
- content: "\e8a1";
2046
- }
2047
- .mdi-navigation-more-horiz:before {
2048
- content: "\e8a2";
2049
- }
2050
- .mdi-navigation-more-vert:before {
2051
- content: "\e8a3";
2052
- }
2053
- .mdi-navigation-refresh:before {
2054
- content: "\e8a4";
2055
- }
2056
- .mdi-navigation-unfold-less:before {
2057
- content: "\e8a5";
2058
- }
2059
- .mdi-navigation-unfold-more:before {
2060
- content: "\e8a6";
2061
- }
2062
- .mdi-notification-adb:before {
2063
- content: "\e8a7";
2064
- }
2065
- .mdi-notification-bluetooth-audio:before {
2066
- content: "\e8a8";
2067
- }
2068
- .mdi-notification-disc-full:before {
2069
- content: "\e8a9";
2070
- }
2071
- .mdi-notification-dnd-forwardslash:before {
2072
- content: "\e8aa";
2073
- }
2074
- .mdi-notification-do-not-disturb:before {
2075
- content: "\e8ab";
2076
- }
2077
- .mdi-notification-drive-eta:before {
2078
- content: "\e8ac";
2079
- }
2080
- .mdi-notification-event-available:before {
2081
- content: "\e8ad";
2082
- }
2083
- .mdi-notification-event-busy:before {
2084
- content: "\e8ae";
2085
- }
2086
- .mdi-notification-event-note:before {
2087
- content: "\e8af";
2088
- }
2089
- .mdi-notification-folder-special:before {
2090
- content: "\e8b0";
2091
- }
2092
- .mdi-notification-mms:before {
2093
- content: "\e8b1";
2094
- }
2095
- .mdi-notification-more:before {
2096
- content: "\e8b2";
2097
- }
2098
- .mdi-notification-network-locked:before {
2099
- content: "\e8b3";
2100
- }
2101
- .mdi-notification-phone-bluetooth-speaker:before {
2102
- content: "\e8b4";
2103
- }
2104
- .mdi-notification-phone-forwarded:before {
2105
- content: "\e8b5";
2106
- }
2107
- .mdi-notification-phone-in-talk:before {
2108
- content: "\e8b6";
2109
- }
2110
- .mdi-notification-phone-locked:before {
2111
- content: "\e8b7";
2112
- }
2113
- .mdi-notification-phone-missed:before {
2114
- content: "\e8b8";
2115
- }
2116
- .mdi-notification-phone-paused:before {
2117
- content: "\e8b9";
2118
- }
2119
- .mdi-notification-play-download:before {
2120
- content: "\e8ba";
2121
- }
2122
- .mdi-notification-play-install:before {
2123
- content: "\e8bb";
2124
- }
2125
- .mdi-notification-sd-card:before {
2126
- content: "\e8bc";
2127
- }
2128
- .mdi-notification-sim-card-alert:before {
2129
- content: "\e8bd";
2130
- }
2131
- .mdi-notification-sms:before {
2132
- content: "\e8be";
2133
- }
2134
- .mdi-notification-sms-failed:before {
2135
- content: "\e8bf";
2136
- }
2137
- .mdi-notification-sync:before {
2138
- content: "\e8c0";
2139
- }
2140
- .mdi-notification-sync-disabled:before {
2141
- content: "\e8c1";
2142
- }
2143
- .mdi-notification-sync-problem:before {
2144
- content: "\e8c2";
2145
- }
2146
- .mdi-notification-system-update:before {
2147
- content: "\e8c3";
2148
- }
2149
- .mdi-notification-tap-and-play:before {
2150
- content: "\e8c4";
2151
- }
2152
- .mdi-notification-time-to-leave:before {
2153
- content: "\e8c5";
2154
- }
2155
- .mdi-notification-vibration:before {
2156
- content: "\e8c6";
2157
- }
2158
- .mdi-notification-voice-chat:before {
2159
- content: "\e8c7";
2160
- }
2161
- .mdi-notification-vpn-lock:before {
2162
- content: "\e8c8";
2163
- }
2164
- .mdi-social-cake:before {
2165
- content: "\e8c9";
2166
- }
2167
- .mdi-social-domain:before {
2168
- content: "\e8ca";
2169
- }
2170
- .mdi-social-group:before {
2171
- content: "\e8cb";
2172
- }
2173
- .mdi-social-group-add:before {
2174
- content: "\e8cc";
2175
- }
2176
- .mdi-social-location-city:before {
2177
- content: "\e8cd";
2178
- }
2179
- .mdi-social-mood:before {
2180
- content: "\e8ce";
2181
- }
2182
- .mdi-social-notifications:before {
2183
- content: "\e8cf";
2184
- }
2185
- .mdi-social-notifications-none:before {
2186
- content: "\e8d0";
2187
- }
2188
- .mdi-social-notifications-off:before {
2189
- content: "\e8d1";
2190
- }
2191
- .mdi-social-notifications-on:before {
2192
- content: "\e8d2";
2193
- }
2194
- .mdi-social-notifications-paused:before {
2195
- content: "\e8d3";
2196
- }
2197
- .mdi-social-pages:before {
2198
- content: "\e8d4";
2199
- }
2200
- .mdi-social-party-mode:before {
2201
- content: "\e8d5";
2202
- }
2203
- .mdi-social-people:before {
2204
- content: "\e8d6";
2205
- }
2206
- .mdi-social-people-outline:before {
2207
- content: "\e8d7";
2208
- }
2209
- .mdi-social-person:before {
2210
- content: "\e8d8";
2211
- }
2212
- .mdi-social-person-add:before {
2213
- content: "\e8d9";
2214
- }
2215
- .mdi-social-person-outline:before {
2216
- content: "\e8da";
2217
- }
2218
- .mdi-social-plus-one:before {
2219
- content: "\e8db";
2220
- }
2221
- .mdi-social-poll:before {
2222
- content: "\e8dc";
2223
- }
2224
- .mdi-social-public:before {
2225
- content: "\e8dd";
2226
- }
2227
- .mdi-social-school:before {
2228
- content: "\e8de";
2229
- }
2230
- .mdi-social-share:before {
2231
- content: "\e8df";
2232
- }
2233
- .mdi-social-whatshot:before {
2234
- content: "\e8e0";
2235
- }
2236
- .mdi-toggle-check-box:before {
2237
- content: "\e8e1";
2238
- }
2239
- .mdi-toggle-check-box-outline-blank:before {
2240
- content: "\e8e2";
2241
- }
2242
- .mdi-toggle-radio-button-off:before {
2243
- content: "\e8e3";
2244
- }
2245
- .mdi-toggle-radio-button-on:before {
2246
- content: "\e8e4";
29
+
30
+ $mdi-list-icons: (
31
+ 'action-3d-rotation': \e600,
32
+ 'action-accessibility': \e601,
33
+ 'action-account-balance': \e602,
34
+ 'action-account-balance-wallet': \e603,
35
+ 'action-account-box': \e604,
36
+ 'action-account-child': \e605,
37
+ 'action-account-circle': \e606,
38
+ 'action-add-shopping-cart': \e607,
39
+ 'action-alarm': \e608,
40
+ 'action-alarm-add': \e609,
41
+ 'action-alarm-off': \e60a,
42
+ 'action-alarm-on': \e60b,
43
+ 'action-android': \e60c,
44
+ 'action-announcement': \e60d,
45
+ 'action-aspect-ratio': \e60e,
46
+ 'action-assessment': \e60f,
47
+ 'action-assignment': \e610,
48
+ 'action-assignment-ind': \e611,
49
+ 'action-assignment-late': \e612,
50
+ 'action-assignment-return': \e613,
51
+ 'action-assignment-returned': \e614,
52
+ 'action-assignment-turned-in': \e615,
53
+ 'action-autorenew': \e616,
54
+ 'action-backup': \e617,
55
+ 'action-book': \e618,
56
+ 'action-bookmark': \e619,
57
+ 'action-bookmark-outline': \e61a,
58
+ 'action-bug-report': \e61b,
59
+ 'action-cached': \e61c,
60
+ 'action-class': \e61d,
61
+ 'action-credit-card': \e61e,
62
+ 'action-dashboard': \e61f,
63
+ 'action-delete': \e620,
64
+ 'action-description': \e621,
65
+ 'action-dns': \e622,
66
+ 'action-done': \e623,
67
+ 'action-done-all': \e624,
68
+ 'action-event': \e625,
69
+ 'action-exit-to-app': \e626,
70
+ 'action-explore': \e627,
71
+ 'action-extension': \e628,
72
+ 'action-face-unlock': \e629,
73
+ 'action-favorite': \e62a,
74
+ 'action-favorite-outline': \e62b,
75
+ 'action-find-in-page': \e62c,
76
+ 'action-find-replace': \e62d,
77
+ 'action-flip-to-back': \e62e,
78
+ 'action-flip-to-front': \e62f,
79
+ 'action-get-app': \e630,
80
+ 'action-grade': \e631,
81
+ 'action-group-work': \e632,
82
+ 'action-help': \e633,
83
+ 'action-highlight-remove': \e634,
84
+ 'action-history': \e635,
85
+ 'action-home': \e636,
86
+ 'action-https': \e637,
87
+ 'action-info': \e638,
88
+ 'action-info-outline': \e639,
89
+ 'action-input': \e63a,
90
+ 'action-invert-colors': \e63b,
91
+ 'action-label': \e63c,
92
+ 'action-label-outline': \e63d,
93
+ 'action-language': \e63e,
94
+ 'action-launch': \e63f,
95
+ 'action-list': \e640,
96
+ 'action-lock': \e641,
97
+ 'action-lock-open': \e642,
98
+ 'action-lock-outline': \e643,
99
+ 'action-loyalty': \e644,
100
+ 'action-markunread-mailbox': \e645,
101
+ 'action-note-add': \e646,
102
+ 'action-open-in-browser': \e647,
103
+ 'action-open-in-new': \e648,
104
+ 'action-open-with': \e649,
105
+ 'action-pageview': \e64a,
106
+ 'action-payment': \e64b,
107
+ 'action-perm-camera-mic': \e64c,
108
+ 'action-perm-contact-cal': \e64d,
109
+ 'action-perm-data-setting': \e64e,
110
+ 'action-perm-device-info': \e64f,
111
+ 'action-perm-identity': \e650,
112
+ 'action-perm-media': \e651,
113
+ 'action-perm-phone-msg': \e652,
114
+ 'action-perm-scan-wifi': \e653,
115
+ 'action-picture-in-picture': \e654,
116
+ 'action-polymer': \e655,
117
+ 'action-print': \e656,
118
+ 'action-query-builder': \e657,
119
+ 'action-question-answer': \e658,
120
+ 'action-receipt': \e659,
121
+ 'action-redeem': \e65a,
122
+ 'action-report-problem': \e65b,
123
+ 'action-restore': \e65c,
124
+ 'action-room': \e65d,
125
+ 'action-schedule': \e65e,
126
+ 'action-search': \e65f,
127
+ 'action-settings': \e660,
128
+ 'action-settings-applications': \e661,
129
+ 'action-settings-backup-restore': \e662,
130
+ 'action-settings-bluetooth': \e663,
131
+ 'action-settings-cell': \e664,
132
+ 'action-settings-display': \e665,
133
+ 'action-settings-ethernet': \e666,
134
+ 'action-settings-input-antenna': \e667,
135
+ 'action-settings-input-component': \e668,
136
+ 'action-settings-input-composite': \e669,
137
+ 'action-settings-input-hdmi': \e66a,
138
+ 'action-settings-input-svideo': \e66b,
139
+ 'action-settings-overscan': \e66c,
140
+ 'action-settings-phone': \e66d,
141
+ 'action-settings-power': \e66e,
142
+ 'action-settings-remote': \e66f,
143
+ 'action-settings-voice': \e670,
144
+ 'action-shop': \e671,
145
+ 'action-shopping-basket': \e672,
146
+ 'action-shopping-cart': \e673,
147
+ 'action-shop-two': \e674,
148
+ 'action-speaker-notes': \e675,
149
+ 'action-spellcheck': \e676,
150
+ 'action-star-rate': \e677,
151
+ 'action-stars': \e678,
152
+ 'action-store': \e679,
153
+ 'action-subject': \e67a,
154
+ 'action-swap-horiz': \e67b,
155
+ 'action-swap-vert': \e67c,
156
+ 'action-swap-vert-circle': \e67d,
157
+ 'action-system-update-tv': \e67e,
158
+ 'action-tab': \e67f,
159
+ 'action-tab-unselected': \e680,
160
+ 'action-theaters': \e681,
161
+ 'action-thumb-down': \e682,
162
+ 'action-thumbs-up-down': \e683,
163
+ 'action-thumb-up': \e684,
164
+ 'action-toc': \e685,
165
+ 'action-today': \e686,
166
+ 'action-track-changes': \e687,
167
+ 'action-translate': \e688,
168
+ 'action-trending-down': \e689,
169
+ 'action-trending-neutral': \e68a,
170
+ 'action-trending-up': \e68b,
171
+ 'action-turned-in': \e68c,
172
+ 'action-turned-in-not': \e68d,
173
+ 'action-verified-user': \e68e,
174
+ 'action-view-agenda': \e68f,
175
+ 'action-view-array': \e690,
176
+ 'action-view-carousel': \e691,
177
+ 'action-view-column': \e692,
178
+ 'action-view-day': \e693,
179
+ 'action-view-headline': \e694,
180
+ 'action-view-list': \e695,
181
+ 'action-view-module': \e696,
182
+ 'action-view-quilt': \e697,
183
+ 'action-view-stream': \e698,
184
+ 'action-view-week': \e699,
185
+ 'action-visibility': \e69a,
186
+ 'action-visibility-off': \e69b,
187
+ 'action-wallet-giftcard': \e69c,
188
+ 'action-wallet-membership': \e69d,
189
+ 'action-wallet-travel': \e69e,
190
+ 'action-work': \e69f,
191
+ 'alert-error': \e6a0,
192
+ 'alert-warning': \e6a1,
193
+ 'av-album': \e6a2,
194
+ 'av-timer': \e6a3,
195
+ 'av-closed-caption': \e6a4,
196
+ 'av-equalizer': \e6a5,
197
+ 'av-explicit': \e6a6,
198
+ 'av-fast-forward': \e6a7,
199
+ 'av-fast-rewind': \e6a8,
200
+ 'av-games': \e6a9,
201
+ 'av-hearing': \e6aa,
202
+ 'av-high-quality': \e6ab,
203
+ 'av-loop': \e6ac,
204
+ 'av-mic': \e6ad,
205
+ 'av-mic-none': \e6ae,
206
+ 'av-mic-off': \e6af,
207
+ 'av-movie': \e6b0,
208
+ 'av-my-library-add': \e6b1,
209
+ 'av-my-library-books': \e6b2,
210
+ 'av-my-library-music': \e6b3,
211
+ 'av-new-releases': \e6b4,
212
+ 'av-not-interested': \e6b5,
213
+ 'av-pause': \e6b6,
214
+ 'av-pause-circle-fill': \e6b7,
215
+ 'av-pause-circle-outline': \e6b8,
216
+ 'av-play-arrow': \e6b9,
217
+ 'av-play-circle-fill': \e6ba,
218
+ 'av-play-circle-outline': \e6bb,
219
+ 'av-playlist-add': \e6bc,
220
+ 'av-play-shopping-bag': \e6bd,
221
+ 'av-queue': \e6be,
222
+ 'av-queue-music': \e6bf,
223
+ 'av-radio': \e6c0,
224
+ 'av-recent-actors': \e6c1,
225
+ 'av-repeat': \e6c2,
226
+ 'av-repeat-one': \e6c3,
227
+ 'av-replay': \e6c4,
228
+ 'av-shuffle': \e6c5,
229
+ 'av-skip-next': \e6c6,
230
+ 'av-skip-previous': \e6c7,
231
+ 'av-snooze': \e6c8,
232
+ 'av-stop': \e6c9,
233
+ 'av-subtitles': \e6ca,
234
+ 'av-surround-sound': \e6cb,
235
+ 'av-videocam': \e6cc,
236
+ 'av-videocam-off': \e6cd,
237
+ 'av-video-collection': \e6ce,
238
+ 'av-volume-down': \e6cf,
239
+ 'av-volume-mute': \e6d0,
240
+ 'av-volume-off': \e6d1,
241
+ 'av-volume-up': \e6d2,
242
+ 'av-web': \e6d3,
243
+ 'communication-business': \e6d4,
244
+ 'communication-call': \e6d5,
245
+ 'communication-call-end': \e6d6,
246
+ 'communication-call-made': \e6d7,
247
+ 'communication-call-merge': \e6d8,
248
+ 'communication-call-missed': \e6d9,
249
+ 'communication-call-received': \e6da,
250
+ 'communication-call-split': \e6db,
251
+ 'communication-chat': \e6dc,
252
+ 'communication-clear-all': \e6dd,
253
+ 'communication-comment': \e6de,
254
+ 'communication-contacts': \e6df,
255
+ 'communication-dialer-sip': \e6e0,
256
+ 'communication-dialpad': \e6e1,
257
+ 'communication-dnd-on': \e6e2,
258
+ 'communication-email': \e6e3,
259
+ 'communication-forum': \e6e4,
260
+ 'communication-import-export': \e6e5,
261
+ 'communication-invert-colors-off': \e6e6,
262
+ 'communication-invert-colors-on': \e6e7,
263
+ 'communication-live-help': \e6e8,
264
+ 'communication-location-off': \e6e9,
265
+ 'communication-location-on': \e6ea,
266
+ 'communication-message': \e6eb,
267
+ 'communication-messenger': \e6ec,
268
+ 'communication-no-sim': \e6ed,
269
+ 'communication-phone': \e6ee,
270
+ 'communication-portable-wifi-off': \e6ef,
271
+ 'communication-quick-contacts-dialer': \e6f0,
272
+ 'communication-quick-contacts-mail': \e6f1,
273
+ 'communication-ring-volume': \e6f2,
274
+ 'communication-stay-current-landscape': \e6f3,
275
+ 'communication-stay-current-portrait': \e6f4,
276
+ 'communication-stay-primary-landscape': \e6f5,
277
+ 'communication-stay-primary-portrait': \e6f6,
278
+ 'communication-swap-calls': \e6f7,
279
+ 'communication-textsms': \e6f8,
280
+ 'communication-voicemail': \e6f9,
281
+ 'communication-vpn-key': \e6fa,
282
+ 'content-add': \e6fb,
283
+ 'content-add-box': \e6fc,
284
+ 'content-add-circle': \e6fd,
285
+ 'content-add-circle-outline': \e6fe,
286
+ 'content-archive': \e6ff,
287
+ 'content-backspace': \e700,
288
+ 'content-block': \e701,
289
+ 'content-clear': \e702,
290
+ 'content-content-copy': \e703,
291
+ 'content-content-cut': \e704,
292
+ 'content-content-paste': \e705,
293
+ 'content-create': \e706,
294
+ 'content-drafts': \e707,
295
+ 'content-filter-list': \e708,
296
+ 'content-flag': \e709,
297
+ 'content-forward': \e70a,
298
+ 'content-gesture': \e70b,
299
+ 'content-inbox': \e70c,
300
+ 'content-link': \e70d,
301
+ 'content-mail': \e70e,
302
+ 'content-markunread': \e70f,
303
+ 'content-redo': \e710,
304
+ 'content-remove': \e711,
305
+ 'content-remove-circle': \e712,
306
+ 'content-remove-circle-outline': \e713,
307
+ 'content-reply': \e714,
308
+ 'content-reply-all': \e715,
309
+ 'content-report': \e716,
310
+ 'content-save': \e717,
311
+ 'content-select-all': \e718,
312
+ 'content-send': \e719,
313
+ 'content-sort': \e71a,
314
+ 'content-text-format': \e71b,
315
+ 'content-undo': \e71c,
316
+ 'device-access-alarm': \e71d,
317
+ 'device-access-alarms': \e71e,
318
+ 'device-access-time': \e71f,
319
+ 'device-add-alarm': \e720,
320
+ 'device-airplanemode-off': \e721,
321
+ 'device-airplanemode-on': \e722,
322
+ 'device-battery-20': \e723,
323
+ 'device-battery-30': \e724,
324
+ 'device-battery-50': \e725,
325
+ 'device-battery-60': \e726,
326
+ 'device-battery-80': \e727,
327
+ 'device-battery-90': \e728,
328
+ 'device-battery-alert': \e729,
329
+ 'device-battery-charging-20': \e72a,
330
+ 'device-battery-charging-30': \e72b,
331
+ 'device-battery-charging-50': \e72c,
332
+ 'device-battery-charging-60': \e72d,
333
+ 'device-battery-charging-80': \e72e,
334
+ 'device-battery-charging-90': \e72f,
335
+ 'device-battery-charging-full': \e730,
336
+ 'device-battery-full': \e731,
337
+ 'device-battery-std': \e732,
338
+ 'device-battery-unknown': \e733,
339
+ 'device-bluetooth': \e734,
340
+ 'device-bluetooth-connected': \e735,
341
+ 'device-bluetooth-disabled': \e736,
342
+ 'device-bluetooth-searching': \e737,
343
+ 'device-brightness-auto': \e738,
344
+ 'device-brightness-high': \e739,
345
+ 'device-brightness-low': \e73a,
346
+ 'device-brightness-medium': \e73b,
347
+ 'device-data-usage': \e73c,
348
+ 'device-developer-mode': \e73d,
349
+ 'device-devices': \e73e,
350
+ 'device-dvr': \e73f,
351
+ 'device-gps-fixed': \e740,
352
+ 'device-gps-not-fixed': \e741,
353
+ 'device-gps-off': \e742,
354
+ 'device-location-disabled': \e743,
355
+ 'device-location-searching': \e744,
356
+ 'device-multitrack-audio': \e745,
357
+ 'device-network-cell': \e746,
358
+ 'device-network-wifi': \e747,
359
+ 'device-nfc': \e748,
360
+ 'device-now-wallpaper': \e749,
361
+ 'device-now-widgets': \e74a,
362
+ 'device-screen-lock-landscape': \e74b,
363
+ 'device-screen-lock-portrait': \e74c,
364
+ 'device-screen-lock-rotation': \e74d,
365
+ 'device-screen-rotation': \e74e,
366
+ 'device-sd-storage': \e74f,
367
+ 'device-settings-system-daydream': \e750,
368
+ 'device-signal-cellular-0-bar': \e751,
369
+ 'device-signal-cellular-1-bar': \e752,
370
+ 'device-signal-cellular-2-bar': \e753,
371
+ 'device-signal-cellular-3-bar': \e754,
372
+ 'device-signal-cellular-4-bar': \e755,
373
+ 'device-signal-cellular-connected-no-internet-0-bar': \e756,
374
+ 'device-signal-cellular-connected-no-internet-1-bar': \e757,
375
+ 'device-signal-cellular-connected-no-internet-2-bar': \e758,
376
+ 'device-signal-cellular-connected-no-internet-3-bar': \e759,
377
+ 'device-signal-cellular-connected-no-internet-4-bar': \e75a,
378
+ 'device-signal-cellular-no-sim': \e75b,
379
+ 'device-signal-cellular-null': \e75c,
380
+ 'device-signal-cellular-off': \e75d,
381
+ 'device-signal-wifi-0-bar': \e75e,
382
+ 'device-signal-wifi-1-bar': \e75f,
383
+ 'device-signal-wifi-2-bar': \e760,
384
+ 'device-signal-wifi-3-bar': \e761,
385
+ 'device-signal-wifi-4-bar': \e762,
386
+ 'device-signal-wifi-off': \e763,
387
+ 'device-storage': \e764,
388
+ 'device-usb': \e765,
389
+ 'device-wifi-lock': \e766,
390
+ 'device-wifi-tethering': \e767,
391
+ 'editor-attach-file': \e768,
392
+ 'editor-attach-money': \e769,
393
+ 'editor-border-all': \e76a,
394
+ 'editor-border-bottom': \e76b,
395
+ 'editor-border-clear': \e76c,
396
+ 'editor-border-color': \e76d,
397
+ 'editor-border-horizontal': \e76e,
398
+ 'editor-border-inner': \e76f,
399
+ 'editor-border-left': \e770,
400
+ 'editor-border-outer': \e771,
401
+ 'editor-border-right': \e772,
402
+ 'editor-border-style': \e773,
403
+ 'editor-border-top': \e774,
404
+ 'editor-border-vertical': \e775,
405
+ 'editor-format-align-center': \e776,
406
+ 'editor-format-align-justify': \e777,
407
+ 'editor-format-align-left': \e778,
408
+ 'editor-format-align-right': \e779,
409
+ 'editor-format-bold': \e77a,
410
+ 'editor-format-clear': \e77b,
411
+ 'editor-format-color-fill': \e77c,
412
+ 'editor-format-color-reset': \e77d,
413
+ 'editor-format-color-text': \e77e,
414
+ 'editor-format-indent-decrease': \e77f,
415
+ 'editor-format-indent-increase': \e780,
416
+ 'editor-format-italic': \e781,
417
+ 'editor-format-line-spacing': \e782,
418
+ 'editor-format-list-bulleted': \e783,
419
+ 'editor-format-list-numbered': \e784,
420
+ 'editor-format-paint': \e785,
421
+ 'editor-format-quote': \e786,
422
+ 'editor-format-size': \e787,
423
+ 'editor-format-strikethrough': \e788,
424
+ 'editor-functions': \e789,
425
+ 'editor-format-textdirection-l-to-r': \e78a,
426
+ 'editor-format-underline': \e78b,
427
+ 'editor-format-textdirection-r-to-l': \e78c,
428
+ 'editor-insert-chart': \e78d,
429
+ 'editor-insert-comment': \e78e,
430
+ 'editor-insert-drive-file': \e78f,
431
+ 'editor-insert-emoticon': \e790,
432
+ 'editor-insert-invitation': \e791,
433
+ 'editor-insert-link': \e792,
434
+ 'editor-insert-photo': \e793,
435
+ 'editor-merge-type': \e794,
436
+ 'editor-mode-comment': \e795,
437
+ 'editor-mode-edit': \e796,
438
+ 'editor-publish': \e797,
439
+ 'editor-vertical-align-bottom': \e798,
440
+ 'editor-vertical-align-center': \e799,
441
+ 'editor-vertical-align-top': \e79a,
442
+ 'editor-wrap-text': \e79b,
443
+ 'file-attachment': \e79c,
444
+ 'file-cloud': \e79d,
445
+ 'file-cloud-circle': \e79e,
446
+ 'file-cloud-done': \e79f,
447
+ 'file-cloud-download': \e7a0,
448
+ 'file-cloud-off': \e7a1,
449
+ 'file-cloud-queue': \e7a2,
450
+ 'file-cloud-upload': \e7a3,
451
+ 'file-file-download': \e7a4,
452
+ 'file-file-upload': \e7a5,
453
+ 'file-folder': \e7a6,
454
+ 'file-folder-open': \e7a7,
455
+ 'file-folder-shared': \e7a8,
456
+ 'hardware-cast': \e7a9,
457
+ 'hardware-cast-connected': \e7aa,
458
+ 'hardware-computer': \e7ab,
459
+ 'hardware-desktop-mac': \e7ac,
460
+ 'hardware-desktop-windows': \e7ad,
461
+ 'hardware-dock': \e7ae,
462
+ 'hardware-gamepad': \e7af,
463
+ 'hardware-headset': \e7b0,
464
+ 'hardware-headset-mic': \e7b1,
465
+ 'hardware-keyboard': \e7b2,
466
+ 'hardware-keyboard-alt': \e7b3,
467
+ 'hardware-keyboard-arrow-down': \e7b4,
468
+ 'hardware-keyboard-arrow-left': \e7b5,
469
+ 'hardware-keyboard-arrow-right': \e7b6,
470
+ 'hardware-keyboard-arrow-up': \e7b7,
471
+ 'hardware-keyboard-backspace': \e7b8,
472
+ 'hardware-keyboard-capslock': \e7b9,
473
+ 'hardware-keyboard-control': \e7ba,
474
+ 'hardware-keyboard-hide': \e7bb,
475
+ 'hardware-keyboard-return': \e7bc,
476
+ 'hardware-keyboard-tab': \e7bd,
477
+ 'hardware-keyboard-voice': \e7be,
478
+ 'hardware-laptop': \e7bf,
479
+ 'hardware-laptop-chromebook': \e7c0,
480
+ 'hardware-laptop-mac': \e7c1,
481
+ 'hardware-laptop-windows': \e7c2,
482
+ 'hardware-memory': \e7c3,
483
+ 'hardware-mouse': \e7c4,
484
+ 'hardware-phone-android': \e7c5,
485
+ 'hardware-phone-iphone': \e7c6,
486
+ 'hardware-phonelink': \e7c7,
487
+ 'hardware-phonelink-off': \e7c8,
488
+ 'hardware-security': \e7c9,
489
+ 'hardware-sim-card': \e7ca,
490
+ 'hardware-smartphone': \e7cb,
491
+ 'hardware-speaker': \e7cc,
492
+ 'hardware-tablet': \e7cd,
493
+ 'hardware-tablet-android': \e7ce,
494
+ 'hardware-tablet-mac': \e7cf,
495
+ 'hardware-tv': \e7d0,
496
+ 'hardware-watch': \e7d1,
497
+ 'image-add-to-photos': \e7d2,
498
+ 'image-adjust': \e7d3,
499
+ 'image-assistant-photo': \e7d4,
500
+ 'image-audiotrack': \e7d5,
501
+ 'image-blur-circular': \e7d6,
502
+ 'image-blur-linear': \e7d7,
503
+ 'image-blur-off': \e7d8,
504
+ 'image-blur-on': \e7d9,
505
+ 'image-brightness-1': \e7da,
506
+ 'image-brightness-2': \e7db,
507
+ 'image-brightness-3': \e7dc,
508
+ 'image-brightness-4': \e7dd,
509
+ 'image-brightness-5': \e7de,
510
+ 'image-brightness-6': \e7df,
511
+ 'image-brightness-7': \e7e0,
512
+ 'image-brush': \e7e1,
513
+ 'image-camera': \e7e2,
514
+ 'image-camera-alt': \e7e3,
515
+ 'image-camera-front': \e7e4,
516
+ 'image-camera-rear': \e7e5,
517
+ 'image-camera-roll': \e7e6,
518
+ 'image-center-focus-strong': \e7e7,
519
+ 'image-center-focus-weak': \e7e8,
520
+ 'image-collections': \e7e9,
521
+ 'image-colorize': \e7ea,
522
+ 'image-color-lens': \e7eb,
523
+ 'image-compare': \e7ec,
524
+ 'image-control-point': \e7ed,
525
+ 'image-control-point-duplicate': \e7ee,
526
+ 'image-crop': \e7ef,
527
+ 'image-crop-3-2': \e7f0,
528
+ 'image-crop-5-4': \e7f1,
529
+ 'image-crop-7-5': \e7f2,
530
+ 'image-crop-16-9': \e7f3,
531
+ 'image-crop-din': \e7f4,
532
+ 'image-crop-free': \e7f5,
533
+ 'image-crop-landscape': \e7f6,
534
+ 'image-crop-original': \e7f7,
535
+ 'image-crop-portrait': \e7f8,
536
+ 'image-crop-square': \e7f9,
537
+ 'image-dehaze': \e7fa,
538
+ 'image-details': \e7fb,
539
+ 'image-edit': \e7fc,
540
+ 'image-exposure': \e7fd,
541
+ 'image-exposure-minus-1': \e7fe,
542
+ 'image-exposure-minus-2': \e7ff,
543
+ 'image-exposure-plus-1': \e800,
544
+ 'image-exposure-plus-2': \e801,
545
+ 'image-exposure-zero': \e802,
546
+ 'image-filter': \e803,
547
+ 'image-filter-1': \e804,
548
+ 'image-filter-2': \e805,
549
+ 'image-filter-3': \e806,
550
+ 'image-filter-4': \e807,
551
+ 'image-filter-5': \e808,
552
+ 'image-filter-6': \e809,
553
+ 'image-filter-7': \e80a,
554
+ 'image-filter-8': \e80b,
555
+ 'image-filter-9': \e80c,
556
+ 'image-filter-9-plus': \e80d,
557
+ 'image-filter-b-and-w': \e80e,
558
+ 'image-filter-center-focus': \e80f,
559
+ 'image-filter-drama': \e810,
560
+ 'image-filter-frames': \e811,
561
+ 'image-filter-hdr': \e812,
562
+ 'image-filter-none': \e813,
563
+ 'image-filter-tilt-shift': \e814,
564
+ 'image-filter-vintage': \e815,
565
+ 'image-flare': \e816,
566
+ 'image-flash-auto': \e817,
567
+ 'image-flash-off': \e818,
568
+ 'image-flash-on': \e819,
569
+ 'image-flip': \e81a,
570
+ 'image-gradient': \e81b,
571
+ 'image-grain': \e81c,
572
+ 'image-grid-off': \e81d,
573
+ 'image-grid-on': \e81e,
574
+ 'image-hdr-off': \e81f,
575
+ 'image-hdr-on': \e820,
576
+ 'image-hdr-strong': \e821,
577
+ 'image-hdr-weak': \e822,
578
+ 'image-healing': \e823,
579
+ 'image-image': \e824,
580
+ 'image-image-aspect-ratio': \e825,
581
+ 'image-iso': \e826,
582
+ 'image-landscape': \e827,
583
+ 'image-leak-add': \e828,
584
+ 'image-leak-remove': \e829,
585
+ 'image-lens': \e82a,
586
+ 'image-looks': \e82b,
587
+ 'image-looks-3': \e82c,
588
+ 'image-looks-4': \e82d,
589
+ 'image-looks-5': \e82e,
590
+ 'image-looks-6': \e82f,
591
+ 'image-looks-one': \e830,
592
+ 'image-looks-two': \e831,
593
+ 'image-loupe': \e832,
594
+ 'image-movie-creation': \e833,
595
+ 'image-nature': \e834,
596
+ 'image-nature-people': \e835,
597
+ 'image-navigate-before': \e836,
598
+ 'image-navigate-next': \e837,
599
+ 'image-palette': \e838,
600
+ 'image-panorama': \e839,
601
+ 'image-panorama-fisheye': \e83a,
602
+ 'image-panorama-horizontal': \e83b,
603
+ 'image-panorama-vertical': \e83c,
604
+ 'image-panorama-wide-angle': \e83d,
605
+ 'image-photo': \e83e,
606
+ 'image-photo-album': \e83f,
607
+ 'image-photo-camera': \e840,
608
+ 'image-photo-library': \e841,
609
+ 'image-portrait': \e842,
610
+ 'image-remove-red-eye': \e843,
611
+ 'image-rotate-left': \e844,
612
+ 'image-rotate-right': \e845,
613
+ 'image-slideshow': \e846,
614
+ 'image-straighten': \e847,
615
+ 'image-style': \e848,
616
+ 'image-switch-camera': \e849,
617
+ 'image-switch-video': \e84a,
618
+ 'image-tag-faces': \e84b,
619
+ 'image-texture': \e84c,
620
+ 'image-timelapse': \e84d,
621
+ 'image-timer': \e84e,
622
+ 'image-timer-3': \e84f,
623
+ 'image-timer-10': \e850,
624
+ 'image-timer-auto': \e851,
625
+ 'image-timer-off': \e852,
626
+ 'image-tonality': \e853,
627
+ 'image-transform': \e854,
628
+ 'image-tune': \e855,
629
+ 'image-wb-auto': \e856,
630
+ 'image-wb-cloudy': \e857,
631
+ 'image-wb-incandescent': \e858,
632
+ 'image-wb-irradescent': \e859,
633
+ 'image-wb-sunny': \e85a,
634
+ 'maps-beenhere': \e85b,
635
+ 'maps-directions': \e85c,
636
+ 'maps-directions-bike': \e85d,
637
+ 'maps-directions-bus': \e85e,
638
+ 'maps-directions-car': \e85f,
639
+ 'maps-directions-ferry': \e860,
640
+ 'maps-directions-subway': \e861,
641
+ 'maps-directions-train': \e862,
642
+ 'maps-directions-transit': \e863,
643
+ 'maps-directions-walk': \e864,
644
+ 'maps-flight': \e865,
645
+ 'maps-hotel': \e866,
646
+ 'maps-layers': \e867,
647
+ 'maps-layers-clear': \e868,
648
+ 'maps-local-airport': \e869,
649
+ 'maps-local-atm': \e86a,
650
+ 'maps-local-attraction': \e86b,
651
+ 'maps-local-bar': \e86c,
652
+ 'maps-local-cafe': \e86d,
653
+ 'maps-local-car-wash': \e86e,
654
+ 'maps-local-convenience-store': \e86f,
655
+ 'maps-local-drink': \e870,
656
+ 'maps-local-florist': \e871,
657
+ 'maps-local-gas-station': \e872,
658
+ 'maps-local-grocery-store': \e873,
659
+ 'maps-local-hospital': \e874,
660
+ 'maps-local-hotel': \e875,
661
+ 'maps-local-laundry-service': \e876,
662
+ 'maps-local-library': \e877,
663
+ 'maps-local-mall': \e878,
664
+ 'maps-local-movies': \e879,
665
+ 'maps-local-offer': \e87a,
666
+ 'maps-local-parking': \e87b,
667
+ 'maps-local-pharmacy': \e87c,
668
+ 'maps-local-phone': \e87d,
669
+ 'maps-local-pizza': \e87e,
670
+ 'maps-local-play': \e87f,
671
+ 'maps-local-post-office': \e880,
672
+ 'maps-local-print-shop': \e881,
673
+ 'maps-local-restaurant': \e882,
674
+ 'maps-local-see': \e883,
675
+ 'maps-local-shipping': \e884,
676
+ 'maps-local-taxi': \e885,
677
+ 'maps-location-history': \e886,
678
+ 'maps-map': \e887,
679
+ 'maps-my-location': \e888,
680
+ 'maps-navigation': \e889,
681
+ 'maps-pin-drop': \e88a,
682
+ 'maps-place': \e88b,
683
+ 'maps-rate-review': \e88c,
684
+ 'maps-restaurant-menu': \e88d,
685
+ 'maps-satellite': \e88e,
686
+ 'maps-store-mall-directory': \e88f,
687
+ 'maps-terrain': \e890,
688
+ 'maps-traffic': \e891,
689
+ 'navigation-apps': \e892,
690
+ 'navigation-arrow-back': \e893,
691
+ 'navigation-arrow-drop-down': \e894,
692
+ 'navigation-arrow-drop-down-circle': \e895,
693
+ 'navigation-arrow-drop-up': \e896,
694
+ 'navigation-arrow-forward': \e897,
695
+ 'navigation-cancel': \e898,
696
+ 'navigation-check': \e899,
697
+ 'navigation-chevron-left': \e89a,
698
+ 'navigation-chevron-right': \e89b,
699
+ 'navigation-close': \e89c,
700
+ 'navigation-expand-less': \e89d,
701
+ 'navigation-expand-more': \e89e,
702
+ 'navigation-fullscreen': \e89f,
703
+ 'navigation-fullscreen-exit': \e8a0,
704
+ 'navigation-menu': \e8a1,
705
+ 'navigation-more-horiz': \e8a2,
706
+ 'navigation-more-vert': \e8a3,
707
+ 'navigation-refresh': \e8a4,
708
+ 'navigation-unfold-less': \e8a5,
709
+ 'navigation-unfold-more': \e8a6,
710
+ 'notification-adb': \e8a7,
711
+ 'notification-bluetooth-audio': \e8a8,
712
+ 'notification-disc-full': \e8a9,
713
+ 'notification-dnd-forwardslash': \e8aa,
714
+ 'notification-do-not-disturb': \e8ab,
715
+ 'notification-drive-eta': \e8ac,
716
+ 'notification-event-available': \e8ad,
717
+ 'notification-event-busy': \e8ae,
718
+ 'notification-event-note': \e8af,
719
+ 'notification-folder-special': \e8b0,
720
+ 'notification-mms': \e8b1,
721
+ 'notification-more': \e8b2,
722
+ 'notification-network-locked': \e8b3,
723
+ 'notification-phone-bluetooth-speaker': \e8b4,
724
+ 'notification-phone-forwarded': \e8b5,
725
+ 'notification-phone-in-talk': \e8b6,
726
+ 'notification-phone-locked': \e8b7,
727
+ 'notification-phone-missed': \e8b8,
728
+ 'notification-phone-paused': \e8b9,
729
+ 'notification-play-download': \e8ba,
730
+ 'notification-play-install': \e8bb,
731
+ 'notification-sd-card': \e8bc,
732
+ 'notification-sim-card-alert': \e8bd,
733
+ 'notification-sms': \e8be,
734
+ 'notification-sms-failed': \e8bf,
735
+ 'notification-sync': \e8c0,
736
+ 'notification-sync-disabled': \e8c1,
737
+ 'notification-sync-problem': \e8c2,
738
+ 'notification-system-update': \e8c3,
739
+ 'notification-tap-and-play': \e8c4,
740
+ 'notification-time-to-leave': \e8c5,
741
+ 'notification-vibration': \e8c6,
742
+ 'notification-voice-chat': \e8c7,
743
+ 'notification-vpn-lock': \e8c8,
744
+ 'social-cake': \e8c9,
745
+ 'social-domain': \e8ca,
746
+ 'social-group': \e8cb,
747
+ 'social-group-add': \e8cc,
748
+ 'social-location-city': \e8cd,
749
+ 'social-mood': \e8ce,
750
+ 'social-notifications': \e8cf,
751
+ 'social-notifications-none': \e8d0,
752
+ 'social-notifications-off': \e8d1,
753
+ 'social-notifications-on': \e8d2,
754
+ 'social-notifications-paused': \e8d3,
755
+ 'social-pages': \e8d4,
756
+ 'social-party-mode': \e8d5,
757
+ 'social-people': \e8d6,
758
+ 'social-people-outline': \e8d7,
759
+ 'social-person': \e8d8,
760
+ 'social-person-add': \e8d9,
761
+ 'social-person-outline': \e8da,
762
+ 'social-plus-one': \e8db,
763
+ 'social-poll': \e8dc,
764
+ 'social-public': \e8dd,
765
+ 'social-school': \e8de,
766
+ 'social-share': \e8df,
767
+ 'social-whatshot': \e8e0,
768
+ 'toggle-check-box': \e8e1,
769
+ 'toggle-check-box-outline-blank': \e8e2,
770
+ 'toggle-radio-button-off': \e8e3,
771
+ 'toggle-radio-button-on': \e8e4
772
+ );
773
+
774
+ // remove after bug fix sass 3.3.x and add quote in $mdi-list-icons: ( 'foo': \exxx )
775
+ @function unicode($str){
776
+ @return unquote("\"") + $str + unquote("\"");
2247
777
  }
778
+
779
+ @each $mdi-icon-name, $mdi-icon-value in $mdi-list-icons {
780
+ .#{$mdi-prefix}#{$mdi-icon-name}:before {
781
+ content: unicode($mdi-icon-value);
782
+ }
783
+ }