This commit is contained in:
parent
91bb18203d
commit
f08faec3ba
4 changed files with 6 additions and 5 deletions
|
@ -75,7 +75,8 @@
|
|||
height: 40%;
|
||||
overflow: auto;
|
||||
padding-bottom: 8px;
|
||||
width: auto;
|
||||
width: auto !important;
|
||||
border-bottom: 1px solid var(--b3-border-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -226,7 +226,7 @@ const genHTML = (left: string, right: string, dialog: Dialog, direct: string) =>
|
|||
<span class="fn__flex-1"></span>
|
||||
</div>`;
|
||||
headElement.nextElementSibling.innerHTML = `<div class="fn__flex history__panel" style="height: 100%">
|
||||
<div class="history__side" style="width: ${window.siyuan.storage[Constants.LOCAL_HISTORY].sideDiffWidth}">
|
||||
<div class="history__side" ${isMobile() ? '' : `style="width: ${window.siyuan.storage[Constants.LOCAL_HISTORY].sideDiffWidth}"`}>
|
||||
<ul class="b3-list b3-list--background">
|
||||
<li class="b3-list-item">
|
||||
<span class="b3-list-item__toggle b3-list-item__toggle--hl">
|
||||
|
|
|
@ -62,7 +62,7 @@ export const openDocHistory = (options: {
|
|||
pathString: string
|
||||
}) => {
|
||||
const contentHTML = `<div class="fn__flex fn__flex-1 history__panel">
|
||||
<ul class="b3-list b3-list--background history__side" style="width: ${window.siyuan.storage[Constants.LOCAL_HISTORY].sideDocWidth}">
|
||||
<ul class="b3-list b3-list--background history__side" ${isMobile() ? '' : `style="width: ${window.siyuan.storage[Constants.LOCAL_HISTORY].sideDocWidth}"`}>
|
||||
<li class="b3-list--empty">${window.siyuan.languages.emptyContent}</li>
|
||||
</ul>
|
||||
<div class="history__resize"></div>
|
||||
|
|
|
@ -347,7 +347,7 @@ export const openHistory = (app: App) => {
|
|||
});
|
||||
|
||||
const contentHTML = `<div class="fn__flex-column" style="height: 100%;">
|
||||
<div class="layout-tab-bar fn__flex" style="border-radius: var(--b3-border-radius-b) var(--b3-border-radius-b) 0 0">
|
||||
<div class="layout-tab-bar fn__flex" ${isMobile() ? "" : 'style="border-radius: var(--b3-border-radius-b) var(--b3-border-radius-b) 0 0"'}>
|
||||
<div data-type="doc" class="item item--full item--focus"><span class="fn__flex-1"></span><span class="item__text">${window.siyuan.languages.fileHistory}</span><span class="fn__flex-1"></span></div>
|
||||
<div data-type="notebook" style="min-width: 160px" class="item item--full"><span class="fn__flex-1"></span><span class="item__text">${window.siyuan.languages.removedNotebook}</span><span class="fn__flex-1"></span></div>
|
||||
<div data-type="repo" class="item item--full"><span class="fn__flex-1"></span><span class="item__text">${window.siyuan.languages.dataSnapshot}</span><span class="fn__flex-1"></span></div>
|
||||
|
@ -393,7 +393,7 @@ export const openHistory = (app: App) => {
|
|||
</div>
|
||||
</div>
|
||||
<div class="fn__flex fn__flex-1 history__panel">
|
||||
<ul class="b3-list b3-list--background history__side" style="width: ${localHistory.sideWidth}">
|
||||
<ul class="b3-list b3-list--background history__side" ${isMobile() ? '' : `style="width: ${localHistory.sideWidth}"`}>
|
||||
<li class="b3-list--empty">${window.siyuan.languages.emptyContent}</li>
|
||||
</ul>
|
||||
<div class="history__resize"></div>
|
||||
|
|
Loading…
Add table
Reference in a new issue