mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 14:55:12 +00:00
add: custom icon font
This commit is contained in:
parent
4ddf847a26
commit
62d1cb490b
7 changed files with 30 additions and 1 deletions
Binary file not shown.
After Width: | Height: | Size: 936 B |
Binary file not shown.
Binary file not shown.
27
packages/backend/assets/fonts/sharkey-icons/style.css
Normal file
27
packages/backend/assets/fonts/sharkey-icons/style.css
Normal file
|
@ -0,0 +1,27 @@
|
|||
@charset "UTF-8";
|
||||
|
||||
@font-face {
|
||||
font-family: "custom-sharkey-icons";
|
||||
src: url("./custom-sharkey-icons.woff") format("woff"),
|
||||
url("./custom-sharkey-icons.ttf") format("truetype"),
|
||||
url("./custom-sharkey-icons.svg#custom-sharkey-icons") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: block;
|
||||
}
|
||||
|
||||
.sk-icons {
|
||||
font-family: "custom-sharkey-icons" !important;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.sk-icons.sk-shark:before {
|
||||
content: "\61";
|
||||
}
|
|
@ -41,6 +41,7 @@ html
|
|||
link(rel='prefetch' href=notFoundImageUrl)
|
||||
//- https://github.com/misskey-dev/misskey/issues/9842
|
||||
link(rel='stylesheet' href='/assets/phosphor-icons/bold/style.css')
|
||||
link(rel='stylesheet' href='/static-assets/fonts/sharkey-icons/style.css')
|
||||
link(rel='modulepreload' href=`/vite/${clientEntry.file}`)
|
||||
script(src='/client-assets/libopenmpt.js')
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ function showMenu(ev) {
|
|||
},
|
||||
}, {
|
||||
text: i18n.ts.aboutMisskey,
|
||||
icon: 'ph-info ph-bold ph-lg',
|
||||
icon: 'sk-icons sk-shark ph-bold',
|
||||
action: () => {
|
||||
os.pageWindow('/about-sharkey');
|
||||
},
|
||||
|
|
|
@ -112,6 +112,7 @@ export function openInstanceMenu(ev: MouseEvent) {
|
|||
} : undefined, {
|
||||
type: 'link',
|
||||
text: i18n.ts.aboutMisskey,
|
||||
icon: 'sk-icons sk-shark ph-bold',
|
||||
to: '/about-sharkey',
|
||||
}], ev.currentTarget ?? ev.target, {
|
||||
align: 'left',
|
||||
|
|
Loading…
Reference in a new issue