replaced info icon in upload dialog, as in firefox it was ugly , and caused scrolling
Massimo Melina committed
Dec 5, 2024 at 23:33 UTC
e87915f0971145d678984132a8f2cf82e07e0b6d
4 files changed
+9
-2
frontend/fontello-config.json
+6
@@ -257,6 +257,12 @@
257
"css": "shuffle",
258
"code": 59418,
259
"src": "fontawesome"
260
+ },
261
+ {
262
+ "uid": "2355991b4045d64b08fb82988109c0ee",
263
+ "css": "info",
264
+ "code": 59419,
265
+ "src": "elusive"
266
}
267
]
268
}
\ No newline at end of file
frontend/public/fontello.css
+2
-1
@@ -1,6 +1,6 @@
1
@font-face {
2
font-family: 'fontello';
3
- src: url('fontello.woff2?39711601') format('woff2');
3
+ src: url('fontello.woff2?74614144') format('woff2');
4
font-weight: normal;
5
font-style: normal;
6
}
@@ -66,6 +66,7 @@
66
.fa-reload:before { content: '\e818'; } /* '' */
67
.fa-cut:before { content: '\e819'; } /* '' */
68
.fa-shuffle:before { content: '\e81a'; } /* '' */
69
+.fa-info:before { content: '\e81b'; } /* '' */
70
.fa-spin6:before { content: '\e839'; } /* '' */
71
.fa-crown:before { content: '\e844'; } /* '' */
72
.fa-download:before { content: '\f02e'; } /* '' */
frontend/public/fontello.woff2
Binary files a/frontend/public/fontello.woff2 and b/frontend/public/fontello.woff2 differ
frontend/src/sysIcons.ts
+1
-1
@@ -33,7 +33,7 @@ export const SYS_ICONS: Record<string, [string] | [string, string | false]> = {
33
delete: ['🗑️', 'trash'],
34
comment: ['💬'],
35
link: ['↗'],
36
- info: ['ⓘ', false],
36
+ info: ['ⓘ'],
37
cut: ['✄'],
38
paste: ['📋'],
39
shuffle: ['🔀'],