Skip to content

Commit

Permalink
🎨 fix #10485
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Mar 5, 2024
1 parent d6f8360 commit dbc7346
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/src/assets/scss/mobile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@
box-shadow: inset 0 0 0 .6px var(--b3-theme-on-surface);
border: 0;
color: var(--b3-theme-on-background);
min-height: 50px;
text-align: left;
}

&-icon {
Expand All @@ -376,7 +378,6 @@
}

&-text {
line-height: 48px;
margin-left: 6px;
}
}
Expand Down
12 changes: 11 additions & 1 deletion app/src/mobile/util/keyboardToolbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,16 @@ export const renderTextMenu = (protyle: IProtyle, toolbarElement: Element) => {
const renderSlashMenu = (protyle: IProtyle, toolbarElement: Element) => {
protyle.hint.splitChar = "/";
protyle.hint.lastIndex = -1;
let pluginHTML = ""
protyle.app.plugins.forEach((plugin) => {
plugin.protyleSlash.forEach(slash => {
pluginHTML += getSlashItem(`plugin${Constants.ZWSP}${plugin.name}${Constants.ZWSP}${slash.id}`,
"", slash.html, "true");
});
});
if (pluginHTML) {
pluginHTML = `<div class="keyboard__slash-title"></div><div class="keyboard__slash-block">${pluginHTML}</div>`
}
const utilElement = toolbarElement.querySelector(".keyboard__util") as HTMLElement;
utilElement.innerHTML = `<div class="keyboard__slash-title"></div>
<div class="keyboard__slash-block">
Expand Down Expand Up @@ -252,7 +262,7 @@ const renderSlashMenu = (protyle: IProtyle, toolbarElement: Element) => {
${getSlashItem(`style${Constants.ZWSP}color: var(--b3-card-warning-color);background-color: var(--b3-card-warning-background);`, '<div style="color: var(--b3-card-warning-color);background-color: var(--b3-card-warning-background);" class="keyboard__slash-icon">A</div>', window.siyuan.languages.warningStyle, "true")}
${getSlashItem(`style${Constants.ZWSP}color: var(--b3-card-error-color);background-color: var(--b3-card-error-background);`, '<div style="color: var(--b3-card-error-color);background-color: var(--b3-card-error-background);" class="keyboard__slash-icon">A</div>', window.siyuan.languages.errorStyle, "true")}
${getSlashItem(`style${Constants.ZWSP}`, '<div class="keyboard__slash-icon">A</div>', window.siyuan.languages.clearFontStyle, "true")}
</div>`;
</div>${pluginHTML}`;
protyle.hint.bindUploadEvent(protyle, utilElement);
};

Expand Down

0 comments on commit dbc7346

Please sign in to comment.