This commit is contained in:
parent
c804ce77fc
commit
ce586883ef
1 changed files with 2 additions and 2 deletions
|
@ -465,7 +465,7 @@ export const globalShortcut = () => {
|
||||||
}
|
}
|
||||||
let dockHtml = "";
|
let dockHtml = "";
|
||||||
if (!isTabWindow) {
|
if (!isTabWindow) {
|
||||||
dockHtml = '<ul class="b3-list b3-list--background" style="max-height: calc(70vh - 35px)">';
|
dockHtml = '<ul class="b3-list b3-list--background" style="max-height: calc(70vh - 35px);overflow: auto">';
|
||||||
getAllDocks().forEach((item, index) => {
|
getAllDocks().forEach((item, index) => {
|
||||||
dockHtml += `<li data-type="${item.type}" data-index="${index}" class="b3-list-item${(!tabHtml && !dockHtml) ? " b3-list-item--focus" : ""}">
|
dockHtml += `<li data-type="${item.type}" data-index="${index}" class="b3-list-item${(!tabHtml && !dockHtml) ? " b3-list-item--focus" : ""}">
|
||||||
<svg class="b3-list-item__graphic"><use xlink:href="#${item.icon}"></use></svg>
|
<svg class="b3-list-item__graphic"><use xlink:href="#${item.icon}"></use></svg>
|
||||||
|
@ -963,7 +963,7 @@ ${unicode2Emoji(item.icon || Constants.SIYUAN_IMAGE_FILE, false, "b3-list-item__
|
||||||
});
|
});
|
||||||
let dockHtml = "";
|
let dockHtml = "";
|
||||||
if (!isWindow()) {
|
if (!isWindow()) {
|
||||||
dockHtml = '<ul class="b3-list b3-list--background" style="max-height: calc(70vh - 35px)">';
|
dockHtml = '<ul class="b3-list b3-list--background" style="max-height: calc(70vh - 35px);overflow: auto">';
|
||||||
getAllDocks().forEach((item, index) => {
|
getAllDocks().forEach((item, index) => {
|
||||||
dockHtml += `<li data-type="${item.type}" data-index="${index}" class="b3-list-item${(!tabHtml && !dockHtml) ? " b3-list-item--focus" : ""}">
|
dockHtml += `<li data-type="${item.type}" data-index="${index}" class="b3-list-item${(!tabHtml && !dockHtml) ? " b3-list-item--focus" : ""}">
|
||||||
<svg class="b3-list-item__graphic"><use xlink:href="#${item.icon}"></use></svg>
|
<svg class="b3-list-item__graphic"><use xlink:href="#${item.icon}"></use></svg>
|
||||||
|
|
Loading…
Add table
Reference in a new issue