Skip to content

Commit 5032bde

Browse files
committed
fix: Standardize on Font Awesome 7 Free (#9101)
1 parent 3b69ca2 commit 5032bde

3 files changed

Lines changed: 10 additions & 9 deletions

File tree

apps/portal/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@
219219
</script>
220220
<link rel="icon" href="./resources/images/neo_logo_favicon.svg">
221221
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,500;1,8..60,600;1,8..60,700&display=swap">
222-
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
223222
</head>
224223
<body>
225224
<script src="../../src/MicroLoader.mjs" type="module"></script>

resources/scss/src/app/content/TreeList.scss

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
&.neo-list-folder {
3939
.neo-list-item-content:after {
40-
content: "\e5cc" !important;
40+
content: "\f054" !important;
4141
}
4242

4343
.neo-list-item-content:before {
@@ -46,7 +46,7 @@
4646

4747
&.neo-folder-open {
4848
.neo-list-item-content:after {
49-
content: "\e5cf" !important;
49+
content: "\f078" !important;
5050
}
5151

5252
.neo-list-item-content:before {
@@ -116,10 +116,11 @@
116116

117117
&:after {
118118
color : var(--list-item-glyph-color);
119-
content : "\f0c8";
119+
content : "\f054";
120120
display : inline-block;
121-
font-family : 'Material Icons';
122-
font-size : 18px;
121+
font-family : "Font Awesome 7 Free";
122+
font-weight : 900;
123+
font-size : 14px;
123124
width : 25px;
124125
padding-top : 4px;
125126
}

resources/scss/src/apps/legit/Viewport.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,11 @@
109109

110110
&:after {
111111
color : var(--list-item-glyph-color);
112-
content : "\f0c8";
112+
content : "\f054";
113113
display : inline-block;
114-
font-family : 'Material Icons';
115-
font-size : 18px;
114+
font-family : "Font Awesome 7 Free";
115+
font-weight : 900;
116+
font-size : 14px;
116117
width : 25px;
117118
padding-top : 4px;
118119
}

0 commit comments

Comments
 (0)