material-symbols-class 0.9.6 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/index.css +9 -3
- package/index.min.css +1 -1
- package/material-symbols-outlined.woff2 +0 -0
- package/material-symbols-rounded.woff2 +0 -0
- package/material-symbols-sharp.woff2 +0 -0
- package/material-symbols.css +312 -8
- package/material-symbols.min.css +1 -1
- package/material-symbols.scss +79 -3
- package/outlined.css +3 -1
- package/outlined.min.css +1 -1
- package/outlined.scss +7 -1
- package/package.json +12 -11
- package/rounded.css +3 -1
- package/rounded.min.css +1 -1
- package/rounded.scss +7 -1
- package/sharp.css +3 -1
- package/sharp.min.css +1 -1
- package/sharp.scss +7 -1
- package/utils.css +43 -15
- package/utils.min.css +1 -1
- package/utils.scss +30 -4
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# [material-symbols-class](https://github.com/joelcorrales/material-symbols-class)
|
|
2
2
|
|
|
3
|
-
This
|
|
3
|
+
This package builds on [material-symbols](https://github.com/marella/material-symbols/tree/main/material-symbols) and allows you to use icons directly through CSS classes.
|
|
4
|
+
It also provides additional utilities and variations such as `fill`, `grade`, `optical-size`, `weight`, `spin`, and `fix`(consistent width), all applied via classes.
|
|
5
|
+
|
|
6
|
+
You can explore the [Homepage](https://joelcorrales.github.io/material-symbols-class/) to browse available icons and preview different utility classes in action.
|
|
7
|
+
|
|
8
|
+
The library stays up to date automatically with the latest changes from the source repository.
|
|
4
9
|
|
|
5
10
|
- [Installation](#installation)
|
|
6
11
|
- [Usage](#usage)
|
package/index.css
CHANGED
|
@@ -27,8 +27,10 @@
|
|
|
27
27
|
|
|
28
28
|
.msc,
|
|
29
29
|
.msc-o,
|
|
30
|
-
.msc-outlined
|
|
30
|
+
.msc-outlined,
|
|
31
|
+
.material-symbols-outlined {
|
|
31
32
|
font-size: 1.5em;
|
|
33
|
+
font-variation-settings: "FILL" var(--fill, 0), "wght" var(--wght, 400), "GRAD" var(--grad, 0), "opsz" var(--opsz, 24);
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
@font-face {
|
|
@@ -58,8 +60,10 @@
|
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
.msc-r,
|
|
61
|
-
.msc-rounded
|
|
63
|
+
.msc-rounded,
|
|
64
|
+
.material-symbols-rounded {
|
|
62
65
|
font-size: 1.5em;
|
|
66
|
+
font-variation-settings: "FILL" var(--fill, 0), "wght" var(--wght, 400), "GRAD" var(--grad, 0), "opsz" var(--opsz, 24);
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
@font-face {
|
|
@@ -89,6 +93,8 @@
|
|
|
89
93
|
}
|
|
90
94
|
|
|
91
95
|
.msc-s,
|
|
92
|
-
.msc-sharp
|
|
96
|
+
.msc-sharp,
|
|
97
|
+
.material-symbols-sharp {
|
|
93
98
|
font-size: 1.5em;
|
|
99
|
+
font-variation-settings: "FILL" var(--fill, 0), "wght" var(--wght, 400), "GRAD" var(--grad, 0), "opsz" var(--opsz, 24);
|
|
94
100
|
}
|
package/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@font-face{font-family:"Material Symbols Outlined";font-style:normal;font-weight:100 700;font-display:block;src:url("./material-symbols-outlined.woff2") format("woff2")}.material-symbols-outlined,.msc,.msc-o,.msc-outlined{font-family:"Material Symbols Outlined";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.msc,.msc-o,.msc-outlined{font-size:1.5em}@font-face{font-family:"Material Symbols Rounded";font-style:normal;font-weight:100 700;font-display:block;src:url("./material-symbols-rounded.woff2") format("woff2")}.material-symbols-rounded,.msc-r,.msc-rounded{font-family:"Material Symbols Rounded";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.msc-r,.msc-rounded{font-size:1.5em}@font-face{font-family:"Material Symbols Sharp";font-style:normal;font-weight:100 700;font-display:block;src:url("./material-symbols-sharp.woff2") format("woff2")}.material-symbols-sharp,.msc-s,.msc-sharp{font-family:"Material Symbols Sharp";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.msc-s,.msc-sharp{font-size:1.5em}
|
|
1
|
+
@font-face{font-family:"Material Symbols Outlined";font-style:normal;font-weight:100 700;font-display:block;src:url("./material-symbols-outlined.woff2") format("woff2")}.material-symbols-outlined,.msc,.msc-o,.msc-outlined{font-family:"Material Symbols Outlined";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.msc,.msc-o,.msc-outlined,.material-symbols-outlined{font-size:1.5em;font-variation-settings:"FILL" var(--fill, 0),"wght" var(--wght, 400),"GRAD" var(--grad, 0),"opsz" var(--opsz, 24)}@font-face{font-family:"Material Symbols Rounded";font-style:normal;font-weight:100 700;font-display:block;src:url("./material-symbols-rounded.woff2") format("woff2")}.material-symbols-rounded,.msc-r,.msc-rounded{font-family:"Material Symbols Rounded";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.msc-r,.msc-rounded,.material-symbols-rounded{font-size:1.5em;font-variation-settings:"FILL" var(--fill, 0),"wght" var(--wght, 400),"GRAD" var(--grad, 0),"opsz" var(--opsz, 24)}@font-face{font-family:"Material Symbols Sharp";font-style:normal;font-weight:100 700;font-display:block;src:url("./material-symbols-sharp.woff2") format("woff2")}.material-symbols-sharp,.msc-s,.msc-sharp{font-family:"Material Symbols Sharp";font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}.msc-s,.msc-sharp,.material-symbols-sharp{font-size:1.5em;font-variation-settings:"FILL" var(--fill, 0),"wght" var(--wght, 400),"GRAD" var(--grad, 0),"opsz" var(--opsz, 24)}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/material-symbols.css
CHANGED
|
@@ -782,6 +782,110 @@
|
|
|
782
782
|
content: "android";
|
|
783
783
|
}
|
|
784
784
|
|
|
785
|
+
.msc-android_cell_4_bar:after {
|
|
786
|
+
content: "android_cell_4_bar";
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.msc-android_cell_4_bar_alert:after {
|
|
790
|
+
content: "android_cell_4_bar_alert";
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.msc-android_cell_4_bar_off:after {
|
|
794
|
+
content: "android_cell_4_bar_off";
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.msc-android_cell_4_bar_plus:after {
|
|
798
|
+
content: "android_cell_4_bar_plus";
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.msc-android_cell_5_bar:after {
|
|
802
|
+
content: "android_cell_5_bar";
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.msc-android_cell_5_bar_alert:after {
|
|
806
|
+
content: "android_cell_5_bar_alert";
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.msc-android_cell_5_bar_off:after {
|
|
810
|
+
content: "android_cell_5_bar_off";
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.msc-android_cell_5_bar_plus:after {
|
|
814
|
+
content: "android_cell_5_bar_plus";
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.msc-android_cell_dual_4_bar:after {
|
|
818
|
+
content: "android_cell_dual_4_bar";
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.msc-android_cell_dual_4_bar_alert:after {
|
|
822
|
+
content: "android_cell_dual_4_bar_alert";
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.msc-android_cell_dual_4_bar_plus:after {
|
|
826
|
+
content: "android_cell_dual_4_bar_plus";
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.msc-android_cell_dual_5_bar:after {
|
|
830
|
+
content: "android_cell_dual_5_bar";
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.msc-android_cell_dual_5_bar_alert:after {
|
|
834
|
+
content: "android_cell_dual_5_bar_alert";
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.msc-android_cell_dual_5_bar_plus:after {
|
|
838
|
+
content: "android_cell_dual_5_bar_plus";
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.msc-android_wifi_3_bar:after {
|
|
842
|
+
content: "android_wifi_3_bar";
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.msc-android_wifi_3_bar_alert:after {
|
|
846
|
+
content: "android_wifi_3_bar_alert";
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.msc-android_wifi_3_bar_lock:after {
|
|
850
|
+
content: "android_wifi_3_bar_lock";
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.msc-android_wifi_3_bar_off:after {
|
|
854
|
+
content: "android_wifi_3_bar_off";
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.msc-android_wifi_3_bar_plus:after {
|
|
858
|
+
content: "android_wifi_3_bar_plus";
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.msc-android_wifi_3_bar_question:after {
|
|
862
|
+
content: "android_wifi_3_bar_question";
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.msc-android_wifi_4_bar:after {
|
|
866
|
+
content: "android_wifi_4_bar";
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.msc-android_wifi_4_bar_alert:after {
|
|
870
|
+
content: "android_wifi_4_bar_alert";
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.msc-android_wifi_4_bar_lock:after {
|
|
874
|
+
content: "android_wifi_4_bar_lock";
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.msc-android_wifi_4_bar_off:after {
|
|
878
|
+
content: "android_wifi_4_bar_off";
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.msc-android_wifi_4_bar_plus:after {
|
|
882
|
+
content: "android_wifi_4_bar_plus";
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.msc-android_wifi_4_bar_question:after {
|
|
886
|
+
content: "android_wifi_4_bar_question";
|
|
887
|
+
}
|
|
888
|
+
|
|
785
889
|
.msc-animated_images:after {
|
|
786
890
|
content: "animated_images";
|
|
787
891
|
}
|
|
@@ -990,6 +1094,18 @@
|
|
|
990
1094
|
content: "arrow_selector_tool";
|
|
991
1095
|
}
|
|
992
1096
|
|
|
1097
|
+
.msc-arrow_shape_up:after {
|
|
1098
|
+
content: "arrow_shape_up";
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.msc-arrow_shape_up_stack:after {
|
|
1102
|
+
content: "arrow_shape_up_stack";
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.msc-arrow_shape_up_stack_2:after {
|
|
1106
|
+
content: "arrow_shape_up_stack_2";
|
|
1107
|
+
}
|
|
1108
|
+
|
|
993
1109
|
.msc-arrow_split:after {
|
|
994
1110
|
content: "arrow_split";
|
|
995
1111
|
}
|
|
@@ -1254,6 +1370,10 @@
|
|
|
1254
1370
|
content: "avg_time";
|
|
1255
1371
|
}
|
|
1256
1372
|
|
|
1373
|
+
.msc-award_meal:after {
|
|
1374
|
+
content: "award_meal";
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1257
1377
|
.msc-award_star:after {
|
|
1258
1378
|
content: "award_star";
|
|
1259
1379
|
}
|
|
@@ -1474,6 +1594,58 @@
|
|
|
1474
1594
|
content: "battery_android_bolt";
|
|
1475
1595
|
}
|
|
1476
1596
|
|
|
1597
|
+
.msc-battery_android_frame_1:after {
|
|
1598
|
+
content: "battery_android_frame_1";
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.msc-battery_android_frame_2:after {
|
|
1602
|
+
content: "battery_android_frame_2";
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.msc-battery_android_frame_3:after {
|
|
1606
|
+
content: "battery_android_frame_3";
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.msc-battery_android_frame_4:after {
|
|
1610
|
+
content: "battery_android_frame_4";
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.msc-battery_android_frame_5:after {
|
|
1614
|
+
content: "battery_android_frame_5";
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.msc-battery_android_frame_6:after {
|
|
1618
|
+
content: "battery_android_frame_6";
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.msc-battery_android_frame_alert:after {
|
|
1622
|
+
content: "battery_android_frame_alert";
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.msc-battery_android_frame_bolt:after {
|
|
1626
|
+
content: "battery_android_frame_bolt";
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.msc-battery_android_frame_full:after {
|
|
1630
|
+
content: "battery_android_frame_full";
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.msc-battery_android_frame_plus:after {
|
|
1634
|
+
content: "battery_android_frame_plus";
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.msc-battery_android_frame_question:after {
|
|
1638
|
+
content: "battery_android_frame_question";
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.msc-battery_android_frame_share:after {
|
|
1642
|
+
content: "battery_android_frame_share";
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.msc-battery_android_frame_shield:after {
|
|
1646
|
+
content: "battery_android_frame_shield";
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1477
1649
|
.msc-battery_android_full:after {
|
|
1478
1650
|
content: "battery_android_full";
|
|
1479
1651
|
}
|
|
@@ -1958,6 +2130,10 @@
|
|
|
1958
2130
|
content: "brick";
|
|
1959
2131
|
}
|
|
1960
2132
|
|
|
2133
|
+
.msc-briefcase_meal:after {
|
|
2134
|
+
content: "briefcase_meal";
|
|
2135
|
+
}
|
|
2136
|
+
|
|
1961
2137
|
.msc-brightness_1:after {
|
|
1962
2138
|
content: "brightness_1";
|
|
1963
2139
|
}
|
|
@@ -2054,6 +2230,10 @@
|
|
|
2054
2230
|
content: "bubbles";
|
|
2055
2231
|
}
|
|
2056
2232
|
|
|
2233
|
+
.msc-bucket_check:after {
|
|
2234
|
+
content: "bucket_check";
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2057
2237
|
.msc-bug_report:after {
|
|
2058
2238
|
content: "bug_report";
|
|
2059
2239
|
}
|
|
@@ -2138,14 +2318,26 @@
|
|
|
2138
2318
|
content: "calendar_apps_script";
|
|
2139
2319
|
}
|
|
2140
2320
|
|
|
2321
|
+
.msc-calendar_check:after {
|
|
2322
|
+
content: "calendar_check";
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2141
2325
|
.msc-calendar_clock:after {
|
|
2142
2326
|
content: "calendar_clock";
|
|
2143
2327
|
}
|
|
2144
2328
|
|
|
2329
|
+
.msc-calendar_lock:after {
|
|
2330
|
+
content: "calendar_lock";
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2145
2333
|
.msc-calendar_meal:after {
|
|
2146
2334
|
content: "calendar_meal";
|
|
2147
2335
|
}
|
|
2148
2336
|
|
|
2337
|
+
.msc-calendar_meal_2:after {
|
|
2338
|
+
content: "calendar_meal_2";
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2149
2341
|
.msc-calendar_month:after {
|
|
2150
2342
|
content: "calendar_month";
|
|
2151
2343
|
}
|
|
@@ -2670,6 +2862,10 @@
|
|
|
2670
2862
|
content: "child_friendly";
|
|
2671
2863
|
}
|
|
2672
2864
|
|
|
2865
|
+
.msc-child_hat:after {
|
|
2866
|
+
content: "child_hat";
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2673
2869
|
.msc-chip_extraction:after {
|
|
2674
2870
|
content: "chip_extraction";
|
|
2675
2871
|
}
|
|
@@ -3118,6 +3314,10 @@
|
|
|
3118
3314
|
content: "controller_gen";
|
|
3119
3315
|
}
|
|
3120
3316
|
|
|
3317
|
+
.msc-conversation:after {
|
|
3318
|
+
content: "conversation";
|
|
3319
|
+
}
|
|
3320
|
+
|
|
3121
3321
|
.msc-conversion_path:after {
|
|
3122
3322
|
content: "conversion_path";
|
|
3123
3323
|
}
|
|
@@ -4754,6 +4954,10 @@
|
|
|
4754
4954
|
content: "familiar_face_and_zone";
|
|
4755
4955
|
}
|
|
4756
4956
|
|
|
4957
|
+
.msc-family_group:after {
|
|
4958
|
+
content: "family_group";
|
|
4959
|
+
}
|
|
4960
|
+
|
|
4757
4961
|
.msc-family_history:after {
|
|
4758
4962
|
content: "family_history";
|
|
4759
4963
|
}
|
|
@@ -5102,6 +5306,10 @@
|
|
|
5102
5306
|
content: "fitness_tracker";
|
|
5103
5307
|
}
|
|
5104
5308
|
|
|
5309
|
+
.msc-fitness_trackers:after {
|
|
5310
|
+
content: "fitness_trackers";
|
|
5311
|
+
}
|
|
5312
|
+
|
|
5105
5313
|
.msc-flag:after {
|
|
5106
5314
|
content: "flag";
|
|
5107
5315
|
}
|
|
@@ -6022,6 +6230,10 @@
|
|
|
6022
6230
|
content: "hallway";
|
|
6023
6231
|
}
|
|
6024
6232
|
|
|
6233
|
+
.msc-hanami_dango:after {
|
|
6234
|
+
content: "hanami_dango";
|
|
6235
|
+
}
|
|
6236
|
+
|
|
6025
6237
|
.msc-hand_bones:after {
|
|
6026
6238
|
content: "hand_bones";
|
|
6027
6239
|
}
|
|
@@ -6614,6 +6826,10 @@
|
|
|
6614
6826
|
content: "image_aspect_ratio";
|
|
6615
6827
|
}
|
|
6616
6828
|
|
|
6829
|
+
.msc-image_inset:after {
|
|
6830
|
+
content: "image_inset";
|
|
6831
|
+
}
|
|
6832
|
+
|
|
6617
6833
|
.msc-image_search:after {
|
|
6618
6834
|
content: "image_search";
|
|
6619
6835
|
}
|
|
@@ -6838,6 +7054,10 @@
|
|
|
6838
7054
|
content: "jump_to_element";
|
|
6839
7055
|
}
|
|
6840
7056
|
|
|
7057
|
+
.msc-kanji_alcohol:after {
|
|
7058
|
+
content: "kanji_alcohol";
|
|
7059
|
+
}
|
|
7060
|
+
|
|
6841
7061
|
.msc-kayaking:after {
|
|
6842
7062
|
content: "kayaking";
|
|
6843
7063
|
}
|
|
@@ -7650,6 +7870,10 @@
|
|
|
7650
7870
|
content: "mail";
|
|
7651
7871
|
}
|
|
7652
7872
|
|
|
7873
|
+
.msc-mail_asterisk:after {
|
|
7874
|
+
content: "mail_asterisk";
|
|
7875
|
+
}
|
|
7876
|
+
|
|
7653
7877
|
.msc-mail_lock:after {
|
|
7654
7878
|
content: "mail_lock";
|
|
7655
7879
|
}
|
|
@@ -7658,6 +7882,10 @@
|
|
|
7658
7882
|
content: "mail_off";
|
|
7659
7883
|
}
|
|
7660
7884
|
|
|
7885
|
+
.msc-mail_shield:after {
|
|
7886
|
+
content: "mail_shield";
|
|
7887
|
+
}
|
|
7888
|
+
|
|
7661
7889
|
.msc-male:after {
|
|
7662
7890
|
content: "male";
|
|
7663
7891
|
}
|
|
@@ -7798,6 +8026,14 @@
|
|
|
7798
8026
|
content: "maximize";
|
|
7799
8027
|
}
|
|
7800
8028
|
|
|
8029
|
+
.msc-meal_dinner:after {
|
|
8030
|
+
content: "meal_dinner";
|
|
8031
|
+
}
|
|
8032
|
+
|
|
8033
|
+
.msc-meal_lunch:after {
|
|
8034
|
+
content: "meal_lunch";
|
|
8035
|
+
}
|
|
8036
|
+
|
|
7801
8037
|
.msc-measuring_tape:after {
|
|
7802
8038
|
content: "measuring_tape";
|
|
7803
8039
|
}
|
|
@@ -8166,6 +8402,10 @@
|
|
|
8166
8402
|
content: "mobile_text_2";
|
|
8167
8403
|
}
|
|
8168
8404
|
|
|
8405
|
+
.msc-mobile_theft:after {
|
|
8406
|
+
content: "mobile_theft";
|
|
8407
|
+
}
|
|
8408
|
+
|
|
8169
8409
|
.msc-mobile_ticket:after {
|
|
8170
8410
|
content: "mobile_ticket";
|
|
8171
8411
|
}
|
|
@@ -8254,6 +8494,10 @@
|
|
|
8254
8494
|
content: "money_off";
|
|
8255
8495
|
}
|
|
8256
8496
|
|
|
8497
|
+
.msc-money_range:after {
|
|
8498
|
+
content: "money_range";
|
|
8499
|
+
}
|
|
8500
|
+
|
|
8257
8501
|
.msc-monitor:after {
|
|
8258
8502
|
content: "monitor";
|
|
8259
8503
|
}
|
|
@@ -8918,10 +9162,6 @@
|
|
|
8918
9162
|
content: "nightlight";
|
|
8919
9163
|
}
|
|
8920
9164
|
|
|
8921
|
-
.msc-nights_stay:after {
|
|
8922
|
-
content: "nights_stay";
|
|
8923
|
-
}
|
|
8924
|
-
|
|
8925
9165
|
.msc-no_accounts:after {
|
|
8926
9166
|
content: "no_accounts";
|
|
8927
9167
|
}
|
|
@@ -9330,6 +9570,10 @@
|
|
|
9330
9570
|
content: "page_info";
|
|
9331
9571
|
}
|
|
9332
9572
|
|
|
9573
|
+
.msc-page_menu_ios:after {
|
|
9574
|
+
content: "page_menu_ios";
|
|
9575
|
+
}
|
|
9576
|
+
|
|
9333
9577
|
.msc-pageless:after {
|
|
9334
9578
|
content: "pageless";
|
|
9335
9579
|
}
|
|
@@ -9390,6 +9634,10 @@
|
|
|
9390
9634
|
content: "paragliding";
|
|
9391
9635
|
}
|
|
9392
9636
|
|
|
9637
|
+
.msc-parent_child_dining:after {
|
|
9638
|
+
content: "parent_child_dining";
|
|
9639
|
+
}
|
|
9640
|
+
|
|
9393
9641
|
.msc-park:after {
|
|
9394
9642
|
content: "park";
|
|
9395
9643
|
}
|
|
@@ -9418,6 +9666,10 @@
|
|
|
9418
9666
|
content: "partner_exchange";
|
|
9419
9667
|
}
|
|
9420
9668
|
|
|
9669
|
+
.msc-partner_heart:after {
|
|
9670
|
+
content: "partner_heart";
|
|
9671
|
+
}
|
|
9672
|
+
|
|
9421
9673
|
.msc-partner_reports:after {
|
|
9422
9674
|
content: "partner_reports";
|
|
9423
9675
|
}
|
|
@@ -9518,6 +9770,10 @@
|
|
|
9518
9770
|
content: "percent";
|
|
9519
9771
|
}
|
|
9520
9772
|
|
|
9773
|
+
.msc-percent_discount:after {
|
|
9774
|
+
content: "percent_discount";
|
|
9775
|
+
}
|
|
9776
|
+
|
|
9521
9777
|
.msc-pergola:after {
|
|
9522
9778
|
content: "pergola";
|
|
9523
9779
|
}
|
|
@@ -10630,6 +10886,10 @@
|
|
|
10630
10886
|
content: "responsive_layout";
|
|
10631
10887
|
}
|
|
10632
10888
|
|
|
10889
|
+
.msc-rest_area:after {
|
|
10890
|
+
content: "rest_area";
|
|
10891
|
+
}
|
|
10892
|
+
|
|
10633
10893
|
.msc-restart_alt:after {
|
|
10634
10894
|
content: "restart_alt";
|
|
10635
10895
|
}
|
|
@@ -11030,6 +11290,10 @@
|
|
|
11030
11290
|
content: "search_check_2";
|
|
11031
11291
|
}
|
|
11032
11292
|
|
|
11293
|
+
.msc-search_gear:after {
|
|
11294
|
+
content: "search_gear";
|
|
11295
|
+
}
|
|
11296
|
+
|
|
11033
11297
|
.msc-search_hands_free:after {
|
|
11034
11298
|
content: "search_hands_free";
|
|
11035
11299
|
}
|
|
@@ -11326,6 +11590,10 @@
|
|
|
11326
11590
|
content: "settings_remote";
|
|
11327
11591
|
}
|
|
11328
11592
|
|
|
11593
|
+
.msc-settings_seating:after {
|
|
11594
|
+
content: "settings_seating";
|
|
11595
|
+
}
|
|
11596
|
+
|
|
11329
11597
|
.msc-settings_slow_motion:after {
|
|
11330
11598
|
content: "settings_slow_motion";
|
|
11331
11599
|
}
|
|
@@ -11398,6 +11666,10 @@
|
|
|
11398
11666
|
content: "share_windows";
|
|
11399
11667
|
}
|
|
11400
11668
|
|
|
11669
|
+
.msc-shaved_ice:after {
|
|
11670
|
+
content: "shaved_ice";
|
|
11671
|
+
}
|
|
11672
|
+
|
|
11401
11673
|
.msc-sheets_rtl:after {
|
|
11402
11674
|
content: "sheets_rtl";
|
|
11403
11675
|
}
|
|
@@ -11550,10 +11822,6 @@
|
|
|
11550
11822
|
content: "sign_language";
|
|
11551
11823
|
}
|
|
11552
11824
|
|
|
11553
|
-
.msc-sign_language_2:after {
|
|
11554
|
-
content: "sign_language_2";
|
|
11555
|
-
}
|
|
11556
|
-
|
|
11557
11825
|
.msc-signal_cellular_0_bar:after {
|
|
11558
11826
|
content: "signal_cellular_0_bar";
|
|
11559
11827
|
}
|
|
@@ -11814,6 +12082,10 @@
|
|
|
11814
12082
|
content: "soap";
|
|
11815
12083
|
}
|
|
11816
12084
|
|
|
12085
|
+
.msc-soba:after {
|
|
12086
|
+
content: "soba";
|
|
12087
|
+
}
|
|
12088
|
+
|
|
11817
12089
|
.msc-social_distance:after {
|
|
11818
12090
|
content: "social_distance";
|
|
11819
12091
|
}
|
|
@@ -11826,6 +12098,10 @@
|
|
|
11826
12098
|
content: "solar_power";
|
|
11827
12099
|
}
|
|
11828
12100
|
|
|
12101
|
+
.msc-solo_dining:after {
|
|
12102
|
+
content: "solo_dining";
|
|
12103
|
+
}
|
|
12104
|
+
|
|
11829
12105
|
.msc-sort:after {
|
|
11830
12106
|
content: "sort";
|
|
11831
12107
|
}
|
|
@@ -12834,6 +13110,10 @@
|
|
|
12834
13110
|
content: "table_rows_narrow";
|
|
12835
13111
|
}
|
|
12836
13112
|
|
|
13113
|
+
.msc-table_sign:after {
|
|
13114
|
+
content: "table_sign";
|
|
13115
|
+
}
|
|
13116
|
+
|
|
12837
13117
|
.msc-table_view:after {
|
|
12838
13118
|
content: "table_view";
|
|
12839
13119
|
}
|
|
@@ -12870,6 +13150,10 @@
|
|
|
12870
13150
|
content: "takeout_dining";
|
|
12871
13151
|
}
|
|
12872
13152
|
|
|
13153
|
+
.msc-takeout_dining_2:after {
|
|
13154
|
+
content: "takeout_dining_2";
|
|
13155
|
+
}
|
|
13156
|
+
|
|
12873
13157
|
.msc-tamper_detection_off:after {
|
|
12874
13158
|
content: "tamper_detection_off";
|
|
12875
13159
|
}
|
|
@@ -12894,6 +13178,10 @@
|
|
|
12894
13178
|
content: "task_alt";
|
|
12895
13179
|
}
|
|
12896
13180
|
|
|
13181
|
+
.msc-tatami_seat:after {
|
|
13182
|
+
content: "tatami_seat";
|
|
13183
|
+
}
|
|
13184
|
+
|
|
12897
13185
|
.msc-taunt:after {
|
|
12898
13186
|
content: "taunt";
|
|
12899
13187
|
}
|
|
@@ -13114,6 +13402,10 @@
|
|
|
13114
13402
|
content: "thumbnail_bar";
|
|
13115
13403
|
}
|
|
13116
13404
|
|
|
13405
|
+
.msc-thumbs_up_double:after {
|
|
13406
|
+
content: "thumbs_up_double";
|
|
13407
|
+
}
|
|
13408
|
+
|
|
13117
13409
|
.msc-thumbs_up_down:after {
|
|
13118
13410
|
content: "thumbs_up_down";
|
|
13119
13411
|
}
|
|
@@ -13622,6 +13914,10 @@
|
|
|
13622
13914
|
content: "u_turn_right";
|
|
13623
13915
|
}
|
|
13624
13916
|
|
|
13917
|
+
.msc-udon:after {
|
|
13918
|
+
content: "udon";
|
|
13919
|
+
}
|
|
13920
|
+
|
|
13625
13921
|
.msc-ulna_radius:after {
|
|
13626
13922
|
content: "ulna_radius";
|
|
13627
13923
|
}
|
|
@@ -14510,6 +14806,10 @@
|
|
|
14510
14806
|
content: "window_sensor";
|
|
14511
14807
|
}
|
|
14512
14808
|
|
|
14809
|
+
.msc-windshield_defrost_auto:after {
|
|
14810
|
+
content: "windshield_defrost_auto";
|
|
14811
|
+
}
|
|
14812
|
+
|
|
14513
14813
|
.msc-windshield_defrost_front:after {
|
|
14514
14814
|
content: "windshield_defrost_front";
|
|
14515
14815
|
}
|
|
@@ -14578,6 +14878,10 @@
|
|
|
14578
14878
|
content: "wysiwyg";
|
|
14579
14879
|
}
|
|
14580
14880
|
|
|
14881
|
+
.msc-yakitori:after {
|
|
14882
|
+
content: "yakitori";
|
|
14883
|
+
}
|
|
14884
|
+
|
|
14581
14885
|
.msc-yard:after {
|
|
14582
14886
|
content: "yard";
|
|
14583
14887
|
}
|