Skip to content

Commit

Permalink
🎨 #13241
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Dec 15, 2024
1 parent 1e2ed90 commit 6a8ae67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
9 changes: 0 additions & 9 deletions app/src/assets/scss/component/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@
src: url(../fonts/JetBrainsMono-2.304/JetBrainsMono-Regular.woff2) format('woff2');
}

// Windows 斜体遮挡添加 "Segoe UI" 字体 https://github.com/siyuan-note/siyuan/issues/11841
@font-face {
font-family: 'Segoe UI Italic Char';
src: local("Segoe UI italic");
font-style: italic;
unicode-range: U+30-39, U+41-5A, U+61-7A, U+29, U+7D;
}

@font-face {
font-family: "Emojis";
src: url(../fonts/Noto-COLRv1-2.047/Noto-COLRv1.woff2) format("woff2"),
Expand Down Expand Up @@ -79,7 +71,6 @@
span[data-type~="em"] {
font-style: italic;
color: var(--b3-protyle-inline-em-color);
font-family: "Segoe UI Italic Char";
}

s,
Expand Down
4 changes: 4 additions & 0 deletions app/src/util/assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,10 @@ export const setInlineStyle = (set = true) => {
if (window.siyuan.config.editor.fontFamily) {
style += `\n.b3-typography:not(.b3-typography--default), .protyle-wysiwyg, .protyle-title {font-family: "${window.siyuan.config.editor.fontFamily}", var(--b3-font-family)}`;
}
// Windows 斜体遮挡添加 "Segoe UI" 字体 https://github.com/siyuan-note/siyuan/issues/11841
if (navigator.platform.indexOf('Win') > -1) {
style += `\n.b3-typography em, .b3-typography span[data-type~=em], .protyle-wysiwyg em, .protyle-wysiwyg span[data-type~=em] { font-family: emojis, "Segoe UI"; }`;
}
// pad 端菜单移除显示,如工作空间
if ("ontouchend" in document) {
style += "\n.b3-menu .b3-menu__action {opacity: 0.68;}";
Expand Down

0 comments on commit 6a8ae67

Please sign in to comment.