material-symbols-class 0.34.1 → 0.35.1
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 +28 -4
- package/material-symbols.min.css +1 -1
- package/material-symbols.scss +7 -1
- package/outlined.css +3 -1
- package/outlined.min.css +1 -1
- package/outlined.scss +7 -1
- package/package.json +11 -12
- 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
|
@@ -2718,6 +2718,10 @@
|
|
|
2718
2718
|
content: "chat_bubble";
|
|
2719
2719
|
}
|
|
2720
2720
|
|
|
2721
|
+
.msc-chat_dashed:after {
|
|
2722
|
+
content: "chat_dashed";
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2721
2725
|
.msc-chat_error:after {
|
|
2722
2726
|
content: "chat_error";
|
|
2723
2727
|
}
|
|
@@ -4954,6 +4958,10 @@
|
|
|
4954
4958
|
content: "familiar_face_and_zone";
|
|
4955
4959
|
}
|
|
4956
4960
|
|
|
4961
|
+
.msc-family_group:after {
|
|
4962
|
+
content: "family_group";
|
|
4963
|
+
}
|
|
4964
|
+
|
|
4957
4965
|
.msc-family_history:after {
|
|
4958
4966
|
content: "family_history";
|
|
4959
4967
|
}
|
|
@@ -5302,6 +5310,10 @@
|
|
|
5302
5310
|
content: "fitness_tracker";
|
|
5303
5311
|
}
|
|
5304
5312
|
|
|
5313
|
+
.msc-fitness_trackers:after {
|
|
5314
|
+
content: "fitness_trackers";
|
|
5315
|
+
}
|
|
5316
|
+
|
|
5305
5317
|
.msc-flag:after {
|
|
5306
5318
|
content: "flag";
|
|
5307
5319
|
}
|
|
@@ -5830,6 +5842,14 @@
|
|
|
5830
5842
|
content: "fragrance";
|
|
5831
5843
|
}
|
|
5832
5844
|
|
|
5845
|
+
.msc-frame_bug:after {
|
|
5846
|
+
content: "frame_bug";
|
|
5847
|
+
}
|
|
5848
|
+
|
|
5849
|
+
.msc-frame_exclamation:after {
|
|
5850
|
+
content: "frame_exclamation";
|
|
5851
|
+
}
|
|
5852
|
+
|
|
5833
5853
|
.msc-frame_inspect:after {
|
|
5834
5854
|
content: "frame_inspect";
|
|
5835
5855
|
}
|
|
@@ -7862,6 +7882,10 @@
|
|
|
7862
7882
|
content: "mail";
|
|
7863
7883
|
}
|
|
7864
7884
|
|
|
7885
|
+
.msc-mail_asterisk:after {
|
|
7886
|
+
content: "mail_asterisk";
|
|
7887
|
+
}
|
|
7888
|
+
|
|
7865
7889
|
.msc-mail_lock:after {
|
|
7866
7890
|
content: "mail_lock";
|
|
7867
7891
|
}
|
|
@@ -8390,6 +8414,10 @@
|
|
|
8390
8414
|
content: "mobile_text_2";
|
|
8391
8415
|
}
|
|
8392
8416
|
|
|
8417
|
+
.msc-mobile_theft:after {
|
|
8418
|
+
content: "mobile_theft";
|
|
8419
|
+
}
|
|
8420
|
+
|
|
8393
8421
|
.msc-mobile_ticket:after {
|
|
8394
8422
|
content: "mobile_ticket";
|
|
8395
8423
|
}
|
|
@@ -11806,10 +11834,6 @@
|
|
|
11806
11834
|
content: "sign_language";
|
|
11807
11835
|
}
|
|
11808
11836
|
|
|
11809
|
-
.msc-sign_language_2:after {
|
|
11810
|
-
content: "sign_language_2";
|
|
11811
|
-
}
|
|
11812
|
-
|
|
11813
11837
|
.msc-signal_cellular_0_bar:after {
|
|
11814
11838
|
content: "signal_cellular_0_bar";
|
|
11815
11839
|
}
|