mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-17 12:38:07 +01:00
This commit is contained in:
parent
d517065f45
commit
284ec21b3b
2 changed files with 5 additions and 2 deletions
|
|
@ -120,6 +120,8 @@
|
|||
white-space: break-spaces;
|
||||
line-height: 26px;
|
||||
margin: 8px 0;
|
||||
// 移动端面包屑过长
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
&__icon {
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ import {emitOpenMenu} from "../../plugin/EventBus";
|
|||
import {isInAndroid, isIPad, isMac, updateHotkeyTip} from "../util/compatibility";
|
||||
import {resize} from "../util/resize";
|
||||
import {listIndent, listOutdent} from "../wysiwyg/list";
|
||||
import {escapeAttr, escapeHtml} from "../../util/escape";
|
||||
|
||||
export class Breadcrumb {
|
||||
public element: HTMLElement;
|
||||
|
|
@ -243,7 +244,7 @@ ${padHTML}
|
|||
menu.addItem({
|
||||
current: isCurrent,
|
||||
icon: getIconByType(item.type, item.subType),
|
||||
label: item.name,
|
||||
label: escapeHtml(item.name),
|
||||
click() {
|
||||
zoomOut({protyle, id: item.id, focusId: id});
|
||||
}
|
||||
|
|
@ -618,7 +619,7 @@ ${padHTML}
|
|||
} else {
|
||||
html += `<span class="protyle-breadcrumb__item${isCurrent ? " protyle-breadcrumb__item--active" : ""}" data-node-id="${item.id}"${(response.data.length === 1 || index === 0) ? ' style="max-width:none"' : ""}>
|
||||
<svg class="popover__block" data-id="${item.id}"><use xlink:href="#${getIconByType(item.type, item.subType)}"></use></svg>
|
||||
<span class="protyle-breadcrumb__text" title="${item.name}">${item.name}</span>
|
||||
<span class="protyle-breadcrumb__text" title="${escapeAttr(item.name)}">${escapeHtml(item.name)}</span>
|
||||
</span>`;
|
||||
}
|
||||
if (index !== response.data.length - 1) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue